FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
h264.c File Reference

H.264 / AVC / MPEG-4 part10 codec. More...

#include "libavutil/avassert.h"
#include "libavutil/display.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/stereo3d.h"
#include "libavutil/timer.h"
#include "internal.h"
#include "bytestream.h"
#include "cabac.h"
#include "cabac_functions.h"
#include "error_resilience.h"
#include "avcodec.h"
#include "h264.h"
#include "h2645_parse.h"
#include "h264data.h"
#include "h264chroma.h"
#include "h264_mvpred.h"
#include "golomb.h"
#include "mathops.h"
#include "me_cmp.h"
#include "mpegutils.h"
#include "profiles.h"
#include "rectangle.h"
#include "thread.h"
#include "vdpau_compat.h"

Go to the source code of this file.

Macros

#define UNCHECKED_BITSTREAM_READER   1
 
#define OFFSET(x)   offsetof(H264Context, x)
 
#define VD   AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
 

Functions

static int h264_decode_end (AVCodecContext *avctx)
 
int avpriv_h264_has_num_reorder_frames (AVCodecContext *avctx)
 
static void h264_er_decode_mb (void *opaque, int ref, int mv_dir, int mv_type, int(*mv)[2][4][2], int mb_x, int mb_y, int mb_intra, int mb_skipped)
 
void ff_h264_draw_horiz_band (const H264Context *h, H264SliceContext *sl, int y, int height)
 
void ff_h264_free_tables (H264Context *h)
 
int ff_h264_alloc_tables (H264Context *h)
 Allocate tables. More...
 
int ff_h264_slice_context_init (H264Context *h, H264SliceContext *sl)
 Init context Allocate buffers which are not shared amongst multiple threads. More...
 
static int h264_init_context (AVCodecContext *avctx, H264Context *h)
 
av_cold int ff_h264_decode_init (AVCodecContext *avctx)
 
static void decode_postinit (H264Context *h, int setup_finished)
 Run setup operations that must be run after slice header decoding. More...
 
static void idr (H264Context *h)
 instantaneous decoder refresh. More...
 
void ff_h264_flush_change (H264Context *h)
 
static void flush_dpb (AVCodecContext *avctx)
 
static int get_last_needed_nal (H264Context *h)
 
static void debug_green_metadata (const H264SEIGreenMetaData *gm, void *logctx)
 
static int decode_nal_units (H264Context *h, const uint8_t *buf, int buf_size)
 
static int get_consumed_bytes (int pos, int buf_size)
 Return the number of bytes consumed for building the current frame. More...
 
static int output_frame (H264Context *h, AVFrame *dst, H264Picture *srcp)
 
static int is_extra (const uint8_t *buf, int buf_size)
 
static int h264_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 

Variables

const uint16_t ff_h264_mb_sizes [4] = { 256, 384, 512, 768 }
 
static AVOnce h264_vlc_init = AV_ONCE_INIT
 
static const uint8_t start_code [] = { 0x00, 0x00, 0x01 }
 
static const AVOption h264_options []
 
static const AVClass h264_class
 
AVCodec ff_h264_decoder
 

Detailed Description

H.264 / AVC / MPEG-4 part10 codec.

Author
Michael Niedermayer micha.nosp@m.elni.nosp@m.@gmx..nosp@m.at

Definition in file h264.c.

Macro Definition Documentation

#define UNCHECKED_BITSTREAM_READER   1

Definition at line 28 of file h264.c.

#define OFFSET (   x)    offsetof(H264Context, x)

Definition at line 1387 of file h264.c.

Definition at line 1388 of file h264.c.

Function Documentation

static av_cold int h264_decode_end ( AVCodecContext avctx)
static

Definition at line 359 of file h264.c.

Referenced by ff_h264_decode_init().

int avpriv_h264_has_num_reorder_frames ( AVCodecContext avctx)

Definition at line 60 of file h264.c.

Referenced by has_decode_delay_been_guessed().

static void h264_er_decode_mb ( void opaque,
int  ref,
int  mv_dir,
int  mv_type,
int(*)  mv[2][4][2],
int  mb_x,
int  mb_y,
int  mb_intra,
int  mb_skipped 
)
static

Definition at line 66 of file h264.c.

Referenced by ff_h264_slice_context_init().

void ff_h264_draw_horiz_band ( const H264Context h,
H264SliceContext sl,
int  y,
int  height 
)
void ff_h264_free_tables ( H264Context h)

Definition at line 137 of file h264.c.

Referenced by ff_h264_alloc_tables(), flush_dpb(), h264_decode_end(), and h264_slice_header_init().

int ff_h264_alloc_tables ( H264Context h)

Allocate tables.

needs width/height

Definition at line 180 of file h264.c.

Referenced by h264_slice_header_init().

int ff_h264_slice_context_init ( H264Context h,
H264SliceContext sl 
)

Init context Allocate buffers which are not shared amongst multiple threads.

