libavcodec/rawdec.c
3a763f0f
 /*
  * Raw Video Decoder
406792e7
  * Copyright (c) 2001 Fabrice Bellard
3a763f0f
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
3a763f0f
  * Raw Video Decoder
  */
 
 #include "avcodec.h"
b641982b
 #include "imgconvert.h"
3a763f0f
 #include "raw.h"
3dd2f87e
 #include "libavutil/intreadwrite.h"
7ffe76e5
 #include "libavutil/imgutils.h"
9763420b
 #include "libavutil/opt.h"
3a763f0f
 
 typedef struct RawVideoContext {
9763420b
     AVClass *av_class;
2efcde73
     uint32_t palette[AVPALETTE_COUNT];
3a763f0f
     unsigned char * buffer;  /* block of memory for holding one frame */
     int             length;  /* number of bytes in buffer */
31f2616d
     int flip;
3a763f0f
     AVFrame pic;             ///< AVCodecContext.coded_frame
9763420b
     int tff;
3a763f0f
 } RawVideoContext;
 
9763420b
 static const AVOption options[]={
539399d4
 {"top", "top field first", offsetof(RawVideoContext, tff), AV_OPT_TYPE_INT, {.dbl = -1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM|AV_OPT_FLAG_VIDEO_PARAM},
9763420b
 {NULL}
 };
 static const AVClass class = { "rawdec", NULL, options, LIBAVUTIL_VERSION_INT };
 
6a2c9b8b
 static const PixelFormatTag pix_fmt_bps_avi[] = {
85eedcf6
     { PIX_FMT_MONOWHITE, 1 },
0eba7fc2
     { PIX_FMT_PAL8,    2 },
611e7bc4
     { PIX_FMT_PAL8,    4 },
3a763f0f
     { PIX_FMT_PAL8,    8 },
de51f22d
     { PIX_FMT_RGB444, 12 },
3a763f0f
     { PIX_FMT_RGB555, 15 },
     { PIX_FMT_RGB555, 16 },
     { PIX_FMT_BGR24,  24 },
701012d6
     { PIX_FMT_BGRA,   32 },
95240bf3
     { PIX_FMT_NONE, 0 },
3a763f0f
 };
 
6a2c9b8b
 static const PixelFormatTag pix_fmt_bps_mov[] = {
e1bd945b
     { PIX_FMT_MONOWHITE, 1 },
4235c98e
     { PIX_FMT_PAL8,      2 },
83f02883
     { PIX_FMT_PAL8,      4 },
3a763f0f
     { PIX_FMT_PAL8,      8 },
7574dc4c
     // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov
     // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
f27fd362
     { PIX_FMT_RGB555BE, 16 },
3a763f0f
     { PIX_FMT_RGB24,    24 },
484d1464
     { PIX_FMT_ARGB,     32 },
2bd12ee3
     { PIX_FMT_MONOWHITE,33 },
95240bf3
     { PIX_FMT_NONE, 0 },
3a763f0f
 };
 
24009f36
 enum PixelFormat ff_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc)
3a763f0f
 {
     while (tags->pix_fmt >= 0) {
         if (tags->fourcc == fourcc)
             return tags->pix_fmt;
         tags++;
     }
     return PIX_FMT_YUV420P;
 }
 
98a6fff9
 static av_cold int raw_init_decoder(AVCodecContext *avctx)
3a763f0f
 {
     RawVideoContext *context = avctx->priv_data;
 
     if (avctx->codec_tag == MKTAG('r','a','w',' '))
24009f36
         avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_mov, avctx->bits_per_coded_sample);
040e1c67
     else if (avctx->codec_tag == MKTAG('W','R','A','W'))
         avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample);
3a763f0f
     else if (avctx->codec_tag)
24009f36
         avctx->pix_fmt = ff_find_pix_fmt(ff_raw_pix_fmt_tags, avctx->codec_tag);
c1bdc930
     else if (avctx->pix_fmt == PIX_FMT_NONE && avctx->bits_per_coded_sample)
