diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-08-03 16:42:32 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-08-03 16:42:32 +0000 |
commit | 14b7062829968e3e6f8974cbea1bbdbf6e83e095 (patch) | |
tree | 2cd2b7adb894d80aec74dede0fabbe67b8aec34c /libavcodec/ac3.c | |
parent | 2d47c3de988c3448bc8ed1799dd3df5cdd16549f (diff) | |
download | ffmpeg-14b7062829968e3e6f8974cbea1bbdbf6e83e095.tar.gz |
cosmetics: make all references to AC-3 capitalized and hyphenated
Originally committed as revision 14523 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3.c')
-rw-r--r-- | libavcodec/ac3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ac3.c b/libavcodec/ac3.c index 6b18930ca1..e4117f1a15 100644 --- a/libavcodec/ac3.c +++ b/libavcodec/ac3.c @@ -1,5 +1,5 @@ /* - * Common code between AC3 encoder and decoder + * Common code between the AC-3 encoder and decoder * Copyright (c) 2000 Fabrice Bellard. * * This file is part of FFmpeg. @@ -21,7 +21,7 @@ /** * @file ac3.c - * Common code between AC3 encoder and decoder. + * Common code between the AC-3 encoder and decoder. */ #include "avcodec.h" @@ -197,7 +197,7 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end, } while (end > band_start_tab[j++]); } -/* AC3 bit allocation. The algorithm is the one described in the AC3 +/* AC-3 bit allocation. The algorithm is the one described in the AC-3 spec. */ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap, int8_t *exp, int start, int end, |