[FFmpeg-cvslog] ffplay: reset audio_pkt_temp when opening audio

Marton Balint git at videolan.org
Thu Mar 22 05:42:33 CET 2012


ffmpeg | branch: master | Marton Balint <cus at passwd.hu> | Wed Mar 14 00:54:01 2012 +0100| [a2c5be631962a8d0dd59b12fa58292d8c042236c] | committer: Marton Balint

ffplay: reset audio_pkt_temp when opening audio

Otherwise we may use the remaining data of the last packet from the previous
audio stream. Fixes bug #951.

Signed-off-by: Marton Balint <cus at passwd.hu>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a2c5be631962a8d0dd59b12fa58292d8c042236c
---

 ffplay.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/ffplay.c b/ffplay.c
index e831f83..8a5818f 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2253,6 +2253,7 @@ static int stream_component_open(VideoState *is, int stream_index)
         avctx->flags |= CODEC_FLAG_EMU_EDGE;
 
     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
+        memset(&is->audio_pkt_temp, 0, sizeof(is->audio_pkt_temp));
         env = SDL_getenv("SDL_AUDIO_CHANNELS");
         if (env)
             wanted_channel_layout = av_get_default_channel_layout(SDL_atoi(env));



More information about the ffmpeg-cvslog mailing list