sys/qtwrapper/codecmapping.c: Add some of our favorite codecs.

Original commit message from CVS:
* sys/qtwrapper/codecmapping.c: Add some of our favorite codecs.
This commit is contained in:
David Schleef 2008-11-14 23:01:56 +00:00
parent 0e3ee0f648
commit a4ec464bd8
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2008-11-14 David Schleef <ds@schleef.org>
* sys/qtwrapper/codecmapping.c: Add some of our favorite codecs.
2008-11-14 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
* gst/qtmux/atoms.c:

View file

@ -136,6 +136,12 @@ fourcc_to_caps (guint32 fourcc)
case QT_MAKE_FOURCC_LE ('u', 'l', 'a', 'w'):
caps = audio_caps_from_string ("audio/x-mulaw");
break;
case QT_MAKE_FOURCC_LE ('A', 'V', 'd', 'n'):
caps = audio_caps_from_string ("video/x-dnxhd");
break;
case QT_MAKE_FOURCC_LE ('i', 'c', 'o', 'd'):
caps = audio_caps_from_string ("video/x-apple-intermediate-codec");
break;
/* TO FILL !! */
case QT_MAKE_FOURCC_LE ('M', 'A', 'C', '3'):
case QT_MAKE_FOURCC_LE ('M', 'A', 'C', '6'):