summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTuomas Kulve <tuomas.kulve@movial.fi>2007-10-10 09:31:32 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-10-10 09:31:32 +0000
commit8f95bd95ccef952c60f29c54d2c6a72e8a1c5a23 (patch)
tree4f61cd19be32867e1a8acc440ad98b4742f85892
parent808f08027930fd50c2a475490f22cb84ab07adaa (diff)
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.
-rw-r--r--ChangeLog7
-rw-r--r--ext/ffmpeg/gstffmpegdec.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 99a9e32..a22abcd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
Patch by: Yann Gilquin <yann dot gilquin at purplelabs dot com>
diff --git a/ext/ffmpeg/gstffmpegdec.c b/ext/ffmpeg/gstffmpegdec.c
index 360739d..efcde44 100644
--- a/ext/ffmpeg/gstffmpegdec.c
+++ b/ext/ffmpeg/gstffmpegdec.c
@@ -565,7 +565,7 @@ could_not_open:
}
}
-static GstPadLinkReturn
+static gboolean
gst_ffmpegdec_setcaps (GstPad * pad, GstCaps * caps)
{
GstFFMpegDec *ffmpegdec;