Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2010-12-23 21:01:29 +0300
committerJustin Ruggles <justin.ruggles@gmail.com>2010-12-23 21:01:29 +0300
commitb51c740eab9425a63d7130a064e4b8a11d5f3021 (patch)
tree2a1bbfeaa4d3a2dd4364d932cc39db064d9da034 /libavcodec/ac3enc.c
parente96dc767e41afcef429149ec87c078b2f8b8a289 (diff)
cosmetics: line wrap and vertical alignment
Originally committed as revision 26084 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3enc.c')
-rw-r--r--libavcodec/ac3enc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index 390844711e..94fafbc314 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -1587,8 +1587,7 @@ static void output_frame_end(AC3EncodeContext *s)
/* compute crc1 */
/* this is not so easy because it is at the beginning of the data... */
- crc1 = av_bswap16(av_crc(crc_ctx, 0,
- frame + 4, frame_size_58 - 4));
+ crc1 = av_bswap16(av_crc(crc_ctx, 0, frame + 4, frame_size_58 - 4));
crc_inv = s->crc_inv[s->frame_size > s->frame_size_min];
crc1 = mul_poly(crc_inv, crc1, CRC16_POLY);
AV_WB16(frame + 2, crc1);