libavcodec/avuidec.c
8ba543eb
 /*
  * AVID Meridien decoder
  *
  * Copyright (c) 2012 Carl Eugen Hoyos
  *
  * 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
  */
 
 #include "avcodec.h"
874c5b02
 #include "internal.h"
20e88d86
 #include "libavutil/intreadwrite.h"
8ba543eb
 
 static av_cold int avui_decode_init(AVCodecContext *avctx)
 {
ac627b3d
     avctx->pix_fmt = AV_PIX_FMT_YUVA422P;
8ba543eb
     return 0;
 }
 
 static int avui_decode_frame(AVCodecContext *avctx, void *data,
4012cd6c
                              int *got_frame, AVPacket *avpkt)
8ba543eb
 {
1ec94b0f
     int ret;
80e9e63c
     AVFrame *pic = data;
20e88d86
     const uint8_t *src = avpkt->data, *extradata = avctx->extradata;
183596fa
     const uint8_t *srca;
8ba543eb
     uint8_t *y, *u, *v, *a;
612abe27
     int transparent, interlaced = 1, skip, opaque_length, i, j, k;
20e88d86
     uint32_t extradata_size = avctx->extradata_size;
8ba543eb
 
20e88d86
     while (extradata_size >= 24) {
         uint32_t atom_size = AV_RB32(extradata);
         if (!memcmp(&extradata[4], "APRGAPRG0001", 12)) {
             interlaced = extradata[19] != 1;
             break;
         }
         if (atom_size && atom_size <= extradata_size) {
             extradata      += atom_size;
             extradata_size -= atom_size;
         } else {
             break;
         }
     }
183596fa
     if (avctx->height == 486) {
d9b2410f
         skip = 10;
     } else {
         skip = 16;
183596fa
     }
612abe27
     opaque_length = 2 * avctx->width * (avctx->height + skip) + 4 * interlaced;
     if (avpkt->size < opaque_length) {
8ba543eb
         av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
         return AVERROR(EINVAL);
     }
183596fa
     transparent = avctx->bits_per_coded_sample == 32 &&
612abe27
                   avpkt->size >= opaque_length * 2 + 4;
     srca = src + opaque_length + 5;
8ba543eb
 
1ec94b0f
     if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
         return ret;
8ba543eb
 
     pic->key_frame = 1;
     pic->pict_type = AV_PICTURE_TYPE_I;
 
183596fa
     if (!interlaced) {
d9b2410f
         src  += avctx->width * skip;
         srca += avctx->width * skip;
183596fa
     }
 
     for (i = 0; i < interlaced + 1; i++) {
d9b2410f
         src  += avctx->width * skip;
         srca += avctx->width * skip;
2596d726
         if (interlaced && avctx->height == 486) {
f1892348
             y = pic->data[0] + (1 - i) * pic->linesize[0];
             u = pic->data[1] + (1 - i) * pic->linesize[1];
             v = pic->data[2] + (1 - i) * pic->linesize[2];
             a = pic->data[3] + (1 - i) * pic->linesize[3];
2596d726
         } else {
f1892348
             y = pic->data[0] + i * pic->linesize[0];
             u = pic->data[1] + i * pic->linesize[1];
             v = pic->data[2] + i * pic->linesize[2];
             a = pic->data[3] + i * pic->linesize[3];
2596d726
         }
8ba543eb
 
183596fa
         for (j = 0; j < avctx->height >> interlaced; j++) {
             for (k = 0; k < avctx->width >> 1; k++) {
8ba543eb
                 u[    k    ] = *src++;
                 y[2 * k    ] = *src++;
                 a[2 * k    ] = 0xFF - (transparent ? *srca++ : 0);
                 srca++;
                 v[    k    ] = *src++;
                 y[2 * k + 1] = *src++;
                 a[2 * k + 1] = 0xFF - (transparent ? *srca++ : 0);
                 srca++;
             }
 
183596fa
             y += (interlaced + 1) * pic->linesize[0];
             u += (interlaced + 1) * pic->linesize[1];
             v += (interlaced + 1) * pic->linesize[2];
             a += (interlaced + 1) * pic->linesize[3];
8ba543eb
         }
         src  += 4;
         srca += 4;
     }
4012cd6c
     *got_frame       = 1;
8ba543eb
 
     return avpkt->size;
 }
 
 AVCodec ff_avui_decoder = {
     .name         = "avui",
b46f1910
     .long_name    = NULL_IF_CONFIG_SMALL("Avid Meridien Uncompressed"),
8ba543eb
     .type         = AVMEDIA_TYPE_VIDEO,
7a72695c
     .id           = AV_CODEC_ID_AVUI,
8ba543eb
     .init         = avui_decode_init,
     .decode       = avui_decode_frame,
444e9874
     .capabilities = AV_CODEC_CAP_DR1,
91ed4e71
     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
8ba543eb
 };