mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
omadec: Disable "Unsupported codec ATRAC3+" warning
Also add a list of supported decoders. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2e1fb96af3
commit
54bb30bae2
@ -37,6 +37,7 @@
|
||||
* - Sound data organized in packets follow the EA3 header
|
||||
* (can be encrypted using the Sony DRM!).
|
||||
*
|
||||
* Supported decoders: ATRAC3, ATRAC3+, MP3, LPCM
|
||||
*/
|
||||
|
||||
#include "libavutil/channel_layout.h"
|
||||
@ -379,7 +380,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_RAW;
|
||||
|
Loading…
Reference in New Issue
Block a user