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.

180 lines
5.5KB

  1. /*
  2. * Targa (.tga) image encoder
  3. * Copyright (c) 2007 Bobby Bingham
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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;
  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_packet(pkt, picsize + 45)) < 0) {
  81. av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n");
  82. return ret;
  83. }
  84. /* zero out the header and only set applicable fields */
  85. memset(pkt->data, 0, 12);
  86. AV_WL16(pkt->data+12, avctx->width);
  87. AV_WL16(pkt->data+14, avctx->height);
  88. /* image descriptor byte: origin is always top-left, bits 0-3 specify alpha */
  89. pkt->data[17] = 0x20 | (avctx->pix_fmt == AV_PIX_FMT_BGRA ? 8 : 0);
  90. switch(avctx->pix_fmt) {
  91. case AV_PIX_FMT_GRAY8:
  92. pkt->data[2] = TGA_BW; /* uncompressed grayscale image */
  93. pkt->data[16] = 8; /* bpp */
  94. break;
  95. case AV_PIX_FMT_RGB555LE:
  96. pkt->data[2] = TGA_RGB; /* uncompresses true-color image */
  97. pkt->data[16] = 16; /* bpp */
  98. break;
  99. case AV_PIX_FMT_BGR24:
  100. pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
  101. pkt->data[16] = 24; /* bpp */
  102. break;
  103. case AV_PIX_FMT_BGRA:
  104. pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
  105. pkt->data[16] = 32; /* bpp */
  106. break;
  107. default:
  108. av_log(avctx, AV_LOG_ERROR, "Pixel format '%s' not supported.\n",
  109. av_get_pix_fmt_name(avctx->pix_fmt));
  110. return AVERROR(EINVAL);
  111. }
  112. bpp = pkt->data[16] >> 3;
  113. out = pkt->data + 18; /* skip past the header we just output */
  114. /* try RLE compression */
  115. if (avctx->coder_type != FF_CODER_TYPE_RAW)
  116. datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
  117. /* if that worked well, mark the picture as RLE compressed */
  118. if(datasize >= 0)
  119. pkt->data[2] |= 8;
  120. /* if RLE didn't make it smaller, go back to no compression */
  121. else datasize = targa_encode_normal(out, p, bpp, avctx->width, avctx->height);
  122. out += datasize;
  123. /* The standard recommends including this section, even if we don't use
  124. * any of the features it affords. TODO: take advantage of the pixel
  125. * aspect ratio and encoder ID fields available? */
  126. memcpy(out, "\0\0\0\0\0\0\0\0TRUEVISION-XFILE.", 26);
  127. pkt->size = out + 26 - pkt->data;
  128. pkt->flags |= AV_PKT_FLAG_KEY;
  129. *got_packet = 1;
  130. return 0;
  131. }
  132. static av_cold int targa_encode_init(AVCodecContext *avctx)
  133. {
  134. TargaContext *s = avctx->priv_data;
  135. avcodec_get_frame_defaults(&s->picture);
  136. s->picture.key_frame= 1;
  137. s->picture.pict_type = AV_PICTURE_TYPE_I;
  138. avctx->coded_frame= &s->picture;
  139. return 0;
  140. }
  141. AVCodec ff_targa_encoder = {
  142. .name = "targa",
  143. .type = AVMEDIA_TYPE_VIDEO,
  144. .id = AV_CODEC_ID_TARGA,
  145. .priv_data_size = sizeof(TargaContext),
  146. .init = targa_encode_init,
  147. .encode2 = targa_encode_frame,
  148. .pix_fmts = (const enum AVPixelFormat[]){
  149. AV_PIX_FMT_BGR24, AV_PIX_FMT_BGRA, AV_PIX_FMT_RGB555LE, AV_PIX_FMT_GRAY8,
  150. AV_PIX_FMT_NONE
  151. },
  152. .long_name= NULL_IF_CONFIG_SMALL("Truevision Targa image"),
  153. };