[FFmpeg-cvslog] r16951 - trunk/libavformat/matroskadec.c
aurel
subversion
Mon Feb 2 22:32:11 CET 2009
Author: aurel
Date: Mon Feb 2 22:32:11 2009
New Revision: 16951
Log:
cosmetics: whitespace
Modified:
trunk/libavformat/matroskadec.c
Modified: trunk/libavformat/matroskadec.c
==============================================================================
--- trunk/libavformat/matroskadec.c Mon Feb 2 21:42:06 2009 (r16950)
+++ trunk/libavformat/matroskadec.c Mon Feb 2 22:32:11 2009 (r16951)
@@ -871,8 +871,7 @@ static int matroska_decode_buffer(uint8_
case MATROSKA_TRACK_ENCODING_COMP_LZO:
do {
olen = pkt_size *= 3;
- pkt_data = av_realloc(pkt_data,
- pkt_size+AV_LZO_OUTPUT_PADDING);
+ pkt_data = av_realloc(pkt_data, pkt_size+AV_LZO_OUTPUT_PADDING);
result = av_lzo1x_decode(pkt_data, &olen, data, &isize);
} while (result==AV_LZO_OUTPUT_FULL && pkt_size<10000000);
if (result)
More information about the ffmpeg-cvslog
mailing list