24009f36
         avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample);
3a763f0f
 
50fee0fc
     if (avctx->pix_fmt == PIX_FMT_NONE) {
         av_log(avctx, AV_LOG_ERROR, "Pixel format was not specified and cannot be detected\n");
         return AVERROR(EINVAL);
     }
 
ed5d30d9
     ff_set_systematic_pal2(context->palette, avctx->pix_fmt);
2efcde73
     if((avctx->bits_per_coded_sample == 4 || avctx->bits_per_coded_sample == 2) &&
        avctx->pix_fmt==PIX_FMT_PAL8 &&
        (!avctx->codec_tag || avctx->codec_tag == MKTAG('r','a','w',' '))){
01616f12
         context->length = avpicture_get_size(avctx->pix_fmt, FFALIGN(avctx->width, 16), avctx->height);
2efcde73
         context->buffer = av_malloc(context->length);
         if (!context->buffer)
             return -1;
dec126a9
     } else {
         context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
2efcde73
     }
ce5e49b0
     context->pic.pict_type = AV_PICTURE_TYPE_I;
3a763f0f
     context->pic.key_frame = 1;
 
     avctx->coded_frame= &context->pic;
 
fc3fc029
     if((avctx->extradata_size >= 9 && !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9)) ||
09f25a9c
         avctx->codec_tag == MKTAG('c','y','u','v') ||
040e1c67
         avctx->codec_tag == MKTAG(3, 0, 0, 0) || avctx->codec_tag == MKTAG('W','R','A','W'))
31f2616d
         context->flip=1;
 
3a763f0f
     return 0;
 }
 
 static void flip(AVCodecContext *avctx, AVPicture * picture){
e641f320
     picture->data[0] += picture->linesize[0] * (avctx->height-1);
     picture->linesize[0] *= -1;
3a763f0f
 }
 
 static int raw_decode(AVCodecContext *avctx,
                             void *data, int *data_size,
7a00bbad
                             AVPacket *avpkt)
3a763f0f
 {
7a00bbad
     const uint8_t *buf = avpkt->data;
     int buf_size = avpkt->size;
01616f12
     int linesize_align = 4;
3a763f0f
     RawVideoContext *context = avctx->priv_data;
98df2e24
     int res;
3a763f0f
 
562b6c74
     AVFrame   *frame   = data;
     AVPicture *picture = data;
3a763f0f
 
27614b12
     frame->pict_type        = avctx->coded_frame->pict_type;
3a763f0f
     frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
     frame->top_field_first = avctx->coded_frame->top_field_first;
1bb56bdb
     frame->reordered_opaque = avctx->reordered_opaque;
e86c7883
     frame->pkt_pts          = avctx->pkt->pts;
1ba57272
     frame->pkt_pos          = avctx->pkt->pos;
3a763f0f
 
9763420b
     if(context->tff>=0){
         frame->interlaced_frame = 1;
         frame->top_field_first  = context->tff;
     }
 
a22e64fd
     if (avctx->width <= 0 || avctx->height <= 0) {
         av_log(avctx, AV_LOG_ERROR, "w/h is invalid\n");
         return AVERROR(EINVAL);
     }
 
6698d139
     //2bpp and 4bpp raw in avi and mov (yes this is ugly ...)
2efcde73
     if (context->buffer) {
611e7bc4
         int i;
2efcde73
         uint8_t *dst = context->buffer;
0a1e1510
         buf_size = context->length - 256*4;
4235c98e
         if (avctx->bits_per_coded_sample == 4){
422e3a74
             for(i=0; 2*i+1 < buf_size && i<avpkt->size; i++){
6698d139
                 dst[2*i+0]= buf[i]>>4;
                 dst[2*i+1]= buf[i]&15;
             }
01616f12
             linesize_align = 8;
         } else {
422e3a74
             for(i=0; 4*i+3 < buf_size && i<avpkt->size; i++){
4235c98e
                 dst[4*i+0]= buf[i]>>6;
                 dst[4*i+1]= buf[i]>>4&3;
                 dst[4*i+2]= buf[i]>>2&3;
                 dst[4*i+3]= buf[i]   &3;
             }
01616f12
             linesize_align = 16;
         }
0a1e1510
         buf= dst;
611e7bc4
     }
 
36cbdc95
     if(avctx->codec_tag == MKTAG('A', 'V', '1', 'x') ||
        avctx->codec_tag == MKTAG('A', 'V', 'u', 'p'))
864a0742
         buf += buf_size - context->length;
 
8b58f6b5
     if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
         return -1;
 
98df2e24
     if ((res = avpicture_fill(picture, buf, avctx->pix_fmt,
                               avctx->width, avctx->height)) < 0)
         return res;
b641982b
     if((avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length) ||
38d55332
        (av_pix_fmt_descriptors[avctx->pix_fmt].flags & PIX_FMT_PSEUDOPAL)) {
2efcde73
         frame->data[1]= context->palette;
3a763f0f
     }
2d8591c2
     if (avctx->pix_fmt == PIX_FMT_PAL8) {
         const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL);
 
         if (pal) {
             memcpy(frame->data[1], pal, AVPALETTE_SIZE);
             frame->palette_has_changed = 1;
         }
3a763f0f
     }
