diff options
author | Maxim Polijakowski <max_pole@gmx.de> | 2014-01-03 23:23:11 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2014-01-09 19:33:07 +0100 |
commit | e6f0bb65270be51ea43345a28f8e4b1a728f7d0e (patch) | |
tree | b19f905f58dfdb7f3a940f0828515b43f673c4f1 /libavformat/omadec.c | |
parent | 4c642d8d98703faf52983243098f35865e15b312 (diff) | |
download | ffmpeg-e6f0bb65270be51ea43345a28f8e4b1a728f7d0e.tar.gz |
ATRAC3+ decoder
Cleanup by Diego Biurrun.
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
Diffstat (limited to 'libavformat/omadec.c')
-rw-r--r-- | libavformat/omadec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/omadec.c b/libavformat/omadec.c index 709a60b6ff..6c27458545 100644 --- a/libavformat/omadec.c +++ b/libavformat/omadec.c @@ -37,7 +37,7 @@ * - Sound data organized in packets follow the EA3 header * (can be encrypted using the Sony DRM!). * - * CODEC SUPPORT: Only ATRAC3 codec is currently supported! + * Supported decoders: ATRAC3, ATRAC3+, MP3, LPCM */ #include "libavutil/channel_layout.h" @@ -386,7 +386,6 @@ static int oma_read_header(AVFormatContext *s) st->codec->sample_rate = samplerate; st->codec->bit_rate = samplerate * framesize * 8 / 2048; avpriv_set_pts_info(st, 64, 1, samplerate); - av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n"); break; case OMA_CODECID_MP3: st->need_parsing = AVSTREAM_PARSE_FULL; |