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:
authorLukasz Marek <lukasz.m.luki2@gmail.com>2014-05-06 23:43:34 +0400
committerLukasz Marek <lukasz.m.luki2@gmail.com>2014-05-08 01:39:47 +0400
commita5f2f33a679421506a7e1755e82edaebc63f3588 (patch)
tree4b5dce6de4830535d17e455f2bf709d30b2d5331 /ffmpeg.c
parent75a19f5eec665dd792a9a04cdfee15cf897c5f86 (diff)
ffmpeg: use av_fifo_freep
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 907096a6ed..97922816ca 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3116,7 +3116,7 @@ static void free_input_threads(void)
av_fifo_generic_read(f->fifo, &pkt, sizeof(pkt), NULL);
av_free_packet(&pkt);
}
- av_fifo_free(f->fifo);
+ av_fifo_freep(&f->fifo);
}
}