You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

202 lines
6.6KB

  1. /*
  2. * Targa (.tga) image encoder
  3. * Copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <string.h>
  22. #include "libavutil/internal.h"
  23. #include "libavutil/intreadwrite.h"
  24. #include "libavutil/pixdesc.h"
  25. #include "avcodec.h"
  26. #include "internal.h"
  27. #include "rle.h"
  28. #include "targa.h"
  29. typedef struct TargaContext {
  30. AVFrame picture;
  31. } TargaContext;
  32. /**
  33. * RLE compress the image, with maximum size of out_size
  34. * @param outbuf Output buffer
  35. * @param out_size Maximum output size
  36. * @param pic Image to compress
  37. * @param bpp Bytes per pixel
  38. * @param w Image width
  39. * @param h Image height
  40. * @return Size of output in bytes, or -1 if larger than out_size
  41. */
  42. static int targa_encode_rle(uint8_t *outbuf, int out_size, const AVFrame *pic,
  43. int bpp, int w, int h)
  44. {
  45. int y,ret;
  46. uint8_t *out;
  47. out = outbuf;
  48. for(y = 0; y < h; y ++) {
  49. ret = ff_rle_encode(out, out_size, pic->data[0] + pic->linesize[0] * y, bpp, w, 0x7f, 0, -1, 0);
  50. if(ret == -1){
  51. return -1;
  52. }
  53. out+= ret;
  54. out_size -= ret;
  55. }
  56. return out - outbuf;
  57. }
  58. static int targa_encode_normal(uint8_t *outbuf, const AVFrame *pic, int bpp, int w, int h)
  59. {
  60. int i, n = bpp * w;
  61. uint8_t *out = outbuf;
  62. uint8_t *ptr = pic->data[0];
  63. for(i=0; i < h; i++) {
  64. memcpy(out, ptr, n);
  65. out += n;
  66. ptr += pic->linesize[0];
  67. }
  68. return out - outbuf;
  69. }
  70. static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  71. const AVFrame *p, int *got_packet)
  72. {
  73. int bpp, picsize, datasize = -1, ret, i;
  74. uint8_t *out;
  75. if(avctx->width > 0xffff || avctx->height > 0xffff) {
  76. av_log(avctx, AV_LOG_ERROR, "image dimensions too large\n");
  77. return AVERROR(EINVAL);
  78. }
  79. picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
  80. if ((ret = ff_alloc_packet2(avctx, pkt, picsize + 45)) < 0)
  81. return ret;
  82. /* zero out the header and only set applicable fields */
  83. memset(pkt->data, 0, 12);
  84. AV_WL16(pkt->data+12, avctx->width);
  85. AV_WL16(pkt->data+14, avctx->height);
  86. /* image descriptor byte: origin is always top-left, bits 0-3 specify alpha */
  87. pkt->data[17] = 0x20 | (avctx->pix_fmt == AV_PIX_FMT_BGRA ? 8 : 0);
  88. out = pkt->data + 18; /* skip past the header we write */
  89. avctx->bits_per_coded_sample = av_get_bits_per_pixel(av_pix_fmt_desc_get(avctx->pix_fmt));
  90. switch(avctx->pix_fmt) {
  91. case AV_PIX_FMT_PAL8: {
  92. int pal_bpp = 24; /* Only write 32bit palette if there is transparency information */
  93. for (i = 0; i < 256; i++)
  94. if (AV_RN32(p->data[1] + 4 * i) >> 24 != 0xFF) {
  95. pal_bpp = 32;
  96. break;
  97. }
  98. pkt->data[1] = 1; /* palette present */
  99. pkt->data[2] = TGA_PAL; /* uncompressed palettised image */
  100. pkt->data[6] = 1; /* palette contains 256 entries */
  101. pkt->data[7] = pal_bpp; /* palette contains pal_bpp bit entries */
  102. pkt->data[16] = 8; /* bpp */
  103. for (i = 0; i < 256; i++)
  104. if (pal_bpp == 32) {
  105. AV_WL32(pkt->data + 18 + 4 * i, *(uint32_t *)(p->data[1] + i * 4));
  106. } else {
  107. AV_WL24(pkt->data + 18 + 3 * i, *(uint32_t *)(p->data[1] + i * 4));
  108. }
  109. out += 32 * pal_bpp; /* skip past the palette we just output */
  110. break;
  111. }
  112. case AV_PIX_FMT_GRAY8:
  113. pkt->data[2] = TGA_BW; /* uncompressed grayscale image */
  114. avctx->bits_per_coded_sample = 0x28;
  115. pkt->data[16] = 8; /* bpp */
  116. break;
  117. case AV_PIX_FMT_RGB555LE:
  118. pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
  119. avctx->bits_per_coded_sample =
  120. pkt->data[16] = 16; /* bpp */
  121. break;
  122. case AV_PIX_FMT_BGR24:
  123. pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
  124. pkt->data[16] = 24; /* bpp */
  125. break;
  126. case AV_PIX_FMT_BGRA:
  127. pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
  128. pkt->data[16] = 32; /* bpp */
  129. break;
  130. default:
  131. av_log(avctx, AV_LOG_ERROR, "Pixel format '%s' not supported.\n",
  132. av_get_pix_fmt_name(avctx->pix_fmt));
  133. return AVERROR(EINVAL);
  134. }
  135. bpp = pkt->data[16] >> 3;
  136. /* try RLE compression */
  137. if (avctx->coder_type != FF_CODER_TYPE_RAW)
  138. datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
  139. /* if that worked well, mark the picture as RLE compressed */
  140. if(datasize >= 0)
  141. pkt->data[2] |= TGA_RLE;
  142. /* if RLE didn't make it smaller, go back to no compression */
  143. else datasize = targa_encode_normal(out, p, bpp, avctx->width, avctx->height);
  144. out += datasize;
  145. /* The standard recommends including this section, even if we don't use
  146. * any of the features it affords. TODO: take advantage of the pixel
  147. * aspect ratio and encoder ID fields available? */
  148. memcpy(out, "\0\0\0\0\0\0\0\0TRUEVISION-XFILE.", 26);
  149. pkt->size = out + 26 - pkt->data;
  150. pkt->flags |= AV_PKT_FLAG_KEY;
  151. *got_packet = 1;
  152. return 0;
  153. }
  154. static av_cold int targa_encode_init(AVCodecContext *avctx)
  155. {
  156. TargaContext *s = avctx->priv_data;
  157. avcodec_get_frame_defaults(&s->picture);
  158. s->picture.key_frame= 1;
  159. s->picture.pict_type = AV_PICTURE_TYPE_I;
  160. avctx->coded_frame= &s->picture;
  161. return 0;
  162. }
  163. AVCodec ff_targa_encoder = {
  164. .name = "targa",
  165. .type = AVMEDIA_TYPE_VIDEO,
  166. .id = AV_CODEC_ID_TARGA,
  167. .priv_data_size = sizeof(TargaContext),
  168. .init = targa_encode_init,
  169. .encode2 = targa_encode_frame,
  170. .pix_fmts = (const enum AVPixelFormat[]){
  171. AV_PIX_FMT_BGR24, AV_PIX_FMT_BGRA, AV_PIX_FMT_RGB555LE, AV_PIX_FMT_GRAY8, AV_PIX_FMT_PAL8,
  172. AV_PIX_FMT_NONE
  173. },
  174. .long_name= NULL_IF_CONFIG_SMALL("Truevision Targa image"),
  175. };