gst-libs/gst/riff/riff-media.c: Add 'WVC1' codec mapping for Windows Media VC-1 video...
authorEdward Hervey <bilboed@bilboed.com>
Mon, 3 Dec 2007 11:32:30 +0000 (11:32 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 3 Dec 2007 11:32:30 +0000 (11:32 +0000)
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.

ChangeLog
gst-libs/gst/riff/riff-media.c

index 3641593..8192cc2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
@@ -34,6 +39,7 @@
        (proxy_drained_signal):
        Add some more debug info and use factor filtering code.
 
+>>>>>>> 1.3622
 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
 
        * gst/audiotestsrc/gstaudiotestsrc.c:
@@ -41,6 +47,7 @@
        * gst/volume/gstvolume.h:
          Add GAP-flag support.
 
+>>>>>>> 1.3620
 2007-11-24  Julien MOUTTE  <julien@moutte.net>
 
        * tests/examples/seek/seek.c: (main): Increase the range of the
        Handle redirect messages by sorting multiple redirections based on the
        connection speed.
 
+>>>>>>> 1.3619
 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
 
        Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
        Instead, pull in glib.h and use g_malloc/g_free for 
        consistency. Fixes: #496548
 
+>>>>>>> 1.3606
 2007-11-09  Stefan Kost  <ensonic@users.sf.net>
 
        * gst/playback/gstdecodebin2.c:
index f5ed889..6bca196 100644 (file)
@@ -390,6 +390,14 @@ gst_riff_create_video_caps (guint32 codec_fcc,
         *codec_name = g_strdup ("Microsoft Windows Media Advanced Profile");
       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'):
       caps = gst_caps_new_simple ("video/x-cinepak", NULL);
       if (codec_name)