summaryrefslogtreecommitdiff
path: root/libavformat/matroskadec.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2009-02-02 21:32:11 +0000
committerAurelien Jacobs <aurel@gnuage.org>2009-02-02 21:32:11 +0000
commit69b6d53bebbdb25f424b87123eef60de24693cf2 (patch)
treed7ee27c2bfa17ab65ea7ba9e7a66f1076e21a31a /libavformat/matroskadec.c
parent679f5c2542081a90810b76d2d072222be91056c3 (diff)
cosmetics: whitespace
Originally committed as revision 16951 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r--libavformat/matroskadec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index d52d2fa5a1..3a2209f318 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -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)