Go to the documentation of this file.
40 const AVFrame *pic,
int *got_packet)
45 int pad = (aligned_width - avctx->
width) * 4;
46 uint8_t *srcr_line, *srcg_line, *srcb_line;
52 srcg_line = pic->
data[0];
53 srcb_line = pic->
data[1];
54 srcr_line = pic->
data[2];
58 uint16_t *srcr = (uint16_t *)srcr_line;
59 uint16_t *srcg = (uint16_t *)srcg_line;
60 uint16_t *srcb = (uint16_t *)srcb_line;
61 for (j = 0; j < avctx->
width; j++) {
69 pixel = (
r << 22) | (
g << 12) | (
b << 2);
71 bytestream_put_le32(&dst,
pixel);
73 bytestream_put_be32(&dst,
pixel);
88 #if CONFIG_R210_ENCODER
100 #if CONFIG_R10K_ENCODER
112 #if CONFIG_AVRP_ENCODER
#define AV_CODEC_CAP_INTRA_ONLY
Codec is intra only.
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.
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
#define AV_PIX_FMT_GBRP10
int64_t bit_rate
the average bitrate
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int flags
A combination of AV_PKT_FLAG values.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
#define i(width, name, range_min, range_max)
const char * name
Name of the codec implementation.
main external API structure.
This structure stores compressed data.
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
int width
picture width / height.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
Check AVPacket size and/or allocate data.