|
FFmpeg
|
#include "libavutil/avassert.h"#include "libavutil/imgutils.h"#include "internal.h"#include "cabac.h"#include "cabac_functions.h"#include "error_resilience.h"#include "avcodec.h"#include "h264dec.h"#include "h264data.h"#include "h264chroma.h"#include "h264_mvpred.h"#include "mathops.h"#include "mpegutils.h"#include "rectangle.h"#include "thread.h"Go to the source code of this file.
Functions | |
| void | ff_h264_unref_picture (H264Context *h, H264Picture *pic) |
| static void | h264_copy_picture_params (H264Picture *dst, const H264Picture *src) |
| int | ff_h264_ref_picture (H264Context *h, H264Picture *dst, H264Picture *src) |
| int | ff_h264_replace_picture (H264Context *h, H264Picture *dst, const H264Picture *src) |
| void | ff_h264_set_erpic (ERPicture *dst, H264Picture *src) |
| int | ff_h264_field_end (H264Context *h, H264SliceContext *sl, int in_setup) |
H.264 / AVC / MPEG-4 part10 codec.
Definition in file h264_picture.c.
| void ff_h264_unref_picture | ( | H264Context * | h, |
| H264Picture * | pic | ||
| ) |
Definition at line 44 of file h264_picture.c.
Referenced by alloc_picture(), ff_h264_flush_change(), ff_h264_ref_picture(), ff_h264_remove_all_refs(), ff_h264_replace_picture(), h264_decode_flush(), h264_decode_frame(), h264_frame_start(), h264_free_pic(), and release_unused_pictures().
|
static |
Definition at line 67 of file h264_picture.c.
Referenced by ff_h264_ref_picture(), and ff_h264_replace_picture().
| int ff_h264_ref_picture | ( | H264Context * | h, |
| H264Picture * | dst, | ||
| H264Picture * | src | ||
| ) |
Definition at line 100 of file h264_picture.c.
Referenced by ff_h264_remove_all_refs(), and h264_frame_start().
| int ff_h264_replace_picture | ( | H264Context * | h, |
| H264Picture * | dst, | ||
| const H264Picture * | src | ||
| ) |
Definition at line 155 of file h264_picture.c.
Referenced by ff_h264_update_thread_context().
| void ff_h264_set_erpic | ( | ERPicture * | dst, |
| H264Picture * | src | ||
| ) |
Definition at line 208 of file h264_picture.c.
Referenced by decode_nal_units(), and h264_frame_start().
| int ff_h264_field_end | ( | H264Context * | h, |
| H264SliceContext * | sl, | ||
| int | in_setup | ||
| ) |
Definition at line 231 of file h264_picture.c.
Referenced by ff_h264_queue_decode_slice(), and h264_decode_frame().
1.8.17