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.

191 lines
5.8KB

  1. /*
  2. * DPX (.dpx) image encoder
  3. * Copyright (c) 2011 Peter Ross <pross@xvid.org>
  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 "libavutil/common.h"
  22. #include "libavutil/intreadwrite.h"
  23. #include "libavutil/imgutils.h"
  24. #include "avcodec.h"
  25. #include "internal.h"
  26. typedef struct DPXContext {
  27. AVFrame picture;
  28. int big_endian;
  29. int bits_per_component;
  30. int descriptor;
  31. } DPXContext;
  32. static av_cold int encode_init(AVCodecContext *avctx)
  33. {
  34. DPXContext *s = avctx->priv_data;
  35. avctx->coded_frame = &s->picture;
  36. avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
  37. avctx->coded_frame->key_frame = 1;
  38. s->big_endian = 1;
  39. s->bits_per_component = 8;
  40. s->descriptor = 50; /* RGB */
  41. switch (avctx->pix_fmt) {
  42. case AV_PIX_FMT_RGB24:
  43. break;
  44. case AV_PIX_FMT_RGBA:
  45. s->descriptor = 51; /* RGBA */
  46. break;
  47. case AV_PIX_FMT_RGB48LE:
  48. s->big_endian = 0;
  49. case AV_PIX_FMT_RGB48BE:
  50. s->bits_per_component = avctx->bits_per_raw_sample ? avctx->bits_per_raw_sample : 16;
  51. break;
  52. default:
  53. av_log(avctx, AV_LOG_INFO, "unsupported pixel format\n");
  54. return -1;
  55. }
  56. return 0;
  57. }
  58. #define write16(p, value) \
  59. do { \
  60. if (s->big_endian) AV_WB16(p, value); \
  61. else AV_WL16(p, value); \
  62. } while(0)
  63. #define write32(p, value) \
  64. do { \
  65. if (s->big_endian) AV_WB32(p, value); \
  66. else AV_WL32(p, value); \
  67. } while(0)
  68. static void encode_rgb48_10bit(AVCodecContext *avctx, const AVPicture *pic,
  69. uint8_t *dst)
  70. {
  71. DPXContext *s = avctx->priv_data;
  72. const uint8_t *src = pic->data[0];
  73. int x, y;
  74. for (y = 0; y < avctx->height; y++) {
  75. for (x = 0; x < avctx->width; x++) {
  76. int value;
  77. if ((avctx->pix_fmt & 1)) {
  78. value = ((AV_RB16(src + 6*x + 4) & 0xFFC0) >> 4)
  79. | ((AV_RB16(src + 6*x + 2) & 0xFFC0) << 6)
  80. | ((AV_RB16(src + 6*x + 0) & 0xFFC0) << 16);
  81. } else {
  82. value = ((AV_RL16(src + 6*x + 4) & 0xFFC0) >> 4)
  83. | ((AV_RL16(src + 6*x + 2) & 0xFFC0) << 6)
  84. | ((AV_RL16(src + 6*x + 0) & 0xFFC0) << 16);
  85. }
  86. write32(dst, value);
  87. dst += 4;
  88. }
  89. src += pic->linesize[0];
  90. }
  91. }
  92. static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  93. const AVFrame *frame, int *got_packet)
  94. {
  95. DPXContext *s = avctx->priv_data;
  96. int size, ret;
  97. uint8_t *buf;
  98. #define HEADER_SIZE 1664 /* DPX Generic header */
  99. if (s->bits_per_component == 10)
  100. size = avctx->height * avctx->width * 4;
  101. else
  102. size = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
  103. if ((ret = ff_alloc_packet(pkt, size + HEADER_SIZE)) < 0) {
  104. av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
  105. return ret;
  106. }
  107. buf = pkt->data;
  108. memset(buf, 0, HEADER_SIZE);
  109. /* File information header */
  110. write32(buf, MKBETAG('S','D','P','X'));
  111. write32(buf + 4, HEADER_SIZE);
  112. memcpy (buf + 8, "V1.0", 4);
  113. write32(buf + 20, 1); /* new image */
  114. write32(buf + 24, HEADER_SIZE);
  115. if (!(avctx->flags & CODEC_FLAG_BITEXACT))
  116. memcpy (buf + 160, LIBAVCODEC_IDENT, FFMIN(sizeof(LIBAVCODEC_IDENT), 100));
  117. write32(buf + 660, 0xFFFFFFFF); /* unencrypted */
  118. /* Image information header */
  119. write16(buf + 768, 0); /* orientation; left to right, top to bottom */
  120. write16(buf + 770, 1); /* number of elements */
  121. write32(buf + 772, avctx->width);
  122. write32(buf + 776, avctx->height);
  123. buf[800] = s->descriptor;
  124. buf[801] = 2; /* linear transfer */
  125. buf[802] = 2; /* linear colorimetric */
  126. buf[803] = s->bits_per_component;
  127. write16(buf + 804, s->bits_per_component == 10 ? 1 : 0); /* packing method */
  128. /* Image source information header */
  129. write32(buf + 1628, avctx->sample_aspect_ratio.num);
  130. write32(buf + 1632, avctx->sample_aspect_ratio.den);
  131. switch (s->bits_per_component) {
  132. case 8:
  133. case 16:
  134. size = avpicture_layout((const AVPicture*)frame, avctx->pix_fmt,
  135. avctx->width, avctx->height,
  136. buf + HEADER_SIZE, pkt->size - HEADER_SIZE);
  137. if (size < 0)
  138. return size;
  139. break;
  140. case 10:
  141. encode_rgb48_10bit(avctx, (const AVPicture*)frame, buf + HEADER_SIZE);
  142. break;
  143. default:
  144. av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n", s->bits_per_component);
  145. return -1;
  146. }
  147. size += HEADER_SIZE;
  148. write32(buf + 16, size); /* file size */
  149. pkt->flags |= AV_PKT_FLAG_KEY;
  150. *got_packet = 1;
  151. return 0;
  152. }
  153. AVCodec ff_dpx_encoder = {
  154. .name = "dpx",
  155. .long_name = NULL_IF_CONFIG_SMALL("DPX image"),
  156. .type = AVMEDIA_TYPE_VIDEO,
  157. .id = AV_CODEC_ID_DPX,
  158. .priv_data_size = sizeof(DPXContext),
  159. .init = encode_init,
  160. .encode2 = encode_frame,
  161. .pix_fmts = (const enum AVPixelFormat[]){
  162. AV_PIX_FMT_RGB24,
  163. AV_PIX_FMT_RGBA,
  164. AV_PIX_FMT_RGB48LE,
  165. AV_PIX_FMT_RGB48BE,
  166. AV_PIX_FMT_NONE},
  167. };