diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-12 23:43:30 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-20 15:08:41 -0500 |
commit | b3a4c7e0f1faa327a52b10840eed14e116587894 (patch) | |
tree | 6cd1e20f0142c36657d288b2afb15a7848fc06da /libavcodec/mlp_parser.c | |
parent | 2460b168b4ca308504ee9f7966e3e4cfb3fc90e6 (diff) | |
download | ffmpeg-b3a4c7e0f1faa327a52b10840eed14e116587894.tar.gz |
mlp parser: set duration instead of frame_size
Diffstat (limited to 'libavcodec/mlp_parser.c')
-rw-r--r-- | libavcodec/mlp_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlp_parser.c b/libavcodec/mlp_parser.c index e0fedeb7e9..be71867c2d 100644 --- a/libavcodec/mlp_parser.c +++ b/libavcodec/mlp_parser.c @@ -311,7 +311,7 @@ static int mlp_parse(AVCodecParserContext *s, else avctx->sample_fmt = AV_SAMPLE_FMT_S16; avctx->sample_rate = mh.group1_samplerate; - avctx->frame_size = mh.access_unit_size; + s->duration = mh.access_unit_size; if (mh.stream_type == 0xbb) { /* MLP stream */ |