mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: Give the TrueSpeech audio codec a proper caps. This is now synchronized with libriff ...
Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps): Give the TrueSpeech audio codec a proper caps. This is now synchronized with libriff in -base cvs.
This commit is contained in:
parent
22f1731262
commit
bf1316819f
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-09-03 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
|
||||
Give the TrueSpeech audio codec a proper caps. This is now synchronized
|
||||
with libriff in -base cvs.
|
||||
|
||||
2008-08-31 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -774,6 +774,10 @@ gst_ffmpeg_codecid_to_caps (enum CodecID codec_id,
|
|||
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-vmnc", NULL);
|
||||
break;
|
||||
|
||||
case CODEC_ID_TRUESPEECH:
|
||||
caps = gst_ff_aud_caps_new (context, codec_id, "audio/x-truespeech", NULL);
|
||||
break;
|
||||
|
||||
case CODEC_ID_WS_VQA:
|
||||
case CODEC_ID_IDCIN:
|
||||
case CODEC_ID_8BPS:
|
||||
|
@ -800,7 +804,6 @@ gst_ffmpeg_codecid_to_caps (enum CodecID codec_id,
|
|||
case CODEC_ID_MMVIDEO:
|
||||
case CODEC_ID_ZMBV:
|
||||
case CODEC_ID_AVS:
|
||||
case CODEC_ID_TRUESPEECH:
|
||||
case CODEC_ID_CAVS:
|
||||
buildcaps = TRUE;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue