summaryrefslogtreecommitdiff
path: root/libavcodec/s302m.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-06-06 00:59:16 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-06-06 01:12:06 +0200
commit802cca5905abe1fe8392e85a812462b959889aaa (patch)
tree2fdd291524e8539cd24c967047a4779832009eff /libavcodec/s302m.c
parent42c41e96ff6dc4fa24d98e1913aff925b8122776 (diff)
avcodec/s302m: Only set the sample rate when some data is output
This way ffplay chooses the mp2 stream for Ticket3890 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/s302m.c')
-rw-r--r--libavcodec/s302m.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/s302m.c b/libavcodec/s302m.c
index daccbaf242..5cf9eb5b1d 100644
--- a/libavcodec/s302m.c
+++ b/libavcodec/s302m.c
@@ -85,7 +85,6 @@ static int s302m_parse_frame_header(AVCodecContext *avctx, const uint8_t *buf,
case 8:
avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK | AV_CH_LAYOUT_STEREO_DOWNMIX;
}
- avctx->sample_rate = 48000;
avctx->bit_rate = 48000 * avctx->channels * (avctx->bits_per_raw_sample + 4) +
32 * (48000 / (buf_size * 8 /
(avctx->channels *
@@ -197,6 +196,8 @@ static int s302m_decode_frame(AVCodecContext *avctx, void *data,
}
}
+ avctx->sample_rate = 48000;
+
*got_frame_ptr = 1;
return avpkt->size;