3713cf11
     if((avctx->pix_fmt==PIX_FMT_BGR24    ||
         avctx->pix_fmt==PIX_FMT_GRAY8    ||
         avctx->pix_fmt==PIX_FMT_RGB555LE ||
         avctx->pix_fmt==PIX_FMT_RGB555BE ||
         avctx->pix_fmt==PIX_FMT_RGB565LE ||
01616f12
         avctx->pix_fmt==PIX_FMT_MONOWHITE ||
3713cf11
         avctx->pix_fmt==PIX_FMT_PAL8) &&
01616f12
         FFALIGN(frame->linesize[0], linesize_align)*avctx->height <= buf_size)
         frame->linesize[0] = FFALIGN(frame->linesize[0], linesize_align);
3a763f0f
 
31f2616d
     if(context->flip)
e641f320
         flip(avctx, picture);
3a763f0f
 
71b0654c
     if (   avctx->codec_tag == MKTAG('Y', 'V', '1', '2')
90d475a9
         || avctx->codec_tag == MKTAG('Y', 'V', '1', '6')
3950376b
         || avctx->codec_tag == MKTAG('Y', 'V', '2', '4')
71b0654c
         || avctx->codec_tag == MKTAG('Y', 'V', 'U', '9'))
c522b4e9
         FFSWAP(uint8_t *, picture->data[1], picture->data[2]);
3a763f0f
 
3dd2f87e
     if(avctx->codec_tag == AV_RL32("yuv2") &&
        avctx->pix_fmt   == PIX_FMT_YUYV422) {
         int x, y;
         uint8_t *line = picture->data[0];
         for(y = 0; y < avctx->height; y++) {
             for(x = 0; x < avctx->width; x++)
                 line[2*x + 1] ^= 0x80;
             line += picture->linesize[0];
         }
     }
 
3a763f0f
     *data_size = sizeof(AVPicture);
     return buf_size;
 }
 
98a6fff9
 static av_cold int raw_close_decoder(AVCodecContext *avctx)
3a763f0f
 {
     RawVideoContext *context = avctx->priv_data;
 
     av_freep(&context->buffer);
     return 0;
 }
 
e7e2df27
 AVCodec ff_rawvideo_decoder = {
ec6402b7
     .name           = "rawvideo",
     .type           = AVMEDIA_TYPE_VIDEO,
     .id             = CODEC_ID_RAWVIDEO,
     .priv_data_size = sizeof(RawVideoContext),
     .init           = raw_init_decoder,
     .close          = raw_close_decoder,
     .decode         = raw_decode,
00c3b67b
     .long_name      = NULL_IF_CONFIG_SMALL("raw video"),
6101e532
     .priv_class     = &class,
3a763f0f
 };