Definition at line 238 of file h264.c.

Referenced by h264_slice_header_init().

static int h264_init_context ( AVCodecContext avctx,
H264Context h 
)
static

Definition at line 303 of file h264.c.

Referenced by ff_h264_decode_init().

av_cold int ff_h264_decode_init ( AVCodecContext avctx)

Definition at line 393 of file h264.c.

static void decode_postinit ( H264Context h,
int  setup_finished 
)
static

Run setup operations that must be run after slice header decoding.

This includes finding the next displayed frame.

Parameters
hh264 master context
setup_finishedenough NALs have been read that we can call ff_thread_finish_setup()

Definition at line 478 of file h264.c.

Referenced by decode_nal_units(), and h264_decode_frame().

static void idr ( H264Context h)
static

instantaneous decoder refresh.

Definition at line 743 of file h264.c.

Referenced by decode_nal_units(), ff_h264_flush_change(), and h264_probe().

void ff_h264_flush_change ( H264Context h)

Definition at line 756 of file h264.c.

Referenced by ff_h264_decode_init(), ff_h264_decode_slice_header(), and flush_dpb().

static void flush_dpb ( AVCodecContext avctx)
static

Definition at line 785 of file h264.c.

static int get_last_needed_nal ( H264Context h)
static

Definition at line 809 of file h264.c.

Referenced by decode_nal_units().

static void debug_green_metadata ( const H264SEIGreenMetaData gm,
void logctx 
)
static

Definition at line 847 of file h264.c.

Referenced by decode_nal_units().

static int decode_nal_units ( H264Context h,
const uint8_t buf,
int  buf_size 
)
static

< number of NALs that need decoding before the next frame thread starts

Definition at line 875 of file h264.c.

Referenced by h264_decode_frame().

static int get_consumed_bytes ( int  pos,
int  buf_size 
)
static

Return the number of bytes consumed for building the current frame.

Definition at line 1165 of file h264.c.

Referenced by h264_decode_frame().

static int output_frame ( H264Context h,
AVFrame dst,
H264Picture srcp 
)
static
Examples:
transcode_aac.c.

Definition at line 1175 of file h264.c.

Referenced by h264_decode_frame(), load_encode_and_write(), and scale_vaapi_filter_frame().

static int is_extra ( const uint8_t buf,
int  buf_size 
)
static

Definition at line 1209 of file h264.c.

Referenced by h264_decode_frame().

static int h264_decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame,
AVPacket avpkt 
)
static

Definition at line 1231 of file h264.c.

Variable Documentation

const uint16_t ff_h264_mb_sizes[4] = { 256, 384, 512, 768 }

Definition at line 58 of file h264.c.

Referenced by ff_h264_decode_mb_cabac(), ff_h264_decode_mb_cavlc(), and hl_decode_mb().

AVOnce h264_vlc_init = AV_ONCE_INIT
static

Definition at line 391 of file h264.c.

const uint8_t start_code[] = { 0x00, 0x00, 0x01 }
static
const AVOption h264_options[]
static
Initial value:
= {
{"is_avc", "is avc", 0x42, AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, 0},
{"nal_length_size", "nal_length_size", 0x42, AV_OPT_TYPE_INT, {.i64 = 0}, 0, 4, 0},
{ "enable_er", "Enable error resilience on damaged frames (unsafe)", OFFSET(enable_er), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VD },
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
Definition: h264.c:1387
#define VD
Definition: h264.c:1388

Definition at line 1389 of file h264.c.

const AVClass h264_class
static
Initial value:
= {
.class_name = "H264 Decoder",
.item_name = av_default_item_name,
.option = h264_options,
}
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
av_default_item_name
static const AVOption h264_options[]
Definition: h264.c:1389

Definition at line 1396 of file h264.c.

AVCodec ff_h264_decoder
Initial value:
= {
.name = "h264",
.long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
.priv_data_size = sizeof(H264Context),
.close = h264_decode_end,
.capabilities = AV_CODEC_CAP_DR1 |
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
.init_thread_copy = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
.priv_class = &h264_class,
}
static const AVClass h264_class
Definition: h264.c:1396
static void flush(AVCodecContext *avctx)
static int init_thread_copy(AVCodecContext *avctx)
Definition: tta.c:390
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
av_cold int ff_h264_decode_init(AVCodecContext *avctx)
Definition: h264.c:393
H264Context.
Definition: h264.h:456
#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: avcodec.h:981
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static void flush_dpb(AVCodecContext *avctx)
Definition: h264.c:785
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:1019
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
Definition: internal.h:215
static int h264_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: h264.c:1231
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: avcodec.h:1023
int ff_h264_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
Definition: h264_slice.c:297
static int h264_decode_end(AVCodecContext *avctx)
Definition: h264.c:359
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:722
const AVProfile ff_h264_profiles[]
Definition: profiles.c:49
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:956

Definition at line 1403 of file h264.c.