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.

172 lines
5.3KB

  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 "libavutil/intreadwrite.h"
  22. #include "libavutil/pixdesc.h"
  23. #include "avcodec.h"
  24. #include "rle.h"
  25. #include "targa.h"
  26. typedef struct TargaContext {
  27. AVFrame picture;
  28. } TargaContext;
  29. /**
  30. * RLE compress the image, with maximum size of out_size
  31. * @param outbuf Output buffer
  32. * @param out_size Maximum output size
  33. * @param pic Image to compress
  34. * @param bpp Bytes per pixel
  35. * @param w Image width
  36. * @param h Image height
  37. * @return Size of output in bytes, or -1 if larger than out_size
  38. */
  39. static int targa_encode_rle(uint8_t *outbuf, int out_size, AVFrame *pic,
  40. int bpp, int w, int h)
  41. {
  42. int y,ret;
  43. uint8_t *out;
  44. out = outbuf;
  45. for(y = 0; y < h; y ++) {
  46. ret = ff_rle_encode(out, out_size, pic->data[0] + pic->linesize[0] * y, bpp, w, 0x7f, 0, -1, 0);
  47. if(ret == -1){
  48. return -1;
  49. }
  50. out+= ret;
  51. out_size -= ret;
  52. }
  53. return out - outbuf;
  54. }
  55. static int targa_encode_normal(uint8_t *outbuf, AVFrame *pic, int bpp, int w, int h)
  56. {
  57. int i, n = bpp * w;
  58. uint8_t *out = outbuf;
  59. uint8_t *ptr = pic->data[0];
  60. for(i=0; i < h; i++) {
  61. memcpy(out, ptr, n);
  62. out += n;
  63. ptr += pic->linesize[0];
  64. }
  65. return out - outbuf;
  66. }
  67. static int targa_encode_frame(AVCodecContext *avctx,
  68. unsigned char *outbuf,
  69. int buf_size, void *data){
  70. AVFrame *p = data;
  71. int bpp, picsize, datasize = -1;
  72. uint8_t *out;
  73. if(avctx->width > 0xffff || avctx->height > 0xffff) {
  74. av_log(avctx, AV_LOG_ERROR, "image dimensions too large\n");
  75. return AVERROR(EINVAL);
  76. }
  77. picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
  78. if(buf_size < picsize + 45) {
  79. av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n");
  80. return AVERROR(EINVAL);
  81. }
  82. p->pict_type= AV_PICTURE_TYPE_I;
  83. p->key_frame= 1;
  84. /* zero out the header and only set applicable fields */
  85. memset(outbuf, 0, 12);
  86. AV_WL16(outbuf+12, avctx->width);
  87. AV_WL16(outbuf+14, avctx->height);
  88. /* image descriptor byte: origin is always top-left, bits 0-3 specify alpha */
  89. outbuf[17] = 0x20 | (avctx->pix_fmt == PIX_FMT_BGRA ? 8 : 0);
  90. switch(avctx->pix_fmt) {
  91. case PIX_FMT_GRAY8:
  92. outbuf[2] = TGA_BW; /* uncompressed grayscale image */
  93. outbuf[16] = 8; /* bpp */
  94. break;
  95. case PIX_FMT_RGB555LE:
  96. outbuf[2] = TGA_RGB; /* uncompresses true-color image */
  97. outbuf[16] = 16; /* bpp */
  98. break;
  99. case PIX_FMT_BGR24:
  100. outbuf[2] = TGA_RGB; /* uncompressed true-color image */
  101. outbuf[16] = 24; /* bpp */
  102. break;
  103. case PIX_FMT_BGRA:
  104. outbuf[2] = TGA_RGB; /* uncompressed true-color image */
  105. outbuf[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 = outbuf[16] >> 3;
  113. out = outbuf + 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. outbuf[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. return out + 26 - outbuf;
  128. }
  129. static av_cold int targa_encode_init(AVCodecContext *avctx)
  130. {
  131. TargaContext *s = avctx->priv_data;
  132. avcodec_get_frame_defaults(&s->picture);
  133. s->picture.key_frame= 1;
  134. avctx->coded_frame= &s->picture;
  135. return 0;
  136. }
  137. AVCodec ff_targa_encoder = {
  138. .name = "targa",
  139. .type = AVMEDIA_TYPE_VIDEO,
  140. .id = CODEC_ID_TARGA,
  141. .priv_data_size = sizeof(TargaContext),
  142. .init = targa_encode_init,
  143. .encode = targa_encode_frame,
  144. .pix_fmts= (const enum PixelFormat[]){PIX_FMT_BGR24, PIX_FMT_BGRA, PIX_FMT_RGB555LE, PIX_FMT_GRAY8, PIX_FMT_NONE},
  145. .long_name= NULL_IF_CONFIG_SMALL("Truevision Targa image"),
  146. };