FFmpeg
Loading...
Searching...
No Matches
roqvideodec.c File Reference

id RoQ Video Decoder by Dr. More...

#include "libavutil/avassert.h"
#include "avcodec.h"
#include "bytestream.h"
#include "codec_internal.h"
#include "decode.h"
#include "roqvideo.h"

Go to the source code of this file.

Functions

static void roqvideo_decode_frame (RoqContext *ri, GetByteContext *gb)
 
static av_cold int roq_decode_init (AVCodecContext *avctx)
 
static int roq_decode_frame (AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt)
 
static av_cold int roq_decode_end (AVCodecContext *avctx)
 

Variables

const FFCodec ff_roq_decoder
 

Detailed Description

id RoQ Video Decoder by Dr.

Tim Ferguson For more information about the id RoQ format, visit: http://www.csse.monash.edu.au/~timf/

Definition in file roqvideodec.c.

Function Documentation

◆ roqvideo_decode_frame()

static void roqvideo_decode_frame ( RoqContext * ri,
GetByteContext * gb )
static

Definition at line 36 of file roqvideodec.c.

Referenced by roq_decode_frame().

◆ roq_decode_init()

static av_cold int roq_decode_init ( AVCodecContext * avctx)
static

Definition at line 168 of file roqvideodec.c.

◆ roq_decode_frame()

static int roq_decode_frame ( AVCodecContext * avctx,
AVFrame * rframe,
int * got_frame,
AVPacket * avpkt )
static

Definition at line 193 of file roqvideodec.c.

◆ roq_decode_end()

static av_cold int roq_decode_end ( AVCodecContext * avctx)
static

Definition at line 225 of file roqvideodec.c.

Variable Documentation

◆ ff_roq_decoder

const FFCodec ff_roq_decoder
Initial value:
= {
.p.name = "roqvideo",
CODEC_LONG_NAME("id RoQ video"),
.p.type = AVMEDIA_TYPE_VIDEO,
.p.id = AV_CODEC_ID_ROQ,
.priv_data_size = sizeof(RoqContext),
.p.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
}
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_ROQ
Definition codec_id.h:88
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
static int roq_decode_frame(AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt)
static av_cold int roq_decode_end(AVCodecContext *avctx)
static av_cold int roq_decode_init(AVCodecContext *avctx)

Definition at line 235 of file roqvideodec.c.