FFmpeg
Loading...
Searching...
No Matches
bitpacked_enc.c File Reference
#include "avcodec.h"
#include "codec_internal.h"
#include "encode.h"
#include "internal.h"
#include "put_bits.h"
#include "libavutil/pixdesc.h"

Go to the source code of this file.

Data Structures

struct  BitpackedContext
 

Functions

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

Variables

const FFCodec ff_bitpacked_encoder
 

Function Documentation

◆ encode_yuv422p10()

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

Definition at line 34 of file bitpacked_enc.c.

Referenced by encode_init().

◆ encode_init()

static av_cold int encode_init ( AVCodecContext * avctx)
static

Definition at line 72 of file bitpacked_enc.c.

◆ encode_frame()

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

Definition at line 93 of file bitpacked_enc.c.

Variable Documentation

◆ ff_bitpacked_encoder

const FFCodec ff_bitpacked_encoder
Initial value:
= {
.p.name = "bitpacked",
CODEC_LONG_NAME("Bitpacked"),
.p.type = AVMEDIA_TYPE_VIDEO,
.priv_data_size = sizeof(struct BitpackedContext),
.init = encode_init,
}
static av_cold int encode_init(AVCodecContext *avctx)
Definition asvenc.c:373
#define CODEC_PIXFMTS(...)
#define FF_CODEC_ENCODE_CB(func)
#define CODEC_LONG_NAME(str)
static int encode_frame(OutputFile *of, OutputStream *ost, AVFrame *frame, AVPacket *pkt)
Definition ffmpeg_enc.c:694
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
Definition codec.h:147
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition codec.h:98
@ AV_CODEC_ID_BITPACKED
Definition codec_id.h:276
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define AV_PIX_FMT_YUV422P10
Definition pixfmt.h:546

Definition at line 107 of file bitpacked_enc.c.