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.

211 lines
6.2KB

  1. /*
  2. * Raw Video Codec
  3. * Copyright (c) 2001 Fabrice Bellard.
  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. /**
  22. * @file raw.c
  23. * Raw Video Codec
  24. */
  25. #include "avcodec.h"
  26. typedef struct RawVideoContext {
  27. unsigned char * buffer; /* block of memory for holding one frame */
  28. int length; /* number of bytes in buffer */
  29. AVFrame pic; ///< AVCodecContext.coded_frame
  30. } RawVideoContext;
  31. typedef struct PixelFormatTag {
  32. int pix_fmt;
  33. unsigned int fourcc;
  34. } PixelFormatTag;
  35. static const PixelFormatTag pixelFormatTags[] = {
  36. { PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */
  37. { PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') },
  38. { PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') },
  39. { PIX_FMT_YUV410P, MKTAG('Y', 'U', 'V', '9') },
  40. { PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') },
  41. { PIX_FMT_YUV422P, MKTAG('Y', '4', '2', 'B') },
  42. { PIX_FMT_GRAY8, MKTAG('Y', '8', '0', '0') },
  43. { PIX_FMT_GRAY8, MKTAG(' ', ' ', 'Y', '8') },
  44. { PIX_FMT_YUYV422, MKTAG('Y', 'U', 'Y', '2') }, /* Packed formats */
  45. { PIX_FMT_YUYV422, MKTAG('Y', '4', '2', '2') },
  46. { PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') },
  47. { PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') },
  48. { PIX_FMT_RGB555, MKTAG('R', 'G', 'B', 15) },
  49. { PIX_FMT_BGR555, MKTAG('B', 'G', 'R', 15) },
  50. { PIX_FMT_RGB565, MKTAG('R', 'G', 'B', 16) },
  51. { PIX_FMT_BGR565, MKTAG('B', 'G', 'R', 16) },
  52. /* quicktime */
  53. { PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },
  54. { -1, 0 },
  55. };
  56. static int findPixelFormat(unsigned int fourcc)
  57. {
  58. const PixelFormatTag * tags = pixelFormatTags;
  59. while (tags->pix_fmt >= 0) {
  60. if (tags->fourcc == fourcc)
  61. return tags->pix_fmt;
  62. tags++;
  63. }
  64. return PIX_FMT_YUV420P;
  65. }
  66. unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt)
  67. {
  68. const PixelFormatTag * tags = pixelFormatTags;
  69. while (tags->pix_fmt >= 0) {
  70. if (tags->pix_fmt == fmt)
  71. return tags->fourcc;
  72. tags++;
  73. }
  74. return 0;
  75. }
  76. /* RAW Decoder Implementation */
  77. static int raw_init_decoder(AVCodecContext *avctx)
  78. {
  79. RawVideoContext *context = avctx->priv_data;
  80. if (avctx->codec_tag)
  81. avctx->pix_fmt = findPixelFormat(avctx->codec_tag);
  82. else if (avctx->bits_per_sample){
  83. switch(avctx->bits_per_sample){
  84. case 8: avctx->pix_fmt= PIX_FMT_PAL8 ; break;
  85. case 15: avctx->pix_fmt= PIX_FMT_RGB555; break;
  86. case 16: avctx->pix_fmt= PIX_FMT_RGB555; break;
  87. case 24: avctx->pix_fmt= PIX_FMT_BGR24 ; break;
  88. case 32: avctx->pix_fmt= PIX_FMT_RGB32; break;
  89. }
  90. }
  91. context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
  92. context->buffer = av_malloc(context->length);
  93. context->pic.pict_type = FF_I_TYPE;
  94. context->pic.key_frame = 1;
  95. avctx->coded_frame= &context->pic;
  96. if (!context->buffer)
  97. return -1;
  98. return 0;
  99. }
  100. static void flip(AVCodecContext *avctx, AVPicture * picture){
  101. if(!avctx->codec_tag && avctx->bits_per_sample && picture->linesize[2]==0){
  102. picture->data[0] += picture->linesize[0] * (avctx->height-1);
  103. picture->linesize[0] *= -1;
  104. }
  105. }
  106. static int raw_decode(AVCodecContext *avctx,
  107. void *data, int *data_size,
  108. uint8_t *buf, int buf_size)
  109. {
  110. RawVideoContext *context = avctx->priv_data;
  111. AVFrame * frame = (AVFrame *) data;
  112. AVPicture * picture = (AVPicture *) data;
  113. frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
  114. frame->top_field_first = avctx->coded_frame->top_field_first;
  115. if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
  116. return -1;
  117. avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
  118. if(avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length){
  119. frame->data[1]= context->buffer;
  120. }
  121. if (avctx->palctrl && avctx->palctrl->palette_changed) {
  122. memcpy(frame->data[1], avctx->palctrl->palette, AVPALETTE_SIZE);
  123. avctx->palctrl->palette_changed = 0;
  124. }
  125. flip(avctx, picture);
  126. if (avctx->codec_tag == MKTAG('Y', 'V', '1', '2'))
  127. {
  128. // swap fields
  129. unsigned char *tmp = picture->data[1];
  130. picture->data[1] = picture->data[2];
  131. picture->data[2] = tmp;
  132. }
  133. *data_size = sizeof(AVPicture);
  134. return buf_size;
  135. }
  136. static int raw_close_decoder(AVCodecContext *avctx)
  137. {
  138. RawVideoContext *context = avctx->priv_data;
  139. av_freep(&context->buffer);
  140. return 0;
  141. }
  142. /* RAW Encoder Implementation */
  143. #ifdef CONFIG_RAWVIDEO_ENCODER
  144. static int raw_init_encoder(AVCodecContext *avctx)
  145. {
  146. avctx->coded_frame = (AVFrame *)avctx->priv_data;
  147. avctx->coded_frame->pict_type = FF_I_TYPE;
  148. avctx->coded_frame->key_frame = 1;
  149. if(!avctx->codec_tag)
  150. avctx->codec_tag = avcodec_pix_fmt_to_codec_tag(avctx->pix_fmt);
  151. return 0;
  152. }
  153. static int raw_encode(AVCodecContext *avctx,
  154. unsigned char *frame, int buf_size, void *data)
  155. {
  156. return avpicture_layout((AVPicture *)data, avctx->pix_fmt, avctx->width,
  157. avctx->height, frame, buf_size);
  158. }
  159. AVCodec rawvideo_encoder = {
  160. "rawvideo",
  161. CODEC_TYPE_VIDEO,
  162. CODEC_ID_RAWVIDEO,
  163. sizeof(AVFrame),
  164. raw_init_encoder,
  165. raw_encode,
  166. };
  167. #endif // CONFIG_RAWVIDEO_ENCODER
  168. AVCodec rawvideo_decoder = {
  169. "rawvideo",
  170. CODEC_TYPE_VIDEO,
  171. CODEC_ID_RAWVIDEO,
  172. sizeof(RawVideoContext),
  173. raw_init_decoder,
  174. NULL,
  175. raw_close_decoder,
  176. raw_decode,
  177. };