FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
vda_h264.c File Reference
#include <CoreFoundation/CFDictionary.h>
#include <CoreFoundation/CFNumber.h>
#include <CoreFoundation/CFData.h>
#include "vda.h"
#include "libavutil/avutil.h"
#include "h264.h"

Go to the source code of this file.

Data Structures

struct  vda_buffer
 

Functions

static void vda_decoder_callback (void *vda_hw_ctx, CFDictionaryRef user_info, OSStatus status, uint32_t infoFlags, CVImageBufferRef image_buffer)
 
static int vda_sync_decode (struct vda_context *vda_ctx)
 
static int vda_h264_start_frame (AVCodecContext *avctx, av_unused const uint8_t *buffer, av_unused uint32_t size)
 
static int vda_h264_decode_slice (AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
 
static void vda_h264_release_buffer (void *opaque, uint8_t *data)
 
static int vda_h264_end_frame (AVCodecContext *avctx)
 
int ff_vda_create_decoder (struct vda_context *vda_ctx, uint8_t *extradata, int extradata_size)
 Create the video decoder.
 
int ff_vda_destroy_decoder (struct vda_context *vda_ctx)
 Destroy the video decoder.
 

Variables

AVHWAccel ff_h264_vda_hwaccel
 

Function Documentation

static void vda_decoder_callback ( void vda_hw_ctx,
CFDictionaryRef  user_info,
OSStatus  status,
uint32_t  infoFlags,
CVImageBufferRef  image_buffer 
)
static

Definition at line 36 of file vda_h264.c.

Referenced by ff_vda_create_decoder().

static int vda_sync_decode ( struct vda_context vda_ctx)
static

< kVDADecoderFlush_emitFrames

Definition at line 53 of file vda_h264.c.

Referenced by vda_h264_end_frame().

static int vda_h264_start_frame ( AVCodecContext avctx,
av_unused const uint8_t buffer,
av_unused uint32_t  size 
)
static

Definition at line 74 of file vda_h264.c.

static int vda_h264_decode_slice ( AVCodecContext avctx,
const uint8_t buffer,
uint32_t  size 
)
static

Definition at line 88 of file vda_h264.c.

static void vda_h264_release_buffer ( void opaque,
uint8_t data 
)
static

Definition at line 114 of file vda_h264.c.

Referenced by vda_h264_end_frame().

static int vda_h264_end_frame ( AVCodecContext avctx)
static

Definition at line 121 of file vda_h264.c.

Variable Documentation

AVHWAccel ff_h264_vda_hwaccel
Initial value:
= {
.name = "h264_vda",
.pix_fmt = AV_PIX_FMT_VDA_VLD,
.start_frame = vda_h264_start_frame,
.decode_slice = vda_h264_decode_slice,
.end_frame = vda_h264_end_frame,
}

Definition at line 255 of file vda_h264.c.