gstlal  0.8.1
 All Classes Namespaces Files Functions Variables Pages
elements.py
1 # Copyright (C) 2009--2011 LIGO Scientific Collaboration
2 #
3 # This program is free software; you can redistribute it and/or modify it
4 # under the terms of the GNU General Public License as published by the
5 # Free Software Foundation; either version 2 of the License, or (at your
6 # option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11 # Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License along
14 # with this program; if not, write to the Free Software Foundation, Inc.,
15 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 
17 
18 #
19 # =============================================================================
20 #
21 # Preamble
22 #
23 # =============================================================================
24 #
25 
26 
27 __author__ = "Kipp Cannon <kipp.cannon@ligo.org>"
28 __version__ = "FIXME"
29 __date__ = "FIXME"
30 
31 
32 #
33 # GstCaps description of matplotlib's agg backend's pixel format
34 #
35 
36 
37 matplotlibcaps = (
38  "video/x-raw-rgb, " +
39  "bpp = (int) 32, " +
40  "depth = (int) 32, " +
41  "red_mask = (int) -16777216, " +
42  "green_mask = (int) 16711680, " +
43  "blue_mask = (int) 65280, " +
44  "alpha_mask = (int) 255, " +
45  "endianness = (int) 4321"
46 )