dpxenc.c File Reference
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "internal.h"
Include dependency graph for dpxenc.c:

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 */
 

Typedefs

typedef struct DPXContext DPXContext
 

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
 

Macro Definition Documentation

#define HEADER_SIZE   1664 /* DPX Generic header */

Referenced by encode_frame().

#define write16 (   p,
  value 
)
Value:
do { \
if (s->big_endian) AV_WB16(p, value); \
else AV_WL16(p, value); \
} while(0)
const char * s
Definition: avisynth_c.h:668
initialize output if(nPeaks >3)%at least 3 peaks in spectrum for trying to find f0 nf0peaks
#define AV_WL16(p, darg)
Definition: intreadwrite.h:250
else[Y, I2]
double value
Definition: eval.c:82
#define AV_WB16(p, darg)
Definition: intreadwrite.h:237
Synth Windw Norm while(pin< pend)%Until the end...%---Analysis x_w

Definition at line 86 of file dpxenc.c.

Referenced by encode_frame(), and encode_gbrp12().

#define write32 (   p,
  value 
)
Value:
do { \
if (s->big_endian) AV_WB32(p, value); \
else AV_WL32(p, value); \
} while(0)
const char * s
Definition: avisynth_c.h:668
initialize output if(nPeaks >3)%at least 3 peaks in spectrum for trying to find f0 nf0peaks
#define AV_WB32(p, darg)
Definition: intreadwrite.h:265
#define AV_WL32(p, darg)
Definition: intreadwrite.h:282
else[Y, I2]
double value
Definition: eval.c:82
Synth Windw Norm while(pin< pend)%Until the end...%---Analysis x_w

Definition at line 92 of file dpxenc.c.

Referenced by encode_frame(), encode_gbrp10(), and encode_rgb48_10bit().

Typedef Documentation

typedef struct DPXContext DPXContext

Function Documentation

static int encode_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame frame,
int *  got_packet 
)
static

Definition at line 176 of file dpxenc.c.

static void encode_gbrp10 ( AVCodecContext avctx,
const AVPicture pic,
uint8_t dst 
)
static

Definition at line 123 of file dpxenc.c.

Referenced by encode_frame().

static void encode_gbrp12 ( AVCodecContext avctx,
const AVPicture pic,
uint16_t *  dst 
)
static

Definition at line 149 of file dpxenc.c.

Referenced by encode_frame().

static av_cold int encode_init ( AVCodecContext avctx)
static

Definition at line 36 of file dpxenc.c.

static void encode_rgb48_10bit ( AVCodecContext avctx,
const AVPicture pic,
uint8_t dst 
)
static

Definition at line 98 of file dpxenc.c.

Referenced by encode_frame().

Variable Documentation

AVCodec ff_dpx_encoder
Initial value:
= {
.name = "dpx",
.priv_data_size = sizeof(DPXContext),
.encode2 = encode_frame,
.pix_fmts = (const enum AVPixelFormat[]){
.long_name = NULL_IF_CONFIG_SMALL("DPX image"),
}
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:70
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
struct DPXContext DPXContext
static av_cold int encode_init(AVCodecContext *avctx)
Definition: dpxenc.c:36
planar GBR 4:4:4 36bpp, little-endian
Definition: pixfmt.h:234
planar GBR 4:4:4 36bpp, big-endian
Definition: pixfmt.h:233
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as lit...
Definition: pixfmt.h:112
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
Definition: pixfmt.h:209
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:97
planar GBR 4:4:4 30bpp, big-endian
Definition: pixfmt.h:171
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as big...
Definition: pixfmt.h:111
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: dpxenc.c:176
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66
planar GBR 4:4:4 30bpp, little-endian
Definition: pixfmt.h:172
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
Definition: pixfmt.h:210

Definition at line 254 of file dpxenc.c.