FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
v210enc.c File Reference
#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"
#include "v210enc.h"

Go to the source code of this file.

Macros

#define CLIP(v)   av_clip(v, 4, 1019)
 
#define CLIP8(v)   av_clip(v, 1, 254)
 
#define WRITE_PIXELS(a, b, c)
 
#define WRITE_PIXELS8(a, b, c)
 

Functions

static void v210_planar_pack_8_c (const uint8_t *y, const uint8_t *u, const uint8_t *v, uint8_t *dst, ptrdiff_t width)
 
static void v210_planar_pack_10_c (const uint16_t *y, const uint16_t *u, const uint16_t *v, uint8_t *dst, ptrdiff_t width)
 
av_cold void ff_v210enc_init (V210EncContext *s)
 
static av_cold int encode_init (AVCodecContext *avctx)
 
static int encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
 

Variables

AVCodec ff_v210_encoder
 

Macro Definition Documentation

#define CLIP (   v)    av_clip(v, 4, 1019)

Definition at line 29 of file v210enc.c.

Referenced by encode_frame().

#define CLIP8 (   v)    av_clip(v, 1, 254)

Definition at line 30 of file v210enc.c.

Referenced by encode_frame().

#define WRITE_PIXELS (   a,
  b,
  c 
)
Value:
do { \
val = CLIP(*a++); \
val |= (CLIP(*b++) << 10) | \
(CLIP(*c++) << 20); \
AV_WL32(dst, val); \
dst += 4; \
} while (0)
const char const char void * val
Definition: avisynth_c.h:771
#define CLIP(v)
Definition: v210enc.c:29
const char * b
Definition: vf_curves.c:116
static double c[64]
#define AV_WL32(p, v)
Definition: intreadwrite.h:426

Definition at line 32 of file v210enc.c.

Referenced by encode_frame(), and v210_planar_pack_10_c().

#define WRITE_PIXELS8 (   a,
  b,
  c 
)
Value:
do { \
val = (CLIP8(*a++) << 2); \
val |= (CLIP8(*b++) << 12) | \
(CLIP8(*c++) << 22); \
AV_WL32(dst, val); \
dst += 4; \
} while (0)
const char const char void * val
Definition: avisynth_c.h:771
const char * b
Definition: vf_curves.c:116
static double c[64]
#define CLIP8(v)
Definition: v210enc.c:30
#define AV_WL32(p, v)
Definition: intreadwrite.h:426

Definition at line 41 of file v210enc.c.

Referenced by encode_frame(), and v210_planar_pack_8_c().

Function Documentation

static void v210_planar_pack_8_c ( const uint8_t y,
const uint8_t u,
const uint8_t v,
uint8_t dst,
ptrdiff_t  width 
)
static

Definition at line 50 of file v210enc.c.

Referenced by ff_v210enc_init().

static void v210_planar_pack_10_c ( const uint16_t *  y,
const uint16_t *  u,
const uint16_t *  v,
uint8_t dst,
ptrdiff_t  width 
)
static

Definition at line 70 of file v210enc.c.

Referenced by ff_v210enc_init().

av_cold void ff_v210enc_init ( V210EncContext s)

Definition at line 85 of file v210enc.c.

Referenced by checkasm_check_v210enc(), and encode_init().

static av_cold int encode_init ( AVCodecContext avctx)
static

Definition at line 96 of file v210enc.c.

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

Definition at line 119 of file v210enc.c.

Variable Documentation

AVCodec ff_v210_encoder
Initial value:
= {
.name = "v210",
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
.priv_data_size = sizeof(V210EncContext),
.encode2 = encode_frame,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:70
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
Definition: v210enc.c:119
static av_cold int encode_init(AVCodecContext *avctx)
Definition: v210enc.c:96
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:266
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:380
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64

Definition at line 258 of file v210enc.c.