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/aac_ac3_parser.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/aac_ac3_parser.c')
-rw-r--r-- | libavcodec/aac_ac3_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c index f28f3f2678..cfb1a222be 100644 --- a/libavcodec/aac_ac3_parser.c +++ b/libavcodec/aac_ac3_parser.c @@ -1,5 +1,5 @@ /* - * Common AAC and AC3 parser + * Common AAC and AC-3 parser * Copyright (c) 2003 Fabrice Bellard. * Copyright (c) 2003 Michael Niedermayer. * @@ -71,7 +71,7 @@ get_next: /* update codec info */ avctx->sample_rate = s->sample_rate; - /* allow downmixing to stereo (or mono for AC3) */ + /* allow downmixing to stereo (or mono for AC-3) */ if(avctx->request_channels > 0 && avctx->request_channels < s->channels && (avctx->request_channels <= 2 || |