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.

167 lines
5.1KB

  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 rawdec.c
  23. * Raw Video Decoder
  24. */
  25. #include "avcodec.h"
  26. #include "raw.h"
  27. typedef struct RawVideoContext {
  28. unsigned char * buffer; /* block of memory for holding one frame */
  29. int length; /* number of bytes in buffer */
  30. AVFrame pic; ///< AVCodecContext.coded_frame
  31. } RawVideoContext;
  32. static const PixelFormatTag pixelFormatBpsAVI[] = {
  33. { PIX_FMT_PAL8, 4 },
  34. { PIX_FMT_PAL8, 8 },
  35. { PIX_FMT_RGB555, 15 },
  36. { PIX_FMT_RGB555, 16 },
  37. { PIX_FMT_BGR24, 24 },
  38. { PIX_FMT_RGB32, 32 },
  39. { PIX_FMT_NONE, 0 },
  40. };
  41. static const PixelFormatTag pixelFormatBpsMOV[] = {
  42. /* FIXME fix swscaler to support those */
  43. /* http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html */
  44. { PIX_FMT_PAL8, 4 },
  45. { PIX_FMT_PAL8, 8 },
  46. { PIX_FMT_BGR555, 16 },
  47. { PIX_FMT_RGB24, 24 },
  48. { PIX_FMT_BGR32_1, 32 },
  49. { PIX_FMT_NONE, 0 },
  50. };
  51. static enum PixelFormat findPixelFormat(const PixelFormatTag *tags, unsigned int fourcc)
  52. {
  53. while (tags->pix_fmt >= 0) {
  54. if (tags->fourcc == fourcc)
  55. return tags->pix_fmt;
  56. tags++;
  57. }
  58. return PIX_FMT_YUV420P;
  59. }
  60. static av_cold int raw_init_decoder(AVCodecContext *avctx)
  61. {
  62. RawVideoContext *context = avctx->priv_data;
  63. if (avctx->codec_tag == MKTAG('r','a','w',' '))
  64. avctx->pix_fmt = findPixelFormat(pixelFormatBpsMOV, avctx->bits_per_coded_sample);
  65. else if (avctx->codec_tag)
  66. avctx->pix_fmt = findPixelFormat(ff_raw_pixelFormatTags, avctx->codec_tag);
  67. else if (avctx->bits_per_coded_sample)
  68. avctx->pix_fmt = findPixelFormat(pixelFormatBpsAVI, avctx->bits_per_coded_sample);
  69. context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
  70. context->buffer = av_malloc(context->length);
  71. context->pic.pict_type = FF_I_TYPE;
  72. context->pic.key_frame = 1;
  73. avctx->coded_frame= &context->pic;
  74. if (!context->buffer)
  75. return -1;
  76. return 0;
  77. }
  78. static void flip(AVCodecContext *avctx, AVPicture * picture){
  79. if(!avctx->codec_tag && avctx->bits_per_coded_sample && picture->linesize[2]==0){
  80. picture->data[0] += picture->linesize[0] * (avctx->height-1);
  81. picture->linesize[0] *= -1;
  82. }
  83. }
  84. static int raw_decode(AVCodecContext *avctx,
  85. void *data, int *data_size,
  86. const uint8_t *buf, int buf_size)
  87. {
  88. RawVideoContext *context = avctx->priv_data;
  89. AVFrame * frame = (AVFrame *) data;
  90. AVPicture * picture = (AVPicture *) data;
  91. frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
  92. frame->top_field_first = avctx->coded_frame->top_field_first;
  93. //4bpp raw in avi and mov (yes this is ugly ...)
  94. if(avctx->bits_per_coded_sample == 4 && avctx->pix_fmt==PIX_FMT_PAL8 &&
  95. (!avctx->codec_tag || avctx->codec_tag == MKTAG('r','a','w',' '))){
  96. int i;
  97. for(i=256*2; i+1 < context->length>>1; i++){
  98. context->buffer[2*i+0]= buf[i-256*2]>>4;
  99. context->buffer[2*i+1]= buf[i-256*2]&15;
  100. }
  101. buf= context->buffer + 256*4;
  102. buf_size= context->length - 256*4;
  103. }
  104. if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
  105. return -1;
  106. avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
  107. if(avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length){
  108. frame->data[1]= context->buffer;
  109. }
  110. if (avctx->palctrl && avctx->palctrl->palette_changed) {
  111. memcpy(frame->data[1], avctx->palctrl->palette, AVPALETTE_SIZE);
  112. avctx->palctrl->palette_changed = 0;
  113. }
  114. flip(avctx, picture);
  115. if (avctx->codec_tag == MKTAG('Y', 'V', '1', '2'))
  116. {
  117. // swap fields
  118. unsigned char *tmp = picture->data[1];
  119. picture->data[1] = picture->data[2];
  120. picture->data[2] = tmp;
  121. }
  122. *data_size = sizeof(AVPicture);
  123. return buf_size;
  124. }
  125. static av_cold int raw_close_decoder(AVCodecContext *avctx)
  126. {
  127. RawVideoContext *context = avctx->priv_data;
  128. av_freep(&context->buffer);
  129. return 0;
  130. }
  131. AVCodec rawvideo_decoder = {
  132. "rawvideo",
  133. CODEC_TYPE_VIDEO,
  134. CODEC_ID_RAWVIDEO,
  135. sizeof(RawVideoContext),
  136. raw_init_decoder,
  137. NULL,
  138. raw_close_decoder,
  139. raw_decode,
  140. .long_name = NULL_IF_CONFIG_SMALL("raw video"),
  141. };