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 const 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 const uint16_t *srcr = (
const uint16_t *)srcr_line;
64 const uint16_t *srcg = (
const uint16_t *)srcg_line;
65 const uint16_t *srcb = (
const 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
105 #if CONFIG_R10K_ENCODER
117 #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)
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
#define CODEC_LONG_NAME(str)
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.
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
const char * name
Name of the codec implementation.
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
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