Libav
|
H.264 parameter set handling. More...
#include <stdint.h>
#include "libavutil/buffer.h"
#include "libavutil/pixfmt.h"
#include "libavutil/rational.h"
#include "avcodec.h"
#include "get_bits.h"
#include "h264.h"
Go to the source code of this file.
Data Structures | |
struct | SPS |
Sequence parameter set. More... | |
struct | PPS |
Picture parameter set. More... | |
struct | H264ParamSets |
Macros | |
#define | MAX_SPS_COUNT 32 |
#define | MAX_PPS_COUNT 256 |
Functions | |
int | ff_h264_decode_seq_parameter_set (GetBitContext *gb, AVCodecContext *avctx, H264ParamSets *ps) |
Decode SPS. More... | |
int | ff_h264_decode_picture_parameter_set (GetBitContext *gb, AVCodecContext *avctx, H264ParamSets *ps, int bit_length) |
Decode PPS. More... | |
H.264 parameter set handling.
Definition in file h264_ps.h.
#define MAX_SPS_COUNT 32 |
Definition at line 37 of file h264_ps.h.
Referenced by ff_h264_decode_picture_parameter_set(), ff_h264_decode_seq_parameter_set(), ff_hevc_decode_nal_pps(), ff_hevc_parse_sps(), h264_decode_end(), and hvcc_write().
#define MAX_PPS_COUNT 256 |
Definition at line 38 of file h264_ps.h.
Referenced by ff_h264_decode_picture_parameter_set(), ff_hevc_decode_nal_pps(), h264_decode_end(), h264_slice_header_parse(), hevc_parse_slice_header(), hls_slice_header(), hvcc_write(), and parse_nal_units().
int ff_h264_decode_seq_parameter_set | ( | GetBitContext * | gb, |
AVCodecContext * | avctx, | ||
H264ParamSets * | ps | ||
) |
Decode SPS.
Definition at line 324 of file h264_ps.c.
Referenced by decode_extradata_ps(), decode_nal_units(), and parse_nal_units().
int ff_h264_decode_picture_parameter_set | ( | GetBitContext * | gb, |
AVCodecContext * | avctx, | ||
H264ParamSets * | ps, | ||
int | bit_length | ||
) |
Decode PPS.
Definition at line 672 of file h264_ps.c.
Referenced by decode_extradata_ps(), decode_nal_units(), and parse_nal_units().