#include <stdio.h>#include <stdlib.h>#include "avcodec.h"#include "libavutil/common.h"#include "libavutil/lzo.h"Go to the source code of this file.
Data Structures | |
| struct | CamStudioContext |
Functions | |
| static void | copy_frame_default (AVFrame *f, const uint8_t *src, int linelen, int height) |
| static void | add_frame_default (AVFrame *f, const uint8_t *src, int linelen, int height) |
| static int | decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
| static av_cold int | decode_init (AVCodecContext *avctx) |
| static av_cold int | decode_end (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_cscd_decoder |
| static av_cold int decode_end | ( | AVCodecContext * | avctx | ) | [static] |
| static int decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) | [static] |
| static av_cold int decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
.name = "camstudio",
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_CSCD,
.priv_data_size = sizeof(CamStudioContext),
.init = decode_init,
.close = decode_end,
.decode = decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("CamStudio"),
}
1.5.8