diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-14 00:01:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-14 05:05:20 +0100 |
commit | 48a7981e6f93a27c9caca99d0bfb39e6244606a5 (patch) | |
tree | e9c74cb0a62616e336121a255ab9cb4aa4ef6704 /doc/examples/demuxing.c | |
parent | aaa7d2fafcc375d8cdef25a289008821c9c2fbaa (diff) | |
download | ffmpeg-48a7981e6f93a27c9caca99d0bfb39e6244606a5.tar.gz |
doc/examples: fix assignments in if()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/examples/demuxing.c')
-rw-r--r-- | doc/examples/demuxing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/demuxing.c b/doc/examples/demuxing.c index 3c9d4a1278..bee21b7b33 100644 --- a/doc/examples/demuxing.c +++ b/doc/examples/demuxing.c @@ -314,7 +314,7 @@ int main (int argc, char **argv) if (audio_stream) { const char *fmt; - if ((ret = get_format_from_sample_fmt(&fmt, audio_dec_ctx->sample_fmt) < 0)) + if ((ret = get_format_from_sample_fmt(&fmt, audio_dec_ctx->sample_fmt)) < 0) goto end; printf("Play the output audio file with the command:\n" "ffplay -f %s -ac %d -ar %d %s\n", |