diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2005-01-08 15:30:33 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2005-01-08 15:30:33 +0000 |
commit | 7772f7981df1bcd5104dc78fb772dff99c12f296 (patch) | |
tree | 1f4624b635cc364c4875087454290c7d66c78604 | |
parent | f51790b89dded6ea5e9ba5c0b0a82a2654b8a5d3 (diff) |
ext/dv/gstdvdec.c: really fix bpp24/32 dvdec caps (classic rgba indeed)
Original commit message from CVS:
* ext/dv/gstdvdec.c:
really fix bpp24/32 dvdec caps (classic rgba indeed)
* gst/asfdemux/gstasfdemux.c:
(gst_asf_demux_process_ext_content_desc):
don't send text tags if they are empty (bis repetita)
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ext/dv/gstdvdec.c | 6 |
2 files changed, 11 insertions, 3 deletions
@@ -1,6 +1,14 @@ 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr> * ext/dv/gstdvdec.c: + really fix bpp24/32 dvdec caps (classic rgba indeed) + * gst/asfdemux/gstasfdemux.c: + (gst_asf_demux_process_ext_content_desc): + don't send text tags if they are empty (bis repetita) + +2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr> + + * ext/dv/gstdvdec.c: remove unneeded comment from dvdec (related to DV 4CC codes in AVI files) moved them in gstreamer/docs/random/mimetypes diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 9dd35bfe..5430ccdd 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -123,9 +123,9 @@ static GstStaticPadTemplate video_src_temp = GST_STATIC_PAD_TEMPLATE ("video", "bpp = (int) 32, " "depth = (int) 24, " "endianness = (int) " G_STRINGIFY (G_BIG_ENDIAN) ", " - "red_mask = (int) 0x00ff0000, " - "green_mask = (int) 0x0000ff00, " - "blue_mask = (int) 0x000000ff, " + "red_mask = (int) 0x0000ff00, " + "green_mask = (int) 0x00ff0000, " + "blue_mask = (int) 0xff000000, " "width = (int) 720, " "height = (int) { " G_STRINGIFY (NTSC_HEIGHT) ", " G_STRINGIFY (PAL_HEIGHT) |