diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-01-30 20:47:43 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-01-30 20:47:43 +0000 |
commit | d62cdbbc61aba0cf2fee37c111ef57a0215cd91f (patch) | |
tree | d90c7a782f6e0fad7e3c196aa23fbfac2b8f8987 /gst-libs/gst/video/video.h | |
parent | 1c6ceb5c0bc0e572a47e0889818d06ea54365355 (diff) | |
download | gst-plugins-bad-d62cdbbc61aba0cf2fee37c111ef57a0215cd91f.tar.gz gst-plugins-bad-d62cdbbc61aba0cf2fee37c111ef57a0215cd91f.tar.bz2 gst-plugins-bad-d62cdbbc61aba0cf2fee37c111ef57a0215cd91f.zip |
Add untested get-video-size function (bug 104360)
Original commit message from CVS:
Add untested get-video-size function (bug 104360)
Diffstat (limited to 'gst-libs/gst/video/video.h')
-rw-r--r-- | gst-libs/gst/video/video.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gst-libs/gst/video/video.h b/gst-libs/gst/video/video.h index 6062b92d..802520da 100644 --- a/gst-libs/gst/video/video.h +++ b/gst-libs/gst/video/video.h @@ -23,6 +23,9 @@ #include <gst/gst.h> -gdouble gst_video_frame_rate (GstPad *pad); +gdouble gst_video_frame_rate (GstPad *pad); +gboolean gst_video_get_size (GstPad *pad, + gint *width, + gint *height); #endif /* __GST_VIDEO_H__ */ |