indeo4.c File Reference

Indeo Video Interactive version 4 decoder. More...

#include "avcodec.h"
#include "get_bits.h"
#include "ivi_dsp.h"
#include "ivi_common.h"
#include "indeo4data.h"
Include dependency graph for indeo4.c:

Go to the source code of this file.

Macros

#define BITSTREAM_READER_LE
 
#define IVI4_PIC_SIZE_ESC   7
 

Enumerations

enum  {
  FRAMETYPE_INTRA = 0, FRAMETYPE_INTRA1 = 1, FRAMETYPE_INTER = 2, FRAMETYPE_BIDIR = 3,
  FRAMETYPE_INTER_NOREF = 4, FRAMETYPE_NULL_FIRST = 5, FRAMETYPE_NULL_LAST = 6
}
 Indeo 4 frame types. More...
 

Functions

static int decode_plane_subdivision (GetBitContext *gb)
 Decode subdivision of a plane. More...
 
static int scale_tile_size (int def_size, int size_factor)
 
static int decode_pic_hdr (IVI45DecContext *ctx, AVCodecContext *avctx)
 Decode Indeo 4 picture header. More...
 
static int decode_band_hdr (IVI45DecContext *ctx, IVIBandDesc *band, AVCodecContext *avctx)
 Decode Indeo 4 band header. More...
 
static int decode_mb_info (IVI45DecContext *ctx, IVIBandDesc *band, IVITile *tile, AVCodecContext *avctx)
 Decode information (block type, cbp, quant delta, motion vector) for all macroblocks in the current tile. More...
 
static void switch_buffers (IVI45DecContext *ctx)
 Rearrange decoding and reference buffers. More...
 
static int is_nonnull_frame (IVI45DecContext *ctx)
 
static av_cold int decode_init (AVCodecContext *avctx)
 

Variables

struct {
   InvTransformPtr *   inv_trans
 
   DCTransformPtr *   dc_trans
 
   int   is_2d_trans
 
transforms [18]
 
AVCodec ff_indeo4_decoder
 

Detailed Description

Indeo Video Interactive version 4 decoder.

Indeo 4 data is usually transported within .avi or .mov files. Known FOURCCs: 'IV41'

Definition in file indeo4.c.

Macro Definition Documentation

#define BITSTREAM_READER_LE

Definition at line 30 of file indeo4.c.

#define IVI4_PIC_SIZE_ESC   7

Definition at line 50 of file indeo4.c.

Referenced by decode_pic_hdr().

Enumeration Type Documentation

anonymous enum

Indeo 4 frame types.

Enumerator
FRAMETYPE_INTRA 
FRAMETYPE_INTRA1 

intra frame with slightly different bitstream coding

FRAMETYPE_INTER 

non-droppable P-frame

FRAMETYPE_BIDIR 

bidirectional frame

FRAMETYPE_INTER_NOREF 

droppable P-frame

FRAMETYPE_NULL_FIRST 

empty frame with no data

FRAMETYPE_NULL_LAST 

empty frame with no data

Definition at line 40 of file indeo4.c.

Function Documentation

static int decode_band_hdr ( IVI45DecContext ctx,
IVIBandDesc band,
AVCodecContext avctx 
)
static

Decode Indeo 4 band header.

Parameters
[in,out]ctxpointer to the decoder context
[in,out]bandpointer to the band descriptor
[in]avctxpointer to the AVCodecContext
Returns
result code: 0 = OK, negative number = error

Definition at line 281 of file indeo4.c.

Referenced by decode_init().

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 623 of file indeo4.c.

static int decode_mb_info ( IVI45DecContext ctx,
IVIBandDesc band,
IVITile tile,
AVCodecContext avctx 
)
static

Decode information (block type, cbp, quant delta, motion vector) for all macroblocks in the current tile.

Parameters
[in,out]ctxpointer to the decoder context
[in,out]bandpointer to the band descriptor
[in,out]tilepointer to the tile descriptor
[in]avctxpointer to the AVCodecContext
Returns
result code: 0 = OK, negative number = error

Definition at line 451 of file indeo4.c.

Referenced by decode_init().

static int decode_pic_hdr ( IVI45DecContext ctx,
AVCodecContext avctx 
)
static

Decode Indeo 4 picture header.

Parameters
[in,out]ctxpointer to the decoder context
[in]avctxpointer to the AVCodecContext
Returns
result code: 0 = OK, negative number = error

Definition at line 117 of file indeo4.c.

Referenced by decode_init().

static int decode_plane_subdivision ( GetBitContext gb)
static

Decode subdivision of a plane.

This is a simplified version that checks for two supported subdivisions:

