Browse Source

audio_frame_queue: fix null ptr dereference

This happened when a frame was removed before any was added.
Fixes part of Ticket1208

Found-by: John Villamil, Piotr Bandurski and Carl Eugen Hoyos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
3938a0eeae
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/audio_frame_queue.c

+ 1
- 1
libavcodec/audio_frame_queue.c View File

@@ -100,7 +100,7 @@ void ff_af_queue_remove(AudioFrameQueue *afq, int nb_samples, int64_t *pts,

if(nb_samples){
av_assert0(!afq->frame_count);
if(afq->frames[0].pts != AV_NOPTS_VALUE)
if(afq->frames && afq->frames[0].pts != AV_NOPTS_VALUE)
afq->frames[0].pts += nb_samples;
av_log(afq->avctx, AV_LOG_DEBUG, "Trying to remove %d more samples than are in the que\n", nb_samples);
}


Loading…
Cancel
Save