From: Stéphane Loeuillet Date: Sat, 8 Jan 2005 15:30:33 +0000 (+0000) Subject: ext/dv/gstdvdec.c: really fix bpp24/32 dvdec caps (classic rgba indeed) X-Git-Tag: BRANCH-GSTREAMER-0_8-ROOT~174 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7772f7981df1bcd5104dc78fb772dff99c12f296;p=platform%2Fupstream%2Fgst-plugins-good.git 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) --- diff --git a/ChangeLog b/ChangeLog index 135614e..6277b25 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,14 @@ 2005-01-08 Stephane LOEUILLET * 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 + + * 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 9dd35bf..5430ccd 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)