summaryrefslogtreecommitdiff
path: root/libavformat/oma.c
diff options
context:
space:
mode:
authorBenjamin Larsson <banan@ludd.ltu.se>2008-06-25 19:39:38 +0000
committerBenjamin Larsson <banan@ludd.ltu.se>2008-06-25 19:39:38 +0000
commitf035fe9755eaa615260bde391e9a895388566108 (patch)
treebbb1ef2012e9e01b061bf5a81f37316a92dae694 /libavformat/oma.c
parentf3b5a1a260e2a2061fbbadf64d3a41225af0dbaf (diff)
Add more codec IDs and tags.
Originally committed as revision 13977 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oma.c')
-rw-r--r--libavformat/oma.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/oma.c b/libavformat/oma.c
index dcfa1d06b8..526c98eb9c 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,