#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
struct | SUNRASTContext |
Defines | |
#define | RT_OLD 0 |
#define | RT_STANDARD 1 |
#define | RT_BYTE_ENCODED 2 |
#define | RT_FORMAT_RGB 3 |
#define | RT_FORMAT_TIFF 4 |
#define | RT_FORMAT_IFF 5 |
Functions | |
static av_cold int | sunrast_init (AVCodecContext *avctx) |
static int | sunrast_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | sunrast_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_sunrast_decoder |
#define RT_BYTE_ENCODED 2 |
#define RT_FORMAT_IFF 5 |
#define RT_FORMAT_RGB 3 |
#define RT_FORMAT_TIFF 4 |
static int sunrast_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int sunrast_end | ( | AVCodecContext * | avctx | ) | [static] |
static av_cold int sunrast_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{ .name = "sunrast", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_SUNRAST, .priv_data_size = sizeof(SUNRASTContext), .init = sunrast_init, .close = sunrast_end, .decode = sunrast_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Sun Rasterfile image"), }