summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordi Mas <jordimash@gmail.com>2009-07-20 11:48:45 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-07-20 11:48:45 +0200
commitc27b4babf10a17160fd0d984c0926eefc4877d6a (patch)
treef9807851cc2438fb68fe538cc5f01a01b4d65820
parentaef712df82e2788765a14fd8a22c9c07135acc11 (diff)
ffmpegmux: Add proper audio mapping for DVD muxer. Fixes #588546
-rw-r--r--ext/ffmpeg/gstffmpegcodecmap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/ffmpeg/gstffmpegcodecmap.c b/ext/ffmpeg/gstffmpegcodecmap.c
index 90f7cb1..cc3eb2d 100644
--- a/ext/ffmpeg/gstffmpegcodecmap.c
+++ b/ext/ffmpeg/gstffmpegcodecmap.c
@@ -2428,7 +2428,9 @@ gst_ffmpeg_formatid_get_codecids (const gchar * format_name,
CODEC_ID_NONE
};
static enum CodecID mpeg_audio_list[] = { CODEC_ID_MP2,
- CODEC_ID_MP3,
+ CODEC_ID_AC3,
+ CODEC_ID_DTS,
+ CODEC_ID_PCM_S16BE,
CODEC_ID_NONE
};