diff options
author | Jeremy Simon <jsimon13@yahoo.fr> | 2003-12-27 19:37:17 +0000 |
---|---|---|
committer | Jeremy Simon <jsimon13@yahoo.fr> | 2003-12-27 19:37:17 +0000 |
commit | 99df41f0d7dd21bd147792ef44b5c89c61b53ece (patch) | |
tree | ac0aa8508b337e9759cb5aafade7809ff056b5f0 /gst-libs/gst/video | |
parent | d4b7a00d0f8ba2813cd345c7a08bc3999a42de1c (diff) | |
download | gst-plugins-bad-99df41f0d7dd21bd147792ef44b5c89c61b53ece.tar.gz gst-plugins-bad-99df41f0d7dd21bd147792ef44b5c89c61b53ece.tar.bz2 gst-plugins-bad-99df41f0d7dd21bd147792ef44b5c89c61b53ece.zip |
Fix warnings
Original commit message from CVS:
Fix warnings
Diffstat (limited to 'gst-libs/gst/video')
-rw-r--r-- | gst-libs/gst/video/video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/video/video.c b/gst-libs/gst/video/video.c index 6d804a4d..114b4bac 100644 --- a/gst-libs/gst/video/video.c +++ b/gst-libs/gst/video/video.c @@ -30,7 +30,7 @@ gdouble gst_video_frame_rate (GstPad *pad) { gdouble fps = 0.; - GstCaps *caps; + const GstCaps *caps = NULL; GstStructure *structure; /* get pad caps */ @@ -62,7 +62,7 @@ gst_video_get_size (GstPad *pad, gint *width, gint *height) { - GstCaps *caps; + const GstCaps *caps = NULL; GstStructure *structure; gboolean ret; |