[FFmpeg-cvslog] r26084 - trunk/libavcodec/ac3enc.c
jbr
subversion
Thu Dec 23 19:01:30 CET 2010
Author: jbr
Date: Thu Dec 23 19:01:29 2010
New Revision: 26084
Log:
cosmetics: line wrap and vertical alignment
Modified:
trunk/libavcodec/ac3enc.c
Modified: trunk/libavcodec/ac3enc.c
==============================================================================
--- trunk/libavcodec/ac3enc.c Thu Dec 23 19:01:26 2010 (r26083)
+++ trunk/libavcodec/ac3enc.c Thu Dec 23 19:01:29 2010 (r26084)
@@ -1587,8 +1587,7 @@ static void output_frame_end(AC3EncodeCo
/* 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);
More information about the ffmpeg-cvslog
mailing list