diff options
author | Justin Ruggles | 2008-08-03 16:42:32 +0000 |
---|---|---|
committer | Justin Ruggles | 2008-08-03 16:42:32 +0000 |
commit | 14b7062829968e3e6f8974cbea1bbdbf6e83e095 (patch) | |
tree | 2cd2b7adb894d80aec74dede0fabbe67b8aec34c /libavformat/rmenc.c | |
parent | 2d47c3de988c3448bc8ed1799dd3df5cdd16549f (diff) |
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 'libavformat/rmenc.c')
-rw-r--r-- | libavformat/rmenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rmenc.c b/libavformat/rmenc.c index 03f629e7be..0e61f02bd1 100644 --- a/libavformat/rmenc.c +++ b/libavformat/rmenc.c @@ -185,7 +185,7 @@ static void rv10_write_header(AVFormatContext *ctx, case 8000: fscode = 3; } - put_be16(s, fscode); /* codec additional info, for AC3, seems + put_be16(s, fscode); /* codec additional info, for AC-3, seems to be a frequency code */ /* special hack to compensate rounding errors... */ if (coded_frame_size == 557) @@ -325,7 +325,7 @@ static int rm_write_audio(AVFormatContext *s, const uint8_t *buf, int size, int write_packet_header(s, stream, size, !!(flags & PKT_FLAG_KEY)); - /* for AC3, the words seems to be reversed */ + /* for AC-3, the words seem to be reversed */ for(i=0;i<size;i+=2) { buf1[i] = buf[i+1]; buf1[i+1] = buf[i]; |