diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-28 21:44:38 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-28 21:44:38 +0200 |
commit | 4d3072ada3d586fa94acd72ec6248731183547a6 (patch) | |
tree | 0eca6d97ee3bf46b49ef6ce5f693e6a80db3bd4d /doc | |
parent | 01983e50c0248a3794b345cc0df108752a7c21c8 (diff) | |
download | ffmpeg-4d3072ada3d586fa94acd72ec6248731183547a6.tar.gz |
doc/examples/muxing: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/muxing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c index cd734f8b37..ea5c78e289 100644 --- a/doc/examples/muxing.c +++ b/doc/examples/muxing.c @@ -535,7 +535,7 @@ int main(int argc, char **argv) AVOutputFormat *fmt; AVFormatContext *oc; AVCodec *audio_codec, *video_codec; - int flush, ret; + int ret; int have_video = 0, have_audio = 0; int encode_video = 0, encode_audio = 0; |