FFmpeg
Loading...
Searching...
No Matches
bitpacked_dec.c File Reference

Bitpacked. More...

#include "avcodec.h"
#include "codec_internal.h"
#include "libavutil/imgutils.h"
#include "thread.h"

Go to the source code of this file.

Data Structures

struct  BitpackedContext
 

Functions

static int bitpacked_decode_uyvy422 (AVCodecContext *avctx, AVFrame *frame, const AVPacket *avpkt)
 
static int bitpacked_decode_yuv422p10 (AVCodecContext *avctx, AVFrame *frame, const AVPacket *avpkt)
 
static av_cold int bitpacked_init_decoder (AVCodecContext *avctx)
 
static int bitpacked_decode (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
 

Variables

const FFCodec ff_bitpacked_decoder
 

Detailed Description

Bitpacked.

Definition in file bitpacked_dec.c.

Function Documentation

◆ bitpacked_decode_uyvy422()

static int bitpacked_decode_uyvy422 ( AVCodecContext * avctx,
AVFrame * frame,
const AVPacket * avpkt )
static

Definition at line 40 of file bitpacked_dec.c.

Referenced by bitpacked_init_decoder().

◆ bitpacked_decode_yuv422p10()

static int bitpacked_decode_yuv422p10 ( AVCodecContext * avctx,
AVFrame * frame,
const AVPacket * avpkt )
static

Definition at line 62 of file bitpacked_dec.c.

Referenced by bitpacked_init_decoder().

◆ bitpacked_init_decoder()

static av_cold int bitpacked_init_decoder ( AVCodecContext * avctx)
static

Definition at line 99 of file bitpacked_dec.c.

◆ bitpacked_decode()

static int bitpacked_decode ( AVCodecContext * avctx,
AVFrame * frame,
int * got_frame,
AVPacket * avpkt )
static

Definition at line 122 of file bitpacked_dec.c.

Variable Documentation

◆ ff_bitpacked_decoder

const FFCodec ff_bitpacked_decoder
Initial value:
= {
.p.name = "bitpacked",
CODEC_LONG_NAME("Bitpacked"),
.p.type = AVMEDIA_TYPE_VIDEO,
.p.capabilities = AV_CODEC_CAP_FRAME_THREADS,
.priv_data_size = sizeof(struct BitpackedContext),
.codec_tags = (const uint32_t []){
MKTAG('U', 'Y', 'V', 'Y'),
},
}
static int bitpacked_decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
static av_cold int bitpacked_init_decoder(AVCodecContext *avctx)
#define FF_CODEC_TAGS_END
FFCodec.codec_tags termination value.
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#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 MKTAG(a, b, c, d)
Definition macros.h:55

Definition at line 138 of file bitpacked_dec.c.