#include "libavutil/intreadwrite.h"#include "libavutil/imgutils.h"#include "avcodec.h"Go to the source code of this file.
Data Structures | |
| struct | DPXContext |
Defines | |
| #define | write16(p, value) |
| #define | write32(p, value) |
| #define | HEADER_SIZE 1664 |
Functions | |
| static av_cold int | encode_init (AVCodecContext *avctx) |
| static void | encode_rgb48_10bit (AVCodecContext *avctx, const AVPicture *pic, uint8_t *dst) |
| static int | encode_frame (AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data) |
Variables | |
| AVCodec | ff_dpx_encoder |
| #define HEADER_SIZE 1664 |
| #define write16 | ( | p, | |||
| value | ) |
| #define write32 | ( | p, | |||
| value | ) |
Value:
Definition at line 70 of file dpxenc.c.
Referenced by encode_frame(), and encode_rgb48_10bit().
| static int encode_frame | ( | AVCodecContext * | avctx, | |
| unsigned char * | buf, | |||
| int | buf_size, | |||
| void * | data | |||
| ) | [static] |
| static av_cold int encode_init | ( | AVCodecContext * | avctx | ) | [static] |
| static void encode_rgb48_10bit | ( | AVCodecContext * | avctx, | |
| const AVPicture * | pic, | |||
| uint8_t * | dst | |||
| ) | [static] |
Initial value:
{
.name = "dpx",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_DPX,
.priv_data_size = sizeof(DPXContext),
.init = encode_init,
.encode = encode_frame,
.pix_fmts = (const enum PixelFormat[]){
PIX_FMT_RGB24,
PIX_FMT_RGBA,
PIX_FMT_RGB48LE,
PIX_FMT_RGB48BE,
PIX_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("DPX image"),
}
1.5.8