Commit 8e590625 authored by Bobby Bingham's avatar Bobby Bingham Committed by Carl Eugen Hoyos

Fix typo in targa encoder comment

parent 6e03da7f
...@@ -119,7 +119,7 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -119,7 +119,7 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
pkt->data[16] = 8; /* bpp */ pkt->data[16] = 8; /* bpp */
break; break;
case PIX_FMT_RGB555LE: case PIX_FMT_RGB555LE:
pkt->data[2] = TGA_RGB; /* uncompresses true-color image */ pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
avctx->bits_per_coded_sample = avctx->bits_per_coded_sample =
pkt->data[16] = 16; /* bpp */ pkt->data[16] = 16; /* bpp */
break; break;
......
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