diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-09-28 21:46:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-09-28 21:46:22 +0000 |
commit | 0b8e7ab059f3038a6a662ea743f4f7d2de6722ef (patch) | |
tree | 3c17518c96d288b578ad24271244e5c4aae244f7 /libavcodec/vorbis_enc.c | |
parent | 5e56b30e1febefd4eee7a0831ccbcb979cc11a2e (diff) | |
download | ffmpeg-0b8e7ab059f3038a6a662ea743f4f7d2de6722ef.tar.gz |
some more linebreak and brace placement cosmetics
Originally committed as revision 20071 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_enc.c')
-rw-r--r-- | libavcodec/vorbis_enc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c index b188d89c06..1d36a734c3 100644 --- a/libavcodec/vorbis_enc.c +++ b/libavcodec/vorbis_enc.c @@ -894,7 +894,8 @@ static int apply_window_and_mdct(vorbis_enc_context * venc, float n = (float)(1 << venc->log2_blocksize[0]) / 4.; // FIXME use dsp - if (!venc->have_saved && !samples) return 0; + if (!venc->have_saved && !samples) + return 0; if (venc->have_saved) for (channel = 0; channel < venc->channels; channel++) |