diff options
author | Alexander Strasser <eclipse7@gmx.net> | 2011-02-08 00:09:34 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-10 21:34:29 -0500 |
commit | 97f5f971081d83e2d20f27d8569ce467feed42d0 (patch) | |
tree | 5ec4c158b27065f8e3d7ac6503a458338e85988b /libavcodec/vorbis_dec.c | |
parent | 07f06540f6ea8de14a750ef7ef58498ccc3cc58e (diff) | |
download | ffmpeg-97f5f971081d83e2d20f27d8569ce467feed42d0.tar.gz |
vorbis dec: cosmetics: Indent CPP cond properly
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavcodec/vorbis_dec.c')
-rw-r--r-- | libavcodec/vorbis_dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index 578ffb84a6..271f900931 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -799,12 +799,12 @@ static void create_map(vorbis_context *vc, uint_fast8_t floor_number) vf->map_size[blockflag] = n; } -# ifdef V_DEBUG +#ifdef V_DEBUG for (idx = 0; idx <= n; ++idx) { AV_DEBUG("floor0 map: map at pos %d is %d\n", idx, map[idx]); } -# endif +#endif } static int vorbis_parse_setup_hdr_modes(vorbis_context *vc) |