summaryrefslogtreecommitdiff
path: root/libavformat/loasdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-26 03:30:20 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-26 03:30:20 +0200
commit9c83f3e65960e87da63809b7c0ab44c84dcf5f28 (patch)
tree90efe2c0ee7a0bc31ae9634bad28e47101802492 /libavformat/loasdec.c
parente083a62e9d558d379f3270034be0f926202dc01a (diff)
loasdec: switch to AVSTREAM_PARSE_FULL_RAW
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/loasdec.c')
-rw-r--r--libavformat/loasdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/loasdec.c b/libavformat/loasdec.c
index 4b4e04fff9..e8711ceb32 100644
--- a/libavformat/loasdec.c
+++ b/libavformat/loasdec.c
@@ -69,7 +69,7 @@ static int loas_read_header(AVFormatContext *s)
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_id = s->iformat->raw_codec_id;
- st->need_parsing = AVSTREAM_PARSE_FULL;
+ st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
//LCM of all possible AAC sample rates
avpriv_set_pts_info(st, 64, 1, 28224000);