Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-10-12 22:44:02 +0400
committerJustin Ruggles <justin.ruggles@gmail.com>2011-10-13 01:48:33 +0400
commitc74f1f47b29dea6f4b5766a8d5a66bfeca35f9c3 (patch)
treea3f458ceb9815289f3cd7f9430a60ca7fffabc7b /avplay.c
parentcb2c4de3a16c083973921587b6e8c79af59c9626 (diff)
avplay: free the active audio packet at exit.
fixes a memleak
Diffstat (limited to 'avplay.c')
-rw-r--r--avplay.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/avplay.c b/avplay.c
index c2b5e4b71b..a4b58a539e 100644
--- a/avplay.c
+++ b/avplay.c
@@ -2268,6 +2268,7 @@ static void stream_component_close(VideoState *is, int stream_index)
SDL_CloseAudio();
packet_queue_end(&is->audioq);
+ av_free_packet(&is->audio_pkt);
if (is->reformat_ctx)
av_audio_convert_free(is->reformat_ctx);
is->reformat_ctx = NULL;