  • 1 wavelet band per plane, size factor 1:1, code pattern: 3
  • 4 wavelet bands per plane, size factor 1:4, code pattern: 2,3,3,3,3 Anything else is either unsupported or corrupt.
Parameters
[in,out]gbthe GetBit context
Returns
number of wavelet bands or 0 on error

Definition at line 88 of file indeo4.c.

Referenced by decode_pic_hdr().

static int is_nonnull_frame ( IVI45DecContext ctx)
static

Definition at line 617 of file indeo4.c.

Referenced by decode_init().

static int scale_tile_size ( int  def_size,
int  size_factor 
)
inlinestatic

Definition at line 105 of file indeo4.c.

Referenced by decode_pic_hdr().

static void switch_buffers ( IVI45DecContext ctx)
static

Rearrange decoding and reference buffers.

Parameters
[in,out]ctxpointer to the decoder context

Definition at line 586 of file indeo4.c.

Referenced by decode_init().

Variable Documentation

DCTransformPtr* dc_trans

Definition at line 55 of file indeo4.c.

AVCodec ff_indeo4_decoder
Initial value:
= {
.name = "indeo4",
.priv_data_size = sizeof(IVI45DecContext),
.long_name = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 4"),
.capabilities = CODEC_CAP_DR1,
}
av_cold int ff_ivi_decode_close(AVCodecContext *avctx)
Close Indeo5 decoder and clean up its context.
Definition: ivi_common.c:931
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
struct IVI45DecContext IVI45DecContext
int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: ivi_common.c:844
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
static av_cold int decode_init(AVCodecContext *avctx)
Definition: indeo4.c:623
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: crystalhd.c:868

Definition at line 649 of file indeo4.c.

InvTransformPtr* inv_trans

Definition at line 54 of file indeo4.c.

Referenced by decode_band_hdr().

int is_2d_trans

Definition at line 56 of file indeo4.c.

const { ... } transforms[18]
Initial value:
= {
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
{ NULL, NULL, 0 },
}
void ff_ivi_dc_haar_2d(const int32_t *in, int16_t *out, uint32_t pitch, int blk_size)
DC-only two-dimensional inverse Haar transform for Indeo 4.
Definition: ivi_dsp.c:323
void ff_ivi_put_dc_pixel_8x8(const int32_t *in, int16_t *out, uint32_t pitch, int blk_size)
Copy the DC coefficient into the first pixel of the block and zero all others.
Definition: ivi_dsp.c:569
void ff_ivi_put_pixels_8x8(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags)
Copy the pixels into the frame buffer.
Definition: ivi_dsp.c:559
void ff_ivi_row_slant8(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags)
inverse 1D row slant transform
Definition: ivi_dsp.c:480
void ff_ivi_dc_row_slant(const int32_t *in, int16_t *out, uint32_t pitch, int blk_size)
DC-only inverse row slant transform.
Definition: ivi_dsp.c:500
void ff_ivi_inverse_haar_8x8(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags)
two-dimensional inverse Haar 8x8 transform for Indeo 4
Definition: ivi_dsp.c:268
void ff_ivi_dc_col_slant(const int32_t *in, int16_t *out, uint32_t pitch, int blk_size)
DC-only inverse column slant transform.
Definition: ivi_dsp.c:545
void ff_ivi_inverse_slant_8x8(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags)
two-dimensional inverse slant 8x8 transform
Definition: ivi_dsp.c:387
NULL
Definition: eval.c:55
void ff_ivi_inverse_slant_4x4(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags)
two-dimensional inverse slant 4x4 transform
Definition: ivi_dsp.c:427
void ff_ivi_dc_slant_2d(const int32_t *in, int16_t *out, uint32_t pitch, int blk_size)
DC-only two-dimensional inverse slant transform.
Definition: ivi_dsp.c:467
void ff_ivi_col_slant8(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags)
inverse 1D column slant transform
Definition: ivi_dsp.c:518

Referenced by decode_band_hdr().