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
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2005-04-20 09:42:47 +00:00
|
|
|
* Intel Indeo 2 decoder.
|
|
|
|
*/
|
2012-10-11 16:50:30 +00:00
|
|
|
|
|
|
|
#include "libavutil/attributes.h"
|
2022-05-23 03:23:35 +00:00
|
|
|
#include "libavutil/thread.h"
|
2016-06-04 13:07:30 +00:00
|
|
|
|
|
|
|
#define BITSTREAM_READER_LE
|
2005-04-20 09:42:47 +00:00
|
|
|
#include "avcodec.h"
|
2024-04-25 09:18:18 +00:00
|
|
|
#include "codec_internal.h"
|
2009-04-13 16:20:26 +00:00
|
|
|
#include "get_bits.h"
|
2005-04-20 09:42:47 +00:00
|
|
|
#include "indeo2data.h"
|
2012-11-21 20:34:46 +00:00
|
|
|
#include "internal.h"
|
2012-10-11 16:50:30 +00:00
|
|
|
#include "mathops.h"
|
2005-04-20 09:42:47 +00:00
|
|
|
|
|
|
|
typedef struct Ir2Context{
|
|
|
|
AVCodecContext *avctx;
|
2013-07-26 14:58:44 +00:00
|
|
|
AVFrame *picture;
|
2005-04-20 09:42:47 +00:00
|
|
|
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)
|
|
|
|
{
|
2022-05-23 03:23:35 +00:00
|
|
|
return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1);
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
|
|
|
|
2012-11-17 07:11:30 +00:00
|
|
|
static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst,
|
2014-06-25 18:28:22 +00:00
|
|
|
int pitch, const uint8_t *table)
|
2005-04-20 09:42:47 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
int out = 0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2019-03-17 20:39:57 +00:00
|
|
|
if ((width & 1) || width * height / (2*(IR2_CODES - 0x7F)) > get_bits_left(&ctx->gb))
|
2012-11-17 07:06:19 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2005-04-20 09:52:04 +00:00
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
/* first line contain absolute values, other lines contain deltas */
|
2012-11-17 07:11:30 +00:00
|
|
|
while (out < width) {
|
2014-10-18 13:28:03 +00:00
|
|
|
int c = ir2_get_code(&ctx->gb);
|
2012-11-17 07:11:30 +00:00
|
|
|
if (c >= 0x80) { /* we have a run */
|
2005-04-20 10:16:19 +00:00
|
|
|
c -= 0x7F;
|
2012-11-17 07:11:30 +00:00
|
|
|
if (out + c*2 > width)
|
2012-11-17 07:06:19 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2005-04-20 09:42:47 +00:00
|
|
|
for (i = 0; i < c * 2; i++)
|
|
|
|
dst[out++] = 0x80;
|
|
|
|
} else { /* copy two values from table */
|
2017-05-08 22:02:22 +00:00
|
|
|
if (c <= 0)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out++] = table[c * 2];
|
|
|
|
dst[out++] = table[(c * 2) + 1];
|
|
|
|
}
|
|
|
|
}
|
2014-06-25 18:28:22 +00:00
|
|
|
dst += pitch;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2012-11-17 07:11:30 +00:00
|
|
|
for (j = 1; j < height; j++) {
|
2005-04-20 09:42:47 +00:00
|
|
|
out = 0;
|
2012-11-17 07:11:30 +00:00
|
|
|
while (out < width) {
|
2019-07-31 22:50:21 +00:00
|
|
|
int c;
|
|
|
|
if (get_bits_left(&ctx->gb) <= 0)
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
c = ir2_get_code(&ctx->gb);
|
2012-11-17 07:11:30 +00:00
|
|
|
if (c >= 0x80) { /* we have a skip */
|
2005-04-20 10:16:19 +00:00
|
|
|
c -= 0x7F;
|
2012-11-17 07:11:30 +00:00
|
|
|
if (out + c*2 > width)
|
2012-11-17 07:06:19 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2005-04-20 09:42:47 +00:00
|
|
|
for (i = 0; i < c * 2; i++) {
|
2014-06-25 18:28:22 +00:00
|
|
|
dst[out] = dst[out - pitch];
|
2005-04-20 09:42:47 +00:00
|
|
|
out++;
|
|
|
|
}
|
|
|
|
} else { /* add two deltas from table */
|
2017-05-08 22:02:22 +00:00
|
|
|
int t;
|
|
|
|
if (c <= 0)
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
t = dst[out - pitch] + (table[c * 2] - 128);
|
2012-11-17 07:11:30 +00:00
|
|
|
t = av_clip_uint8(t);
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out] = t;
|
|
|
|
out++;
|
2014-06-25 18:28:22 +00:00
|
|
|
t = dst[out - pitch] + (table[(c * 2) + 1] - 128);
|
2012-11-17 07:11:30 +00:00
|
|
|
t = av_clip_uint8(t);
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out] = t;
|
|
|
|
out++;
|
|
|
|
}
|
|
|
|
}
|
2014-06-25 18:28:22 +00:00
|
|
|
dst += pitch;
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
2005-04-20 09:52:04 +00:00
|
|
|
return 0;
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
|
|
|
|
2012-11-17 07:11:30 +00:00
|
|
|
static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst,
|
2014-06-25 18:28:22 +00:00
|
|
|
int pitch, const uint8_t *table)
|
2005-04-20 09:42:47 +00:00
|
|
|
{
|
|
|
|
int j;
|
|
|
|
int out = 0;
|
|
|
|
int c;
|
|
|
|
int t;
|
2005-04-20 09:52:04 +00:00
|
|
|
|
2012-11-17 07:11:30 +00:00
|
|
|
if (width & 1)
|
2012-11-17 07:06:19 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2005-04-20 09:52:04 +00:00
|
|
|
|
2012-11-17 07:11:30 +00:00
|
|
|
for (j = 0; j < height; j++) {
|
2005-04-20 09:42:47 +00:00
|
|
|
out = 0;
|
2012-11-17 07:11:30 +00:00
|
|
|
while (out < width) {
|
2019-07-31 22:50:21 +00:00
|
|
|
if (get_bits_left(&ctx->gb) <= 0)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2005-04-20 09:42:47 +00:00
|
|
|
c = ir2_get_code(&ctx->gb);
|
2012-11-17 07:11:30 +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 */
|
2017-05-08 22:02:22 +00:00
|
|
|
if (c <= 0)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2012-11-17 07:11:30 +00:00
|
|
|
t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
|
|
|
|
t = av_clip_uint8(t);
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out] = t;
|
|
|
|
out++;
|
2012-11-17 07:11:30 +00:00
|
|
|
t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
|
|
|
|
t = av_clip_uint8(t);
|
2005-04-20 09:42:47 +00:00
|
|
|
dst[out] = t;
|
|
|
|
out++;
|
|
|
|
}
|
|
|
|
}
|
2014-06-25 18:28:22 +00:00
|
|
|
dst += pitch;
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
2005-04-20 09:52:04 +00:00
|
|
|
return 0;
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
static int ir2_decode_frame(AVCodecContext *avctx, AVFrame *picture,
|
|
|
|
int *got_frame, AVPacket *avpkt)
|
2005-04-20 09:42:47 +00:00
|
|
|
{
|
|
|
|
Ir2Context * const s = avctx->priv_data;
|
2012-11-17 07:11:30 +00:00
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
2013-07-26 14:58:44 +00:00
|
|
|
AVFrame * const p = s->picture;
|
2012-11-17 07:06:19 +00:00
|
|
|
int start, ret;
|
2016-02-23 00:58:19 +00:00
|
|
|
int ltab, ctab;
|
2005-04-20 09:42:47 +00:00
|
|
|
|
2019-08-30 14:37:25 +00:00
|
|
|
if ((ret = ff_reget_buffer(avctx, p, 0)) < 0)
|
2012-11-17 07:06:19 +00:00
|
|
|
return ret;
|
2005-04-20 09:42:47 +00:00
|
|
|
|
2011-09-09 20:26:49 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
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 */
|
|
|
|
|
2015-12-20 20:31:55 +00:00
|
|
|
if ((ret = init_get_bits8(&s->gb, buf + start, buf_size - start)) < 0)
|
|
|
|
return ret;
|
2005-04-20 09:42:47 +00:00
|
|
|
|
2016-02-23 00:58:19 +00:00
|
|
|
ltab = buf[0x22] & 3;
|
|
|
|
ctab = buf[0x22] >> 2;
|
2016-08-19 11:07:14 +00:00
|
|
|
|
|
|
|
if (ctab > 3) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "ctab %d is invalid\n", ctab);
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
if (s->decode_delta) { /* intraframe */
|
2012-11-17 07:08:40 +00:00
|
|
|
if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
|
2013-11-09 09:14:46 +00:00
|
|
|
p->data[0], p->linesize[0],
|
2016-02-23 00:58:19 +00:00
|
|
|
ir2_delta_table[ltab])) < 0)
|
2012-11-17 07:08:40 +00:00
|
|
|
return ret;
|
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
/* swapped U and V */
|
2012-11-17 07:08:40 +00:00
|
|
|
if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
|
2013-11-09 09:14:46 +00:00
|
|
|
p->data[2], p->linesize[2],
|
2016-02-23 00:58:19 +00:00
|
|
|
ir2_delta_table[ctab])) < 0)
|
2012-11-17 07:08:40 +00:00
|
|
|
return ret;
|
|
|
|
if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
|
2013-11-09 09:14:46 +00:00
|
|
|
p->data[1], p->linesize[1],
|
2016-02-23 00:58:19 +00:00
|
|
|
ir2_delta_table[ctab])) < 0)
|
2012-11-17 07:08:40 +00:00
|
|
|
return ret;
|
2005-04-20 09:42:47 +00:00
|
|
|
} else { /* interframe */
|
2012-11-17 07:08:40 +00:00
|
|
|
if ((ret = ir2_decode_plane_inter(s, avctx->width, avctx->height,
|
2013-11-09 09:14:46 +00:00
|
|
|
p->data[0], p->linesize[0],
|
2016-02-23 00:58:19 +00:00
|
|
|
ir2_delta_table[ltab])) < 0)
|
2012-11-17 07:08:40 +00:00
|
|
|
return ret;
|
2005-04-20 09:42:47 +00:00
|
|
|
/* swapped U and V */
|
2012-11-17 07:08:40 +00:00
|
|
|
if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
|
2013-11-09 09:14:46 +00:00
|
|
|
p->data[2], p->linesize[2],
|
2016-02-23 00:58:19 +00:00
|
|
|
ir2_delta_table[ctab])) < 0)
|
2012-11-17 07:08:40 +00:00
|
|
|
return ret;
|
|
|
|
if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
|
2013-11-09 09:14:46 +00:00
|
|
|
p->data[1], p->linesize[1],
|
2016-02-23 00:58:19 +00:00
|
|
|
ir2_delta_table[ctab])) < 0)
|
2012-11-17 07:08:40 +00:00
|
|
|
return ret;
|
2005-04-20 09:42:47 +00:00
|
|
|
}
|
|
|
|
|
2013-11-09 09:14:46 +00:00
|
|
|
if ((ret = av_frame_ref(picture, p)) < 0)
|
2012-11-21 20:34:46 +00:00
|
|
|
return ret;
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2005-04-20 09:42:47 +00:00
|
|
|
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2022-05-23 03:23:35 +00:00
|
|
|
static av_cold void ir2_init_static(void)
|
|
|
|
{
|
|
|
|
INIT_VLC_STATIC_FROM_LENGTHS(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
|
|
|
|
&ir2_tab[0][1], 2, &ir2_tab[0][0], 2, 1,
|
|
|
|
0, INIT_VLC_OUTPUT_LE, 1 << CODE_VLC_BITS);
|
|
|
|
}
|
|
|
|
|
2012-11-17 07:11:30 +00:00
|
|
|
static av_cold int ir2_decode_init(AVCodecContext *avctx)
|
|
|
|
{
|
2022-05-23 03:23:35 +00:00
|
|
|
static AVOnce init_static_once = AV_ONCE_INIT;
|
2005-04-20 09:42:47 +00:00
|
|
|
Ir2Context * const ic = avctx->priv_data;
|
|
|
|
|
|
|
|
ic->avctx = avctx;
|
|
|
|
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt= AV_PIX_FMT_YUV410P;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2013-07-26 14:58:44 +00:00
|
|
|
ic->picture = av_frame_alloc();
|
|
|
|
if (!ic->picture)
|
|
|
|
return AVERROR(ENOMEM);
|
2013-02-13 07:50:04 +00:00
|
|
|
|
2022-05-23 03:23:35 +00:00
|
|
|
ff_thread_once(&init_static_once, ir2_init_static);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-04-20 09:42:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-17 07:11:30 +00:00
|
|
|
static av_cold int ir2_decode_end(AVCodecContext *avctx)
|
|
|
|
{
|
2009-10-14 05:28:24 +00:00
|
|
|
Ir2Context * const ic = avctx->priv_data;
|
|
|
|
|
2013-07-26 14:58:44 +00:00
|
|
|
av_frame_free(&ic->picture);
|
2009-10-14 05:28:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-04-25 09:18:18 +00:00
|
|
|
const FFCodec ff_indeo2_decoder = {
|
|
|
|
.p.name = "indeo2",
|
|
|
|
.p.long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 2"),
|
|
|
|
.p.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.p.id = AV_CODEC_ID_INDEO2,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(Ir2Context),
|
|
|
|
.init = ir2_decode_init,
|
|
|
|
.close = ir2_decode_end,
|
2024-04-25 09:18:18 +00:00
|
|
|
FF_CODEC_DECODE_CB(ir2_decode_frame),
|
|
|
|
.p.capabilities = AV_CODEC_CAP_DR1,
|
2022-05-23 03:23:35 +00:00
|
|
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
|
2005-04-20 09:42:47 +00:00
|
|
|
};
|