diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-26 03:30:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-26 03:30:35 +0200 |
commit | 97c0d5357d9cdb4fd18920a76444cca2ec1a9cd5 (patch) | |
tree | 887ab83dc30f20d540cf53be05e6410d1534590c | |
parent | 9c83f3e65960e87da63809b7c0ab44c84dcf5f28 (diff) | |
download | ffmpeg-97c0d5357d9cdb4fd18920a76444cca2ec1a9cd5.tar.gz |
omadec: switch to AVSTREAM_PARSE_FULL_RAW
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/omadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/omadec.c b/libavformat/omadec.c index 1cd8fdf9d5..1e1b980ca9 100644 --- a/libavformat/omadec.c +++ b/libavformat/omadec.c @@ -346,7 +346,7 @@ static int oma_read_header(AVFormatContext *s) av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n"); break; case OMA_CODECID_MP3: - st->need_parsing = AVSTREAM_PARSE_FULL; + st->need_parsing = AVSTREAM_PARSE_FULL_RAW; framesize = 1024; break; case OMA_CODECID_LPCM: |