ext/ffmpeg/gstffmpegdec.c: Fix the return type of the setcaps function. Fixes #485033.

Original commit message from CVS:
Patch by: Tuomas Kulve <tuomas dot kulve at movial dot fi>
* ext/ffmpeg/gstffmpegdec.c:
Fix the return type of the setcaps function. Fixes #485033.
This commit is contained in:
Tuomas Kulve 2007-10-10 09:31:32 +00:00 committed by Wim Taymans
parent 808f080279
commit 8f95bd95cc
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2007-10-10 Wim Taymans <wim.taymans@gmail.com>
Patch by: Tuomas Kulve <tuomas dot kulve at movial dot fi>
* ext/ffmpeg/gstffmpegdec.c:
Fix the return type of the setcaps function. Fixes #485033.
2007-10-05 Wim Taymans <wim.taymans@gmail.com> 2007-10-05 Wim Taymans <wim.taymans@gmail.com>
Patch by: Yann Gilquin <yann dot gilquin at purplelabs dot com> Patch by: Yann Gilquin <yann dot gilquin at purplelabs dot com>

View file

@ -565,7 +565,7 @@ could_not_open:
} }
} }
static GstPadLinkReturn static gboolean
gst_ffmpegdec_setcaps (GstPad * pad, GstCaps * caps) gst_ffmpegdec_setcaps (GstPad * pad, GstCaps * caps)
{ {
GstFFMpegDec *ffmpegdec; GstFFMpegDec *ffmpegdec;