From: Benjamin Larsson Date: Wed, 25 Jun 2008 19:39:38 +0000 (+0000) Subject: Add more codec IDs and tags. X-Git-Tag: v0.5~3941 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f035fe9755eaa615260bde391e9a895388566108;p=platform%2Fupstream%2Flibav.git Add more codec IDs and tags. Originally committed as revision 13977 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/oma.c b/libavformat/oma.c index dcfa1d0..526c98e 100644 --- a/libavformat/oma.c +++ b/libavformat/oma.c @@ -52,11 +52,15 @@ enum { OMA_CODECID_ATRAC3 = 0, OMA_CODECID_ATRAC3P = 1, + OMA_CODECID_MP3 = 3, + OMA_CODECID_LPCM = 4, + OMA_CODECID_WMA = 5, }; static const AVCodecTag codec_oma_tags[] = { { CODEC_ID_ATRAC3, OMA_CODECID_ATRAC3 }, { CODEC_ID_ATRAC3P, OMA_CODECID_ATRAC3P }, + { CODEC_ID_MP3, OMA_CODECID_MP3 }, }; static int oma_read_header(AVFormatContext *s,