libavcodec/aura.c
ce293510
 /*
  * Aura 2 decoder
  *
  * 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
ce293510
  * Aura 2 decoder
  */
 
 #include "avcodec.h"
594d4d5d
 #include "internal.h"
1d9c2dc8
 #include "libavutil/internal.h"
ce293510
 
 static av_cold int aura_decode_init(AVCodecContext *avctx)
 {
     /* width needs to be divisible by 4 for this codec to work */
     if (avctx->width & 0x3)
620faee5
         return AVERROR(EINVAL);
716d413c
     avctx->pix_fmt = AV_PIX_FMT_YUV422P;
ce293510
 
     return 0;
 }
 
 static int aura_decode_frame(AVCodecContext *avctx,
df9b9567
                              void *data, int *got_frame,
ce293510
                              AVPacket *pkt)
 {
759001c5
     AVFrame *frame = data;
ce293510
     uint8_t *Y, *U, *V;
     uint8_t val;
620faee5
     int x, y, ret;
ce293510
     const uint8_t *buf = pkt->data;
 
     /* prediction error tables (make it clear that they are signed values) */
     const int8_t *delta_table = (const int8_t*)buf + 16;
 
     if (pkt->size != 48 + avctx->height * avctx->width) {
         av_log(avctx, AV_LOG_ERROR, "got a buffer with %d bytes when %d were expected\n",
                pkt->size, 48 + avctx->height * avctx->width);
620faee5
         return AVERROR_INVALIDDATA;
ce293510
     }
 
     /* pixel data starts 48 bytes in, after 3x16-byte tables */
     buf += 48;
 
1ec94b0f
     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
620faee5
         return ret;
ce293510
 
759001c5
     Y = frame->data[0];
     U = frame->data[1];
     V = frame->data[2];
ce293510
 
     /* iterate through each line in the height */
     for (y = 0; y < avctx->height; y++) {
         /* reset predictors */
bdfa2451
         val  = *buf++;
ce293510
         U[0] = val & 0xF0;
         Y[0] = val << 4;
bdfa2451
         val  = *buf++;
ce293510
         V[0] = val & 0xF0;
         Y[1] = Y[0] + delta_table[val & 0xF];
bdfa2451
         Y   += 2; U++; V++;
ce293510
 
         /* iterate through the remaining pixel groups (4 pixels/group) */
         for (x = 1; x < (avctx->width >> 1); x++) {
bdfa2451
             val  = *buf++;
ce293510
             U[0] = U[-1] + delta_table[val >> 4];
             Y[0] = Y[-1] + delta_table[val & 0xF];
bdfa2451
             val  = *buf++;
ce293510
             V[0] = V[-1] + delta_table[val >> 4];
             Y[1] = Y[ 0] + delta_table[val & 0xF];
bdfa2451
             Y   += 2; U++; V++;
ce293510
         }
759001c5
         Y += frame->linesize[0] -  avctx->width;
         U += frame->linesize[1] - (avctx->width >> 1);
         V += frame->linesize[2] - (avctx->width >> 1);
ce293510
     }
 
df9b9567
     *got_frame = 1;
ce293510
 
     return pkt->size;
 }
 
e7e2df27
 AVCodec ff_aura2_decoder = {
ec6402b7
     .name           = "aura2",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Auravision Aura 2"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_AURA2,
ec6402b7
     .init           = aura_decode_init,
     .decode         = aura_decode_frame,
def97856
     .capabilities   = AV_CODEC_CAP_DR1,
91ed4e71
     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
ce293510
 };