diff options
author | Bobby Bingham <uhmmmm@gmail.com> | 2012-09-18 10:44:32 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-09-18 10:44:32 +0200 |
commit | 8e59062597d2d0c5bfc11a0f455a8568e3d2dcbe (patch) | |
tree | 6c4729a8a5701c9aaba20e1ffa88ff8ee00c4c0f | |
parent | 6e03da7f35427715f287af32f181e6a01276a137 (diff) | |
download | ffmpeg-8e59062597d2d0c5bfc11a0f455a8568e3d2dcbe.tar.gz |
Fix typo in targa encoder comment
-rw-r--r-- | libavcodec/targaenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/targaenc.c b/libavcodec/targaenc.c index 555b26e86e..a7dce3a9e8 100644 --- a/libavcodec/targaenc.c +++ b/libavcodec/targaenc.c @@ -119,7 +119,7 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt, pkt->data[16] = 8; /* bpp */ break; 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 = pkt->data[16] = 16; /* bpp */ break; |