libavcodec/indeo2.c
856dbbff
 /*
02c1592f
  * Intel Indeo 2 codec
856dbbff
  * Copyright (c) 2005 Konstantin Shishkov
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
856dbbff
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
856dbbff
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
856dbbff
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
856dbbff
  */
115329f1
 
856dbbff
 /**
ba87f080
  * @file
856dbbff
  * Intel Indeo 2 decoder.
  */
d5c62122
 
aaf47bcd
 #define BITSTREAM_READER_LE
d5c62122
 #include "libavutil/attributes.h"
856dbbff
 #include "avcodec.h"
9106a698
 #include "get_bits.h"
856dbbff
 #include "indeo2data.h"
d5c62122
 #include "mathops.h"
856dbbff
 
 typedef struct Ir2Context{
     AVCodecContext *avctx;
     AVFrame picture;
     GetBitContext gb;
     int decode_delta;
 } Ir2Context;
 
 #define CODE_VLC_BITS 14
 static VLC ir2_vlc;
 
 /* Indeo 2 codes are in range 0x01..0x7F and 0x81..0x90 */
 static inline int ir2_get_code(GetBitContext *gb)
 {
8b39f75b
     return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1) + 1;
856dbbff
 }
 
c04c64c0
 static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst,
                             int stride, const uint8_t *table)
856dbbff
 {
     int i;
     int j;
     int out = 0;
     int c;
     int t;
115329f1
 
c04c64c0
     if (width & 1)
6ea2c9a4
         return AVERROR_INVALIDDATA;
f707a5eb
 
856dbbff
     /* first line contain absolute values, other lines contain deltas */
c04c64c0
     while (out < width) {
856dbbff
         c = ir2_get_code(&ctx->gb);
c04c64c0
         if (c >= 0x80) { /* we have a run */
8b39f75b
             c -= 0x7F;
c04c64c0
             if (out + c*2 > width)
6ea2c9a4
                 return AVERROR_INVALIDDATA;
856dbbff
             for (i = 0; i < c * 2; i++)
                 dst[out++] = 0x80;
         } else { /* copy two values from table */
             dst[out++] = table[c * 2];
             dst[out++] = table[(c * 2) + 1];
         }
     }
     dst += stride;
115329f1
 
c04c64c0
     for (j = 1; j < height; j++) {
856dbbff
         out = 0;
c04c64c0
         while (out < width) {
856dbbff
             c = ir2_get_code(&ctx->gb);
c04c64c0
             if (c >= 0x80) { /* we have a skip */
8b39f75b
                 c -= 0x7F;
c04c64c0
                 if (out + c*2 > width)
6ea2c9a4
                     return AVERROR_INVALIDDATA;
856dbbff
                 for (i = 0; i < c * 2; i++) {
                     dst[out] = dst[out - stride];
                     out++;
                 }
             } else { /* add two deltas from table */
c04c64c0
                 t        = dst[out - stride] + (table[c * 2] - 128);
                 t        = av_clip_uint8(t);
856dbbff
                 dst[out] = t;
                 out++;
c04c64c0
                 t        = dst[out - stride] + (table[(c * 2) + 1] - 128);
                 t        = av_clip_uint8(t);
856dbbff
                 dst[out] = t;
                 out++;
             }
         }
         dst += stride;
     }
f707a5eb
     return 0;
856dbbff
 }
 
c04c64c0
 static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst,
                                   int stride, const uint8_t *table)
856dbbff
 {
     int j;
     int out = 0;
     int c;
     int t;
f707a5eb
 
c04c64c0
     if (width & 1)
6ea2c9a4
         return AVERROR_INVALIDDATA;
f707a5eb
 
c04c64c0
     for (j = 0; j < height; j++) {
856dbbff
         out = 0;
c04c64c0
         while (out < width) {
856dbbff
             c = ir2_get_code(&ctx->gb);
c04c64c0
             if (c >= 0x80) { /* we have a skip */
                 c   -= 0x7F;
856dbbff
                 out += c * 2;
             } else { /* add two deltas from table */
c04c64c0
                 t        = dst[out] + (((table[c * 2] - 128)*3) >> 2);
                 t        = av_clip_uint8(t);
856dbbff
                 dst[out] = t;
                 out++;
c04c64c0
                 t        = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
                 t        = av_clip_uint8(t);
856dbbff
                 dst[out] = t;
                 out++;
             }
         }
         dst += stride;
     }
f707a5eb
     return 0;
856dbbff
 }
 
115329f1
 static int ir2_decode_frame(AVCodecContext *avctx,
df9b9567
                         void *data, int *got_frame,
7a00bbad
                         AVPacket *avpkt)
