mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-30 19:18:31 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: Add mapping for IMC and MLP audio codecs.
Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps): Add mapping for IMC and MLP audio codecs.
This commit is contained in:
parent
97df53e604
commit
7342d67f97
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-12-30 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||||
|
|
||||||
|
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
|
||||||
|
Add mapping for IMC and MLP audio codecs.
|
||||||
|
|
||||||
2008-12-30 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
2008-12-30 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
|
||||||
* ffmpegrev:
|
* ffmpegrev:
|
||||||
|
|
|
@ -585,6 +585,14 @@ gst_ffmpeg_codecid_to_caps (enum CodecID codec_id,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case CODEC_ID_MLP:
|
||||||
|
caps = gst_ff_aud_caps_new (context, codec_id, "audio/x-mlp", NULL);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case CODEC_ID_IMC:
|
||||||
|
caps = gst_ff_aud_caps_new (context, codec_id, "audio/x-imc", NULL);
|
||||||
|
break;
|
||||||
|
|
||||||
/* MJPEG is normal JPEG, Motion-JPEG and Quicktime MJPEG-A. MJPEGB
|
/* MJPEG is normal JPEG, Motion-JPEG and Quicktime MJPEG-A. MJPEGB
|
||||||
* is Quicktime's MJPEG-B. LJPEG is lossless JPEG. I don't know what
|
* is Quicktime's MJPEG-B. LJPEG is lossless JPEG. I don't know what
|
||||||
* sp5x is, but it's apparently something JPEG... We don't separate
|
* sp5x is, but it's apparently something JPEG... We don't separate
|
||||||
|
|
Loading…
Reference in a new issue