Commit 4aade44c authored by Bobby Bingham's avatar Bobby Bingham Committed by Carl Eugen Hoyos

targaenc: Use named TGA_RLE constant instead of magic number

parent 8e590625
...@@ -144,7 +144,7 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -144,7 +144,7 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
/* if that worked well, mark the picture as RLE compressed */ /* if that worked well, mark the picture as RLE compressed */
if(datasize >= 0) if(datasize >= 0)
pkt->data[2] |= 8; pkt->data[2] |= TGA_RLE;
/* if RLE didn't make it smaller, go back to no compression */ /* if RLE didn't make it smaller, go back to no compression */
else datasize = targa_encode_normal(out, p, bpp, avctx->width, avctx->height); else datasize = targa_encode_normal(out, p, bpp, avctx->width, avctx->height);
......
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