Commit 2e814a8f authored by aurel's avatar aurel

cosmetics: whitespace

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16951 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent aa49ff3e
......@@ -871,8 +871,7 @@ static int matroska_decode_buffer(uint8_t** buf, int* buf_size,
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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment