FFmpeg
Data Structures | Functions | Variables
libopenh264dec.c File Reference
#include <wels/codec_api.h>
#include <wels/codec_ver.h>
#include "libavutil/common.h"
#include "libavutil/fifo.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "decode.h"
#include "libopenh264.h"

Go to the source code of this file.

Data Structures

struct  SVCContext
 

Functions

static av_cold int svc_decode_close (AVCodecContext *avctx)
 
static av_cold int svc_decode_init (AVCodecContext *avctx)
 
static int svc_decode_frame (AVCodecContext *avctx, AVFrame *avframe, int *got_frame, AVPacket *avpkt)
 

Variables

const FFCodec ff_libopenh264_decoder
 

Function Documentation

◆ svc_decode_close()

static av_cold int svc_decode_close ( AVCodecContext avctx)
static

Definition at line 41 of file libopenh264dec.c.

◆ svc_decode_init()

static av_cold int svc_decode_init ( AVCodecContext avctx)
static

Definition at line 51 of file libopenh264dec.c.

◆ svc_decode_frame()

static int svc_decode_frame ( AVCodecContext avctx,
AVFrame avframe,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 86 of file libopenh264dec.c.

Variable Documentation

◆ ff_libopenh264_decoder

const FFCodec ff_libopenh264_decoder
Initial value:
= {
.p.name = "libopenh264",
CODEC_LONG_NAME("OpenH264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
.p.type = AVMEDIA_TYPE_VIDEO,
.priv_data_size = sizeof(SVCContext),
.close = svc_decode_close,
.p.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_SETS_PKT_DTS |
.bsfs = "h264_mp4toannexb",
.p.wrapper_name = "libopenh264",
}

Definition at line 156 of file libopenh264dec.c.

SVCContext
Definition: libopenh264dec.c:37
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
svc_decode_init
static av_cold int svc_decode_init(AVCodecContext *avctx)
Definition: libopenh264dec.c:51
svc_decode_frame
static int svc_decode_frame(AVCodecContext *avctx, AVFrame *avframe, int *got_frame, AVPacket *avpkt)
Definition: libopenh264dec.c:86
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:287
AV_CODEC_ID_H264
@ AV_CODEC_ID_H264
Definition: codec_id.h:79
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:365
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
svc_decode_close
static av_cold int svc_decode_close(AVCodecContext *avctx)
Definition: libopenh264dec.c:41
FF_CODEC_CAP_SETS_PKT_DTS
#define FF_CODEC_CAP_SETS_PKT_DTS
Decoders marked with FF_CODEC_CAP_SETS_PKT_DTS want to set AVFrame.pkt_dts manually.
Definition: codec_internal.h:49
AV_CODEC_CAP_DELAY
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: codec.h:76
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201