Go to the documentation of this file.
23 #include "config_components.h"
44 const AVFrame *pic,
int *got_packet)
49 int pad = (aligned_width - avctx->
width) * 4;
50 uint8_t *srcr_line, *srcg_line, *srcb_line;
57 srcg_line = pic->
data[0];
58 srcb_line = pic->
data[1];
59 srcr_line = pic->
data[2];
63 uint16_t *srcr = (uint16_t *)srcr_line;
64 uint16_t *srcg = (uint16_t *)srcg_line;
65 uint16_t *srcb = (uint16_t *)srcb_line;
66 for (j = 0; j < avctx->
width; j++) {
74 pixel = (
r << 22) | (
g << 12) | (
b << 2);
76 bytestream_put_le32(&dst,
pixel);
78 bytestream_put_be32(&dst,
pixel);
93 #if CONFIG_R210_ENCODER
106 #if CONFIG_R10K_ENCODER
119 #if CONFIG_AVRP_ENCODER
int64_t ff_guess_coded_bitrate(AVCodecContext *avctx)
Get an estimated video bitrate based on frame size, frame rate and coded bits per pixel.
AVPixelFormat
Pixel format.
static av_cold int encode_init(AVCodecContext *avctx)
This structure describes decoded (raw) audio or video data.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
AVCodec p
The public AVCodec.
#define AV_PIX_FMT_GBRP10
#define FF_CODEC_ENCODE_CB(func)
int64_t bit_rate
the average bitrate
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
#define i(width, name, range_min, range_max)
const FFCodec ff_r210_encoder
const FFCodec ff_r10k_encoder
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
const char * name
Name of the codec implementation.
main external API structure.
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
This structure stores compressed data.
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
static enum AVPixelFormat pix_fmt[]
int width
picture width / height.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
const FFCodec ff_avrp_encoder