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.

200 lines
6.3KB

  1. /*
  2. * Raw Video Decoder
  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
  23. * Raw Video Decoder
  24. */
  25. #include "avcodec.h"
  26. #include "raw.h"
  27. #include "libavutil/intreadwrite.h"
  28. typedef struct RawVideoContext {
  29. unsigned char * buffer; /* block of memory for holding one frame */
  30. int length; /* number of bytes in buffer */
  31. int flip;
  32. AVFrame pic; ///< AVCodecContext.coded_frame
  33. } RawVideoContext;
  34. static const PixelFormatTag pix_fmt_bps_avi[] = {
  35. { PIX_FMT_PAL8, 4 },
  36. { PIX_FMT_PAL8, 8 },
  37. { PIX_FMT_RGB444, 12 },
  38. { PIX_FMT_RGB555, 15 },
  39. { PIX_FMT_RGB555, 16 },
  40. { PIX_FMT_BGR24, 24 },
  41. { PIX_FMT_RGB32, 32 },
  42. { PIX_FMT_NONE, 0 },
  43. };
  44. static const PixelFormatTag pix_fmt_bps_mov[] = {
  45. { PIX_FMT_MONOWHITE, 1 },
  46. { PIX_FMT_PAL8, 2 },
  47. { PIX_FMT_PAL8, 4 },
  48. { PIX_FMT_PAL8, 8 },
  49. // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov
  50. // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
  51. { PIX_FMT_RGB555BE, 16 },
  52. { PIX_FMT_RGB24, 24 },
  53. { PIX_FMT_ARGB, 32 },
  54. { PIX_FMT_NONE, 0 },
  55. };
  56. static enum PixelFormat find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc)
  57. {
  58. while (tags->pix_fmt >= 0) {
  59. if (tags->fourcc == fourcc)
  60. return tags->pix_fmt;
  61. tags++;
  62. }
  63. return PIX_FMT_YUV420P;
  64. }
  65. static av_cold int raw_init_decoder(AVCodecContext *avctx)
  66. {
  67. RawVideoContext *context = avctx->priv_data;
  68. if (avctx->codec_tag == MKTAG('r','a','w',' '))
  69. avctx->pix_fmt = find_pix_fmt(pix_fmt_bps_mov, avctx->bits_per_coded_sample);
  70. else if (avctx->codec_tag)
  71. avctx->pix_fmt = find_pix_fmt(ff_raw_pix_fmt_tags, avctx->codec_tag);
  72. else if (avctx->pix_fmt == PIX_FMT_NONE && avctx->bits_per_coded_sample)
  73. avctx->pix_fmt = find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample);
  74. context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
  75. context->buffer = av_malloc(context->length);
  76. context->pic.pict_type = FF_I_TYPE;
  77. context->pic.key_frame = 1;
  78. avctx->coded_frame= &context->pic;
  79. if (!context->buffer)
  80. return -1;
  81. if((avctx->extradata_size >= 9 && !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9)) ||
  82. avctx->codec_tag == MKTAG( 3 , 0 , 0 , 0 ))
  83. context->flip=1;
  84. return 0;
  85. }
  86. static void flip(AVCodecContext *avctx, AVPicture * picture){
  87. picture->data[0] += picture->linesize[0] * (avctx->height-1);
  88. picture->linesize[0] *= -1;
  89. }
  90. static int raw_decode(AVCodecContext *avctx,
  91. void *data, int *data_size,
  92. AVPacket *avpkt)
  93. {
  94. const uint8_t *buf = avpkt->data;
  95. int buf_size = avpkt->size;
  96. RawVideoContext *context = avctx->priv_data;
  97. AVFrame * frame = (AVFrame *) data;
  98. AVPicture * picture = (AVPicture *) data;
  99. frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
  100. frame->top_field_first = avctx->coded_frame->top_field_first;
  101. //2bpp and 4bpp raw in avi and mov (yes this is ugly ...)
  102. if((avctx->bits_per_coded_sample == 4 || avctx->bits_per_coded_sample == 2) &&
  103. avctx->pix_fmt==PIX_FMT_PAL8 &&
  104. (!avctx->codec_tag || avctx->codec_tag == MKTAG('r','a','w',' '))){
  105. int i;
  106. uint8_t *dst = context->buffer + 256*4;
  107. buf_size = context->length - 256*4;
  108. if (avctx->bits_per_coded_sample == 4){
  109. for(i=0; 2*i+1 < buf_size; i++){
  110. dst[2*i+0]= buf[i]>>4;
  111. dst[2*i+1]= buf[i]&15;
  112. }
  113. } else
  114. for(i=0; 4*i+3 < buf_size; i++){
  115. dst[4*i+0]= buf[i]>>6;
  116. dst[4*i+1]= buf[i]>>4&3;
  117. dst[4*i+2]= buf[i]>>2&3;
  118. dst[4*i+3]= buf[i] &3;
  119. }
  120. buf= dst;
  121. }
  122. if(avctx->codec_tag == MKTAG('A', 'V', '1', 'x') ||
  123. avctx->codec_tag == MKTAG('A', 'V', 'u', 'p'))
  124. buf += buf_size - context->length;
  125. if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
  126. return -1;
  127. avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
  128. if(avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length){
  129. frame->data[1]= context->buffer;
  130. }
  131. if (avctx->palctrl && avctx->palctrl->palette_changed) {
  132. memcpy(frame->data[1], avctx->palctrl->palette, AVPALETTE_SIZE);
  133. avctx->palctrl->palette_changed = 0;
  134. }
  135. if(avctx->pix_fmt==PIX_FMT_BGR24 && ((frame->linesize[0]+3)&~3)*avctx->height <= buf_size)
  136. frame->linesize[0] = (frame->linesize[0]+3)&~3;
  137. if(context->flip)
  138. flip(avctx, picture);
  139. if ( avctx->codec_tag == MKTAG('Y', 'V', '1', '2')
  140. || avctx->codec_tag == MKTAG('Y', 'V', 'U', '9'))
  141. FFSWAP(uint8_t *, picture->data[1], picture->data[2]);
  142. if(avctx->codec_tag == AV_RL32("yuv2") &&
  143. avctx->pix_fmt == PIX_FMT_YUYV422) {
  144. int x, y;
  145. uint8_t *line = picture->data[0];
  146. for(y = 0; y < avctx->height; y++) {
  147. for(x = 0; x < avctx->width; x++)
  148. line[2*x + 1] ^= 0x80;
  149. line += picture->linesize[0];
  150. }
  151. }
  152. *data_size = sizeof(AVPicture);
  153. return buf_size;
  154. }
  155. static av_cold int raw_close_decoder(AVCodecContext *avctx)
  156. {
  157. RawVideoContext *context = avctx->priv_data;
  158. av_freep(&context->buffer);
  159. return 0;
  160. }
  161. AVCodec rawvideo_decoder = {
  162. "rawvideo",
  163. AVMEDIA_TYPE_VIDEO,
  164. CODEC_ID_RAWVIDEO,
  165. sizeof(RawVideoContext),
  166. raw_init_decoder,
  167. NULL,
  168. raw_close_decoder,
  169. raw_decode,
  170. .long_name = NULL_IF_CONFIG_SMALL("raw video"),
  171. };