856dbbff
 {
     Ir2Context * const s = avctx->priv_data;
c04c64c0
     const uint8_t *buf   = avpkt->data;
     int buf_size         = avpkt->size;
     AVFrame *picture     = data;
     AVFrame * const p    = &s->picture;
6ea2c9a4
     int start, ret;
856dbbff
 
371e1654
     p->reference = 3;
856dbbff
     p->buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
6ea2c9a4
     if ((ret = avctx->reget_buffer(avctx, p)) < 0) {
856dbbff
         av_log(s->avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
6ea2c9a4
         return ret;
856dbbff
     }
 
b7ce4f1d
     start = 48; /* hardcoded for now */
 
     if (start >= buf_size) {
         av_log(s->avctx, AV_LOG_ERROR, "input buffer size too small (%d)\n", buf_size);
         return AVERROR_INVALIDDATA;
     }
 
856dbbff
     s->decode_delta = buf[18];
115329f1
 
856dbbff
     /* decide whether frame uses deltas or not */
aaf47bcd
 #ifndef BITSTREAM_READER_LE
856dbbff
     for (i = 0; i < buf_size; i++)
d5c62122
         buf[i] = ff_reverse[buf[i]];
ef56de32
 #endif
856dbbff
 
68ca330c
     init_get_bits(&s->gb, buf + start, (buf_size - start) * 8);
856dbbff
 
     if (s->decode_delta) { /* intraframe */
7b1fbd47
         if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
                                     s->picture.data[0], s->picture.linesize[0],
                                     ir2_luma_table)) < 0)
             return ret;
 
856dbbff
         /* swapped U and V */
7b1fbd47
         if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
                                     s->picture.data[2], s->picture.linesize[2],
                                     ir2_luma_table)) < 0)
             return ret;
         if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
                                     s->picture.data[1], s->picture.linesize[1],
                                     ir2_luma_table)) < 0)
             return ret;
856dbbff
     } else { /* interframe */
7b1fbd47
         if ((ret = ir2_decode_plane_inter(s, avctx->width, avctx->height,
                                           s->picture.data[0], s->picture.linesize[0],
                                           ir2_luma_table)) < 0)
             return ret;
856dbbff
         /* swapped U and V */
7b1fbd47
         if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
                                           s->picture.data[2], s->picture.linesize[2],
                                           ir2_luma_table)) < 0)
             return ret;
         if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
                                           s->picture.data[1], s->picture.linesize[1],
                                           ir2_luma_table)) < 0)
             return ret;
856dbbff
     }
 
324deaa2
     *picture   = s->picture;
df9b9567
     *got_frame = 1;
856dbbff
 
     return buf_size;
 }
 
c04c64c0
 static av_cold int ir2_decode_init(AVCodecContext *avctx)
 {
856dbbff
     Ir2Context * const ic = avctx->priv_data;
bd4110f9
     static VLC_TYPE vlc_tables[1 << CODE_VLC_BITS][2];
856dbbff
 
01042d41
     avcodec_get_frame_defaults(&ic->picture);
856dbbff
     ic->avctx = avctx;
 
716d413c
     avctx->pix_fmt= AV_PIX_FMT_YUV410P;
115329f1
 
bd4110f9
     ir2_vlc.table = vlc_tables;
     ir2_vlc.table_allocated = 1 << CODE_VLC_BITS;
aaf47bcd
 #ifdef BITSTREAM_READER_LE
856dbbff
         init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
                  &ir2_codes[0][1], 4, 2,
bd4110f9
                  &ir2_codes[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC | INIT_VLC_LE);
ef56de32
 #else
c11aac6c
         init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
                  &ir2_codes[0][1], 4, 2,
bd4110f9
                  &ir2_codes[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC);
ef56de32
 #endif
115329f1
 
856dbbff
     return 0;
 }
 
c04c64c0
 static av_cold int ir2_decode_end(AVCodecContext *avctx)
 {
6d924b5a
     Ir2Context * const ic = avctx->priv_data;
     AVFrame *pic = &ic->picture;
 
     if (pic->data[0])
         avctx->release_buffer(avctx, pic);
 
     return 0;
 }
 
e7e2df27
 AVCodec ff_indeo2_decoder = {
ec6402b7
     .name           = "indeo2",
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_INDEO2,
ec6402b7
     .priv_data_size = sizeof(Ir2Context),
     .init           = ir2_decode_init,
     .close          = ir2_decode_end,
     .decode         = ir2_decode_frame,
     .capabilities   = CODEC_CAP_DR1,
00c3b67b
     .long_name      = NULL_IF_CONFIG_SMALL("Intel Indeo 2"),
856dbbff
 };