mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 21:51:09 +00:00
gst-libs/gst/riff/riff-media.c: Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps): Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
This commit is contained in:
parent
3ec4196769
commit
ab433ee7c9
2 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-12-03 Edward Hervey <bilboed@bilboed.com>
|
||||||
|
|
||||||
|
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
|
||||||
|
Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
|
||||||
|
|
||||||
2007-12-03 Wim Taymans <wim.taymans@gmail.com>
|
2007-12-03 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
|
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
|
||||||
|
@ -34,6 +39,7 @@
|
||||||
(proxy_drained_signal):
|
(proxy_drained_signal):
|
||||||
Add some more debug info and use factor filtering code.
|
Add some more debug info and use factor filtering code.
|
||||||
|
|
||||||
|
>>>>>>> 1.3622
|
||||||
2007-11-26 Stefan Kost <ensonic@users.sf.net>
|
2007-11-26 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
* gst/audiotestsrc/gstaudiotestsrc.c:
|
* gst/audiotestsrc/gstaudiotestsrc.c:
|
||||||
|
@ -41,6 +47,7 @@
|
||||||
* gst/volume/gstvolume.h:
|
* gst/volume/gstvolume.h:
|
||||||
Add GAP-flag support.
|
Add GAP-flag support.
|
||||||
|
|
||||||
|
>>>>>>> 1.3620
|
||||||
2007-11-24 Julien MOUTTE <julien@moutte.net>
|
2007-11-24 Julien MOUTTE <julien@moutte.net>
|
||||||
|
|
||||||
* tests/examples/seek/seek.c: (main): Increase the range of the
|
* tests/examples/seek/seek.c: (main): Increase the range of the
|
||||||
|
@ -220,6 +227,7 @@
|
||||||
Handle redirect messages by sorting multiple redirections based on the
|
Handle redirect messages by sorting multiple redirections based on the
|
||||||
connection speed.
|
connection speed.
|
||||||
|
|
||||||
|
>>>>>>> 1.3619
|
||||||
2007-11-16 Wim Taymans <wim.taymans@gmail.com>
|
2007-11-16 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
|
Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
|
||||||
|
@ -301,6 +309,7 @@
|
||||||
Instead, pull in glib.h and use g_malloc/g_free for
|
Instead, pull in glib.h and use g_malloc/g_free for
|
||||||
consistency. Fixes: #496548
|
consistency. Fixes: #496548
|
||||||
|
|
||||||
|
>>>>>>> 1.3606
|
||||||
2007-11-09 Stefan Kost <ensonic@users.sf.net>
|
2007-11-09 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
* gst/playback/gstdecodebin2.c:
|
* gst/playback/gstdecodebin2.c:
|
||||||
|
|
|
@ -390,6 +390,14 @@ gst_riff_create_video_caps (guint32 codec_fcc,
|
||||||
*codec_name = g_strdup ("Microsoft Windows Media Advanced Profile");
|
*codec_name = g_strdup ("Microsoft Windows Media Advanced Profile");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case GST_MAKE_FOURCC ('W', 'V', 'C', '1'):
|
||||||
|
caps = gst_caps_new_simple ("video/x-wmv",
|
||||||
|
"wmvversion", G_TYPE_INT, 3, "fourcc", GST_TYPE_FOURCC,
|
||||||
|
codec_fcc, NULL);
|
||||||
|
if (codec_name)
|
||||||
|
*codec_name = g_strdup ("Microsoft Windows Media VC-1");
|
||||||
|
break;
|
||||||
|
|
||||||
case GST_MAKE_FOURCC ('c', 'v', 'i', 'd'):
|
case GST_MAKE_FOURCC ('c', 'v', 'i', 'd'):
|
||||||
caps = gst_caps_new_simple ("video/x-cinepak", NULL);
|
caps = gst_caps_new_simple ("video/x-cinepak", NULL);
|
||||||
if (codec_name)
|
if (codec_name)
|
||||||
|
|
Loading…
Reference in a new issue