1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

Prevent targaenc.c from outputting trash byte.

Originally committed as revision 13059 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla 2008-05-04 20:04:00 +00:00
parent 4405c986f9
commit d010a2d5be

View File

@ -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 */