diff options
author | Iain Holmes <iain@prettypeople.org> | 2002-12-08 17:20:31 +0000 |
---|---|---|
committer | Iain Holmes <iain@prettypeople.org> | 2002-12-08 17:20:31 +0000 |
commit | 306e1bffad1155409cb5cdb95cd8e4c00e065758 (patch) | |
tree | 9736fb40c87b938acabc703d1b35a22c115ba0fd | |
parent | b1cb01eaecafe83a72acfbe4c301eafa8566c919 (diff) |
Replace audio/mp3 with audio/x-mp3 and audio/x-flac with application/x-flacRELEASE-0_5_0-PRIVATEDANCERBRANCH-RELEASE-0_5_0-ROOTBRANCH-RELEASE-0_5_0
Original commit message from CVS:
Replace audio/mp3 with audio/x-mp3 and audio/x-flac with application/x-flac
-rw-r--r-- | ext/ffmpeg/gstffmpegcodecmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ffmpeg/gstffmpegcodecmap.c b/ext/ffmpeg/gstffmpegcodecmap.c index 1654379..2af4114 100644 --- a/ext/ffmpeg/gstffmpegcodecmap.c +++ b/ext/ffmpeg/gstffmpegcodecmap.c @@ -54,12 +54,12 @@ gst_ffmpegcodec_codec_context_to_caps (AVCodecContext *context, int codec_id) break; case CODEC_ID_MP2: return GST_CAPS_NEW ("ffmpeg_mp2", - "audio/mp3", + "audio/x-mp3", NULL); break; case CODEC_ID_MP3LAME: return GST_CAPS_NEW ("ffmpeg_mp3", - "audio/mp3", + "audio/x-mp3", NULL); break; case CODEC_ID_VORBIS: |