Commit d010a2d5 authored by Ramiro Polla's avatar Ramiro Polla

Prevent targaenc.c from outputting trash byte.

Originally committed as revision 13059 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4405c986
......@@ -87,7 +87,7 @@ static int targa_encode_frame(AVCodecContext *avctx,
p->key_frame= 1;
/* zero out the header and only set applicable fields */
memset(outbuf, 0, 11);
memset(outbuf, 0, 12);
AV_WL16(outbuf+12, avctx->width);
AV_WL16(outbuf+14, avctx->height);
outbuf[17] = 0x20; /* origin is top-left. no alpha */
......
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