diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-12-02 14:43:40 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-12-02 15:08:00 +0100 |
commit | 893f33e7f005734dcd3d842da17630de41eda402 (patch) | |
tree | 767db175de164798d27b4d6735a81597e036253e /doc/examples | |
parent | c7a99d99bdcec4d81a3859b0547dea7bd54bff42 (diff) | |
download | ffmpeg-893f33e7f005734dcd3d842da17630de41eda402.tar.gz |
doc/examples/filtering_audio: fix style
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/filtering_audio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/filtering_audio.c b/doc/examples/filtering_audio.c index 2f78e596d2..0be26543d1 100644 --- a/doc/examples/filtering_audio.c +++ b/doc/examples/filtering_audio.c @@ -243,9 +243,9 @@ int main(int argc, char **argv) /* pull filtered audio from the filtergraph */ while (1) { ret = av_buffersink_get_frame(buffersink_ctx, filt_frame); - if(ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) + if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) break; - if(ret < 0) + if (ret < 0) goto end; print_frame(filt_frame); av_frame_unref(filt_frame); |