#include "avcodec.h"
#include "bytestream.h"
#include "roqvideo.h"
Go to the source code of this file.
Functions | |
static void | roqvideo_decode_frame (RoqContext *ri) |
static av_cold int | roq_decode_init (AVCodecContext *avctx) |
static int | roq_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | roq_decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_roq_decoder |
Tim Ferguson For more information about the id RoQ format, visit: http://www.csse.monash.edu.au/~timf/
Definition in file roqvideodec.c.
static av_cold int roq_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 215 of file roqvideodec.c.
static int roq_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
Definition at line 183 of file roqvideodec.c.
static av_cold int roq_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 167 of file roqvideodec.c.
static void roqvideo_decode_frame | ( | RoqContext * | ri | ) | [static] |
Initial value:
{ .name = "roqvideo", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_ROQ, .priv_data_size = sizeof(RoqContext), .init = roq_decode_init, .close = roq_decode_end, .decode = roq_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("id RoQ video"), }
Definition at line 228 of file roqvideodec.c.