|
FFmpeg
|
#include "libavutil/common.h"#include "libavutil/intreadwrite.h"#include "libavutil/imgutils.h"#include "avcodec.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | DPXContext |
Macros | |
| #define | write16(p, value) |
| #define | write32(p, value) |
| #define | HEADER_SIZE 1664 /* DPX Generic header */ |
Functions | |
| static av_cold int | encode_init (AVCodecContext *avctx) |
| static void | encode_rgb48_10bit (AVCodecContext *avctx, const AVPicture *pic, uint8_t *dst) |
| static void | encode_gbrp10 (AVCodecContext *avctx, const AVPicture *pic, uint8_t *dst) |
| static void | encode_gbrp12 (AVCodecContext *avctx, const AVPicture *pic, uint16_t *dst) |
| static int | encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) |
Variables | |
| AVCodec | ff_dpx_encoder |
| #define write16 | ( | p, | |
| value | |||
| ) |
Definition at line 68 of file dpxenc.c.
Referenced by encode_frame(), and encode_gbrp12().
| #define write32 | ( | p, | |
| value | |||
| ) |
Definition at line 74 of file dpxenc.c.
Referenced by encode_frame(), encode_gbrp10(), and encode_rgb48_10bit().
| #define HEADER_SIZE 1664 /* DPX Generic header */ |
|
static |
|
static |
Definition at line 80 of file dpxenc.c.
Referenced by encode_frame().
|
static |
Definition at line 105 of file dpxenc.c.
Referenced by encode_frame().
|
static |
Definition at line 131 of file dpxenc.c.
Referenced by encode_frame().
|
static |
| AVCodec ff_dpx_encoder |
1.8.2