FFmpeg
Loading...
Searching...
No Matches
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 void svc_decode_flush (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.

Referenced by svc_decode_flush(), and svc_decode_init().

◆ svc_decode_init()

static av_cold int svc_decode_init ( AVCodecContext * avctx)
static

Definition at line 61 of file libopenh264dec.c.

Referenced by svc_decode_flush().

◆ svc_decode_flush()

static void svc_decode_flush ( AVCodecContext * avctx)
static

Definition at line 55 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 97 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,
.flush = svc_decode_flush,
.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",
}
#define FF_CODEC_CAP_SETS_PKT_DTS
Decoders marked with FF_CODEC_CAP_SETS_PKT_DTS want to set AVFrame.pkt_dts manually.
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#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:79
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_H264
Definition codec_id.h:77
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
static void svc_decode_flush(AVCodecContext *avctx)
static int svc_decode_frame(AVCodecContext *avctx, AVFrame *avframe, int *got_frame, AVPacket *avpkt)
static av_cold int svc_decode_close(AVCodecContext *avctx)
static av_cold int svc_decode_init(AVCodecContext *avctx)

Definition at line 176 of file libopenh264dec.c.