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:
authorMichael Niedermayer <michaelni@gmx.at>2013-12-12 02:18:21 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-12-12 02:18:51 +0400
commit4cbf3eb9e6a88426da255a00305b5858070d192a (patch)
tree321d2b32dcc9092a9d46e508b91ae8094b95c208 /doc/examples/muxing.c
parentdee6d5f51c72be11aae95caf02551fb94e02d6e7 (diff)
parenteb891b3114f499e96b9faddd0b0ae856345dfbd9 (diff)
Merge commit 'eb891b3114f499e96b9faddd0b0ae856345dfbd9'
* commit 'eb891b3114f499e96b9faddd0b0ae856345dfbd9': Replace all uses of avcodec_free_frame with av_frame_free(). Conflicts: doc/examples/decoding_encoding.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/examples/muxing.c')
-rw-r--r--doc/examples/muxing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c
index 4276114306..9ad6e28281 100644
--- a/doc/examples/muxing.c
+++ b/doc/examples/muxing.c
@@ -280,7 +280,7 @@ static void write_audio_frame(AVFormatContext *oc, AVStream *st)
av_err2str(ret));
exit(1);
}
- avcodec_free_frame(&frame);
+ av_frame_free(&frame);
}
static void close_audio(AVFormatContext *oc, AVStream *st)