From 2f8aaba472cb6bc3df2953ec4b94133ecb8b3a10 Mon Sep 17 00:00:00 2001 From: banan Date: Wed, 25 Jun 2008 19:39:38 +0000 Subject: [PATCH] Add more codec id's and tags git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13977 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavformat/oma.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavformat/oma.c b/libavformat/oma.c index dcfa1d06b..526c98eb9 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, -- 2.39.2