2005-04-20 09:42:47 +00:00
|
|
|
/*
|
2006-09-15 13:53:26 +00:00
|
|
|
* Intel Indeo 2 codec
|
2005-04-20 09:42:47 +00:00
|
|
|
* Copyright (c) 2005 Konstantin Shishkov
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2005-04-20 09:42:47 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2005-04-20 09:42:47 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2005-04-20 09:42:47 +00:00
|
|
|
* 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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-04-20 09:42:47 +00:00
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
/**
|
|
|
|
* @file indeo2.c
|
|
|
|
* Intel Indeo 2 decoder.
|
|
|
|
*/
|
2005-05-11 01:50:46 +00:00
|
|
|
#define ALT_BITSTREAM_READER_LE
|
2005-04-20 09:42:47 +00:00
|
|
|
#include "avcodec.h"
|
|
|
|
#include "bitstream.h"
|
|
|
|
#include "indeo2data.h"
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2005-04-20 10:16:19 +00:00
|
|
|
return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1) + 1;
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
|
|
|
|
2005-04-20 09:52:04 +00:00
|
|
|
static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst, int stride,
|
2005-04-20 09:42:47 +00:00
|
|
|
const uint8_t *table)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
int out = 0;
|
|
|
|
int c;
|
|
|
|
int t;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-04-20 09:52:04 +00:00
|
|
|
if(width&1)
|
|
|
|
return -1;
|
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
/* first line contain absolute values, other lines contain deltas */
|
|
|
|
while (out < width){
|
|
|
|
c = ir2_get_code(&ctx->gb);
|
2005-04-20 10:16:19 +00:00
|
|
|
if(c >= 0x80) { /* we have a run */
|
|
|
|
c -= 0x7F;
|
2005-04-20 09:52:04 +00:00
|
|
|
if(out + c*2 > width)
|
|
|
|
return -1;
|
2005-04-20 09:42:47 +00:00
|
|
|
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;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
for (j = 1; j < height; j++){
|
|
|
|
out = 0;
|
|
|
|
while (out < width){
|
|
|
|
c = ir2_get_code(&ctx->gb);
|
2005-04-20 10:16:19 +00:00
|
|
|
if(c >= 0x80) { /* we have a skip */
|
|
|
|
c -= 0x7F;
|
2005-04-20 09:52:04 +00:00
|
|
|
if(out + c*2 > width)
|
|
|
|
return -1;
|
2005-04-20 09:42:47 +00:00
|
|
|
for (i = 0; i < c * 2; i++) {
|
|
|
|
dst[out] = dst[out - stride];
|
|
|
|
out++;
|
|
|
|
}
|
|
|
|
} else { /* add two deltas from table */
|
|
|
|
t = dst[out - stride] + (table[c * 2] - 128);
|
2007-02-25 10:27:12 +00:00
|
|
|
t= av_clip_uint8(t);
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out] = t;
|
|
|
|
out++;
|
|
|
|
t = dst[out - stride] + (table[(c * 2) + 1] - 128);
|
2007-02-25 10:27:12 +00:00
|
|
|
t= av_clip_uint8(t);
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out] = t;
|
|
|
|
out++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dst += stride;
|
|
|
|
}
|
2005-04-20 09:52:04 +00:00
|
|
|
return 0;
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
|
|
|
|
2005-04-20 09:52:04 +00:00
|
|
|
static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst, int stride,
|
2005-04-20 09:42:47 +00:00
|
|
|
const uint8_t *table)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
int out = 0;
|
|
|
|
int c;
|
|
|
|
int t;
|
2005-04-20 09:52:04 +00:00
|
|
|
|
|
|
|
if(width&1)
|
|
|
|
return -1;
|
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
for (j = 0; j < height; j++){
|
|
|
|
out = 0;
|
|
|
|
while (out < width){
|
|
|
|
c = ir2_get_code(&ctx->gb);
|
2005-04-20 10:16:19 +00:00
|
|
|
if(c >= 0x80) { /* we have a skip */
|
|
|
|
c -= 0x7F;
|
2005-04-20 09:42:47 +00:00
|
|
|
out += c * 2;
|
|
|
|
} else { /* add two deltas from table */
|
2005-07-09 21:39:29 +00:00
|
|
|
t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
|
2007-02-25 10:27:12 +00:00
|
|
|
t= av_clip_uint8(t);
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out] = t;
|
|
|
|
out++;
|
2005-07-09 21:39:29 +00:00
|
|
|
t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
|
2007-02-25 10:27:12 +00:00
|
|
|
t= av_clip_uint8(t);
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out] = t;
|
|
|
|
out++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dst += stride;
|
|
|
|
}
|
2005-04-20 09:52:04 +00:00
|
|
|
return 0;
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
static int ir2_decode_frame(AVCodecContext *avctx,
|
2005-04-20 09:42:47 +00:00
|
|
|
void *data, int *data_size,
|
2008-02-01 03:26:31 +00:00
|
|
|
const uint8_t *buf, int buf_size)
|
2005-04-20 09:42:47 +00:00
|
|
|
{
|
|
|
|
Ir2Context * const s = avctx->priv_data;
|
|
|
|
AVFrame *picture = data;
|
|
|
|
AVFrame * const p= (AVFrame*)&s->picture;
|
|
|
|
int start;
|
|
|
|
|
|
|
|
if(p->data[0])
|
|
|
|
avctx->release_buffer(avctx, p);
|
|
|
|
|
|
|
|
p->reference = 1;
|
|
|
|
p->buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
|
|
|
|
if (avctx->reget_buffer(avctx, p)) {
|
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->decode_delta = buf[18];
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
/* decide whether frame uses deltas or not */
|
2005-12-17 18:14:38 +00:00
|
|
|
#ifndef ALT_BITSTREAM_READER_LE
|
2005-04-20 09:42:47 +00:00
|
|
|
for (i = 0; i < buf_size; i++)
|
|
|
|
buf[i] = ff_reverse[buf[i]];
|
2005-05-11 01:50:46 +00:00
|
|
|
#endif
|
2005-04-20 09:42:47 +00:00
|
|
|
start = 48; /* hardcoded for now */
|
|
|
|
|
|
|
|
init_get_bits(&s->gb, buf + start, buf_size - start);
|
|
|
|
|
|
|
|
if (s->decode_delta) { /* intraframe */
|
|
|
|
ir2_decode_plane(s, avctx->width, avctx->height,
|
|
|
|
s->picture.data[0], s->picture.linesize[0], ir2_luma_table);
|
|
|
|
/* swapped U and V */
|
|
|
|
ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
|
|
|
|
s->picture.data[2], s->picture.linesize[2], ir2_luma_table);
|
|
|
|
ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
|
|
|
|
s->picture.data[1], s->picture.linesize[1], ir2_luma_table);
|
|
|
|
} else { /* interframe */
|
|
|
|
ir2_decode_plane_inter(s, avctx->width, avctx->height,
|
|
|
|
s->picture.data[0], s->picture.linesize[0], ir2_luma_table);
|
|
|
|
/* swapped U and V */
|
|
|
|
ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
|
|
|
|
s->picture.data[2], s->picture.linesize[2], ir2_luma_table);
|
|
|
|
ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
|
|
|
|
s->picture.data[1], s->picture.linesize[1], ir2_luma_table);
|
|
|
|
}
|
|
|
|
|
|
|
|
*picture= *(AVFrame*)&s->picture;
|
|
|
|
*data_size = sizeof(AVPicture);
|
|
|
|
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int ir2_decode_init(AVCodecContext *avctx){
|
2005-04-20 09:42:47 +00:00
|
|
|
Ir2Context * const ic = avctx->priv_data;
|
|
|
|
|
|
|
|
ic->avctx = avctx;
|
|
|
|
|
|
|
|
avctx->pix_fmt= PIX_FMT_YUV410P;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
if (!ir2_vlc.table)
|
2007-06-04 11:03:24 +00:00
|
|
|
#ifdef ALT_BITSTREAM_READER_LE
|
2005-04-20 09:42:47 +00:00
|
|
|
init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
|
|
|
|
&ir2_codes[0][1], 4, 2,
|
2005-12-17 18:14:38 +00:00
|
|
|
&ir2_codes[0][0], 4, 2, INIT_VLC_USE_STATIC | INIT_VLC_LE);
|
2005-05-11 01:50:46 +00:00
|
|
|
#else
|
2007-06-04 11:03:24 +00:00
|
|
|
init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
|
|
|
|
&ir2_codes[0][1], 4, 2,
|
2005-12-17 18:14:38 +00:00
|
|
|
&ir2_codes[0][0], 4, 2, INIT_VLC_USE_STATIC);
|
2005-05-11 01:50:46 +00:00
|
|
|
#endif
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVCodec indeo2_decoder = {
|
|
|
|
"indeo2",
|
|
|
|
CODEC_TYPE_VIDEO,
|
|
|
|
CODEC_ID_INDEO2,
|
|
|
|
sizeof(Ir2Context),
|
|
|
|
ir2_decode_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
ir2_decode_frame,
|
|
|
|
CODEC_CAP_DR1,
|
2008-06-12 21:50:13 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 2"),
|
2005-04-20 09:42:47 +00:00
|
|
|
};
|