summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-06-04 00:16:12 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-06-04 00:16:12 +0200
commit33af5335fd8e1b411bb1bdfad93b675033866c2c (patch)
tree02537773dbb71cd98bfb0fe9e4d08fa3919dac59 /ffplay.c
parent49125aeddcfe1990ab4159d1b144b9387182452b (diff)
ffplay: error out with invalid sample rate or channels.
Fixes Ticket119 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ffplay.c b/ffplay.c
index 5997f651e1..4139afb7cc 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2158,6 +2158,10 @@ static int stream_component_open(VideoState *is, int stream_index)
/* prepare audio output */
if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
+ if(avctx->sample_rate <= 0 || avctx->channels <= 0){
+ fprintf(stderr, "Invalid sample rate or channel count\n");
+ return -1;
+ }
wanted_spec.freq = avctx->sample_rate;
wanted_spec.format = AUDIO_S16SYS;
wanted_spec.channels = avctx->channels;