#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#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, const uint8_t *buf, int buf_size) |
| static av_cold int | roq_decode_end (AVCodecContext *avctx) |
Variables | |
| AVCodec | 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 199 of file roqvideodec.c.
| static int roq_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) | [static] |
Definition at line 170 of file roqvideodec.c.
| static av_cold int roq_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 156 of file roqvideodec.c.
| static void roqvideo_decode_frame | ( | RoqContext * | ri | ) | [static] |
Initial value:
{
"roqvideo",
CODEC_TYPE_VIDEO,
CODEC_ID_ROQ,
sizeof(RoqContext),
roq_decode_init,
NULL,
roq_decode_end,
roq_decode_frame,
CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("id RoQ video"),
}
Definition at line 212 of file roqvideodec.c.
1.5.8