#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "avcodec.h"
#include "libavutil/internal.h"
Go to the source code of this file.
Data Structures | |
struct | hnode |
struct | IdcinContext |
Defines | |
#define | HUFFMAN_TABLE_SIZE 64 * 1024 |
#define | HUF_TOKENS 256 |
#define | PALETTE_COUNT 256 |
Functions | |
static int | huff_smallest_node (hnode *hnodes, int num_hnodes) |
static av_cold void | huff_build_tree (IdcinContext *s, int prev) |
static av_cold int | idcin_decode_init (AVCodecContext *avctx) |
static void | idcin_decode_vlcs (IdcinContext *s) |
static int | idcin_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | idcin_decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_idcin_decoder |
Tim Ferguson For more information about the id CIN format, visit: http://www.csse.monash.edu.au/~timf/
This video decoder outputs PAL8 colorspace data. Interacting with this decoder is a little involved. During initialization, the demuxer must transmit the 65536-byte Huffman table(s) to the decoder via extradata. Then, whenever a palette change is encountered while demuxing the file, the demuxer must use the same extradata space to transmit an AVPaletteControl structure.
id CIN video is purely Huffman-coded, intraframe-only codec. It achieves a little more compression by exploiting the fact that adjacent pixels tend to be similar.
Note that this decoder could use libavcodec's optimized VLC facilities rather than naive, tree-based Huffman decoding. However, there are 256 Huffman tables. Plus, the VLC bit coding order is right -> left instead or left -> right, so all of the bits would have to be reversed. Further, the original Quake II implementation likely used a similar naive decoding algorithm and it worked fine on much lower spec machines.
Definition in file idcinvideo.c.
#define HUF_TOKENS 256 |
Definition at line 55 of file idcinvideo.c.
Referenced by huff_build_tree(), idcin_decode_init(), and idcin_decode_vlcs().
#define HUFFMAN_TABLE_SIZE 64 * 1024 |
Definition at line 54 of file idcinvideo.c.
Referenced by idcin_decode_init(), and idcin_read_header().
#define PALETTE_COUNT 256 |
Definition at line 56 of file idcinvideo.c.
Referenced by vmd_decode(), vmdvideo_decode_frame(), vmdvideo_decode_init(), vqa_decode_frame(), and xan_decode_frame().
static av_cold void huff_build_tree | ( | IdcinContext * | s, | |
int | prev | |||
) | [static] |
static av_cold int idcin_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 248 of file idcinvideo.c.
static int idcin_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
Definition at line 212 of file idcinvideo.c.
static av_cold int idcin_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 147 of file idcinvideo.c.
static void idcin_decode_vlcs | ( | IdcinContext * | s | ) | [static] |
Initial value:
{ .name = "idcinvideo", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_IDCIN, .priv_data_size = sizeof(IdcinContext), .init = idcin_decode_init, .close = idcin_decode_end, .decode = idcin_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("id Quake II CIN video"), }
Definition at line 258 of file idcinvideo.c.