summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2009-09-29 15:04:56 +0200
committerBenjamin Otte <otte@gnome.org>2009-09-29 15:04:56 +0200
commit29b2c681f039735456443b13d9a56fc17c147560 (patch)
treeea9697c6d7b7ac117f88ff38ae534e1484a92326 /gst-libs
parentdb877d5203d5942928e1a40675763a7c9725279a (diff)
Add GST_CAIRO_FORMAT_SIZE
It's equal to GST_CAIRO_FORMAT_WIDTH | GST_CAIRO_FORMAT_HEIGHT but less text to write and probably used more often, too.
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/cairo/gstcairoformat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst-libs/gst/cairo/gstcairoformat.h b/gst-libs/gst/cairo/gstcairoformat.h
index 37b7e40..fc4876b 100644
--- a/gst-libs/gst/cairo/gstcairoformat.h
+++ b/gst-libs/gst/cairo/gstcairoformat.h
@@ -30,6 +30,7 @@ typedef enum {
GST_CAIRO_FORMAT_FORMAT = (1 << 0),
GST_CAIRO_FORMAT_WIDTH = (1 << 1),
GST_CAIRO_FORMAT_HEIGHT = (1 << 2),
+ GST_CAIRO_FORMAT_SIZE = GST_CAIRO_FORMAT_WIDTH | GST_CAIRO_FORMAT_HEIGHT,
GST_CAIRO_FORMAT_FRAMERATE = (1 << 3),
GST_CAIRO_FORMAT_PAR = (1 << 4)
} GstCairoFormatOption;