summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-01-09 01:53:31 +0000
committerDavid Schleef <ds@schleef.org>2004-01-09 01:53:31 +0000
commitd29c7c8c08c62e6a104a7a5b436368426db25d93 (patch)
tree9f72bf845019aee1a2728e1045515e8c61aea373
parent8c1615554b5941a3cebecf100b333fb51536b920 (diff)
downloadgst-plugins-bad-d29c7c8c08c62e6a104a7a5b436368426db25d93.tar.gz
gst-plugins-bad-d29c7c8c08c62e6a104a7a5b436368426db25d93.tar.bz2
gst-plugins-bad-d29c7c8c08c62e6a104a7a5b436368426db25d93.zip
ext/ffmpeg/gstffmpegenc.c: Fix pad_link function to handle formats that ffmpeg returns as multiple caps structures.
Original commit message from CVS: * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix pad_link function to handle formats that ffmpeg returns as multiple caps structures. * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): Only complain if source buffer is _smaller_ than expected. * gst/videoscale/gstvideoscale.c: (gst_videoscale_init), (gst_videoscale_handle_src_event): Resize navigation events when passing them upstream. * gst/videotestsrc/gstvideotestsrc.c: * gst/videotestsrc/gstvideotestsrc.h: * gst/videotestsrc/videotestsrc.c: * gst/videotestsrc/videotestsrc.h: Rewrite many of the buffer painting functions to handle odd sizes (for many formats, size%4!=0 or size%8!=0). Most have been verified to work with my video card. * testsuite/gst-lint: Add check for elements calling gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
-rw-r--r--ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b311ec1..26471e55 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,25 @@
2004-01-08 David Schleef <ds@schleef.org>
+ * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
+ Fix pad_link function to handle formats that ffmpeg returns
+ as multiple caps structures.
+ * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
+ Only complain if source buffer is _smaller_ than expected.
+ * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
+ (gst_videoscale_handle_src_event): Resize navigation events
+ when passing them upstream.
+ * gst/videotestsrc/gstvideotestsrc.c:
+ * gst/videotestsrc/gstvideotestsrc.h:
+ * gst/videotestsrc/videotestsrc.c:
+ * gst/videotestsrc/videotestsrc.h:
+ Rewrite many of the buffer painting functions to handle odd
+ sizes (for many formats, size%4!=0 or size%8!=0). Most have
+ been verified to work with my video card.
+ * testsuite/gst-lint: Add check for elements calling
+ gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
+
+2004-01-08 David Schleef <ds@schleef.org>
+
* gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
(gst_videodrop_link), (gst_videodrop_init): Fix negotiation.