#include <limits.h>
#include "global.h"
#include "erc_api.h"
#include "header.h"
#include "image.h"
#include "mbuffer.h"
#include "memalloc.h"
#include "output.h"
Go to the source code of this file.
Defines | |
#define | MAX_LIST_SIZE 33 |
Functions | |
static void | insert_picture_in_dpb (ImageParameters *p_Img, FrameStore *fs, StorablePicture *p) |
static void | output_one_frame_from_dpb (ImageParameters *p_Img) |
static void | get_smallest_poc (DecodedPictureBuffer *p_Dpb, int *poc, int *pos) |
static void | gen_field_ref_ids (StorablePicture *p) |
static int | remove_unused_frame_from_dpb (ImageParameters *p_Img, DecodedPictureBuffer *p_Dpb) |
static int | is_used_for_reference (FrameStore *fs) |
static int | is_short_term_reference (FrameStore *fs) |
static int | is_long_term_reference (FrameStore *fs) |
void | dump_dpb (DecodedPictureBuffer *p_Dpb) |
int | getDpbSize (seq_parameter_set_rbsp_t *active_sps) |
void | check_num_ref (DecodedPictureBuffer *p_Dpb) |
void | init_dpb (ImageParameters *p_Img) |
void | free_dpb (ImageParameters *p_Img) |
FrameStore * | alloc_frame_store (void) |
void | alloc_pic_motion (ImageParameters *p_Img, PicMotionParams *motion, int size_y, int size_x) |
StorablePicture * | alloc_storable_picture (ImageParameters *p_Img, PictureStructure structure, int size_x, int size_y, int size_x_cr, int size_y_cr) |
void | free_frame_store (ImageParameters *p_Img, FrameStore *f) |
void | free_pic_motion (PicMotionParams *motion) |
void | free_storable_picture (ImageParameters *p_Img, StorablePicture *p) |
static void | unmark_for_reference (FrameStore *fs) |
static void | unmark_for_long_term_reference (FrameStore *fs) |
static int | compare_pic_by_pic_num_desc (const void *arg1, const void *arg2) |
static int | compare_pic_by_lt_pic_num_asc (const void *arg1, const void *arg2) |
static int | compare_fs_by_frame_num_desc (const void *arg1, const void *arg2) |
static int | compare_fs_by_lt_pic_idx_asc (const void *arg1, const void *arg2) |
static int | compare_pic_by_poc_asc (const void *arg1, const void *arg2) |
static int | compare_pic_by_poc_desc (const void *arg1, const void *arg2) |
static int | compare_fs_by_poc_asc (const void *arg1, const void *arg2) |
static int | compare_fs_by_poc_desc (const void *arg1, const void *arg2) |
int | is_short_ref (StorablePicture *s) |
int | is_long_ref (StorablePicture *s) |
static void | gen_pic_list_from_frame_list (PictureStructure currStructure, FrameStore **fs_list, int list_idx, StorablePicture **list, char *list_size, int long_term) |
void | init_lists (Slice *currSlice) |
void | init_mbaff_lists (ImageParameters *p_Img) |
static StorablePicture * | get_short_term_pic (ImageParameters *p_Img, int picNum) |
static StorablePicture * | get_long_term_pic (ImageParameters *p_Img, int LongtermPicNum) |
static void | reorder_short_term (ImageParameters *p_Img, StorablePicture **RefPicListX, int num_ref_idx_lX_active_minus1, int picNumLX, int *refIdxLX) |
static void | reorder_long_term (ImageParameters *p_Img, StorablePicture **RefPicListX, int num_ref_idx_lX_active_minus1, int LongTermPicNum, int *refIdxLX) |
void | reorder_ref_pic_list (ImageParameters *p_Img, StorablePicture **list, char *list_size, int num_ref_idx_lX_active_minus1, int *reordering_of_pic_nums_idc, int *abs_diff_pic_num_minus1, int *long_term_pic_idx) |
void | update_ref_list (DecodedPictureBuffer *p_Dpb) |
void | update_ltref_list (DecodedPictureBuffer *p_Dpb) |
static void | idr_memory_management (ImageParameters *p_Img, StorablePicture *p) |
static void | sliding_window_memory_management (DecodedPictureBuffer *p_Dpb, StorablePicture *p) |
static int | get_pic_num_x (StorablePicture *p, int difference_of_pic_nums_minus1) |
static void | mm_unmark_short_term_for_reference (DecodedPictureBuffer *p_Dpb, StorablePicture *p, int difference_of_pic_nums_minus1) |
static void | mm_unmark_long_term_for_reference (DecodedPictureBuffer *p_Dpb, StorablePicture *p, int long_term_pic_num) |
static void | unmark_long_term_frame_for_reference_by_frame_idx (DecodedPictureBuffer *p_Dpb, int long_term_frame_idx) |
static void | unmark_long_term_field_for_reference_by_frame_idx (ImageParameters *p_Img, PictureStructure structure, int long_term_frame_idx, int mark_current, unsigned curr_frame_num, int curr_pic_num) |
static void | mark_pic_long_term (DecodedPictureBuffer *p_Dpb, StorablePicture *p, int long_term_frame_idx, int picNumX) |
static void | mm_assign_long_term_frame_idx (ImageParameters *p_Img, StorablePicture *p, int difference_of_pic_nums_minus1, int long_term_frame_idx) |
void | mm_update_max_long_term_frame_idx (DecodedPictureBuffer *p_Dpb, int max_long_term_frame_idx_plus1) |
static void | mm_unmark_all_long_term_for_reference (DecodedPictureBuffer *p_Dpb) |
static void | mm_unmark_all_short_term_for_reference (DecodedPictureBuffer *p_Dpb) |
static void | mm_mark_current_picture_long_term (ImageParameters *p_Img, DecodedPictureBuffer *p_Dpb, StorablePicture *p, int long_term_frame_idx) |
static void | adaptive_memory_management (ImageParameters *p_Img, StorablePicture *p) |
void | store_picture_in_dpb (ImageParameters *p_Img, StorablePicture *p) |
static void | remove_frame_from_dpb (ImageParameters *p_Img, int pos) |
void | flush_dpb (ImageParameters *p_Img) |
void | dpb_split_field (ImageParameters *p_Img, FrameStore *fs) |
void | dpb_combine_field_yuv (ImageParameters *p_Img, FrameStore *fs) |
void | dpb_combine_field (ImageParameters *p_Img, FrameStore *fs) |
void | alloc_ref_pic_list_reordering_buffer (Slice *currSlice) |
void | free_ref_pic_list_reordering_buffer (Slice *currSlice) |
void | fill_frame_num_gap (ImageParameters *p_Img) |
void | alloc_motion_params (MotionParams *ftype, int size_y, int size_x) |
ColocatedParams * | alloc_colocated (int size_x, int size_y, int mb_adaptive_frame_field_flag) |
void | free_colocated (ColocatedParams *p) |
void | compute_colocated (Slice *currSlice, ColocatedParams *p, StorablePicture **listX[6]) |
void | compute_colocated_JV (Slice *currSlice, ColocatedParams *p, StorablePicture **listX[6]) |
void | copy_storable_param_JV (ImageParameters *p_Img, PicMotionParams *JVplane, PicMotionParams *motion) |
Definition in file mbuffer.c.
static void adaptive_memory_management | ( | ImageParameters * | p_Img, | |
StorablePicture * | p | |||
) | [static] |
Perform Adaptive memory control decoded reference picture marking process.
Definition at line 2218 of file mbuffer.c.
References check_num_ref(), storable_picture::dec_ref_pic_marking_buffer, error(), flush_dpb(), mm_assign_long_term_frame_idx(), mm_mark_current_picture_long_term(), mm_unmark_all_long_term_for_reference(), mm_unmark_all_short_term_for_reference(), mm_unmark_long_term_for_reference(), mm_unmark_short_term_for_reference(), mm_update_max_long_term_frame_idx(), update_ltref_list(), and update_ref_list().
Referenced by store_picture_in_dpb().
ColocatedParams* alloc_colocated | ( | int | size_x, | |
int | size_y, | |||
int | mb_adaptive_frame_field_flag | |||
) |
Allocate co-located memory.
size_x | horizontal luma size | |
size_y | vertical luma size | |
mb_adaptive_frame_field_flag | flag that indicates macroblock adaptive frame/field coding |
Definition at line 3451 of file mbuffer.c.
References alloc_motion_params(), and no_mem_exit().
Referenced by read_new_slice().
FrameStore* alloc_frame_store | ( | void | ) |
Allocate memory for decoded picture buffer frame stores an initialize with sane values.
Definition at line 334 of file mbuffer.c.
References frame_store::is_long_term, frame_store::is_orig_reference, frame_store::is_reference, frame_store::is_used, and no_mem_exit().
Referenced by idr_memory_management(), init_dpb(), and init_out_buffer().
void alloc_motion_params | ( | MotionParams * | ftype, | |
int | size_y, | |||
int | size_x | |||
) |
Allocate motion parameter memory for colocated structure.
Definition at line 3427 of file mbuffer.c.
References get_mem2D(), get_mem3D(), get_mem3Dint64(), get_mem4Dshort(), motion_params::mv, motion_params::ref_idx, and motion_params::ref_pic_id.
Referenced by alloc_colocated().
void alloc_ref_pic_list_reordering_buffer | ( | Slice * | currSlice | ) |
Allocate memory for buffering of reference picture reordering commands.
Definition at line 3292 of file mbuffer.c.
References no_mem_exit(), slice::num_ref_idx_l0_active, and slice::num_ref_idx_l1_active.
Referenced by ref_pic_list_reordering().
StorablePicture* alloc_storable_picture | ( | ImageParameters * | p_Img, | |
PictureStructure | structure, | |||
int | size_x, | |||
int | size_y, | |||
int | size_x_cr, | |||
int | size_y_cr | |||
) |
Allocate memory for a stored picture.
p_Img | image decoding parameters for current picture | |
structure | picture structure | |
size_x | horizontal luma size | |
size_y | vertical luma size | |
size_x_cr | horizontal chroma size | |
size_y_cr | vertical chroma size |
Definition at line 403 of file mbuffer.c.
References storable_picture::dec_ref_pic_marking_buffer, get_mem2Dpel(), get_mem2Dshort(), get_mem3Dpel(), storable_picture::imgUV, storable_picture::imgY, storable_picture::JVmotion, storable_picture::motion, no_mem_exit(), storable_picture::slice_id, and YUV400.
Referenced by conceal_lost_frames(), conceal_non_ref_pics(), dpb_combine_field_yuv(), dpb_split_field(), fill_frame_num_gap(), init_dpb(), init_picture(), write_lost_ref_after_idr(), and write_unpaired_field().
void check_num_ref | ( | DecodedPictureBuffer * | p_Dpb | ) |
Check then number of frames marked "used for reference" and break if maximum is exceeded.
Definition at line 184 of file mbuffer.c.
References error().
Referenced by adaptive_memory_management(), and store_picture_in_dpb().
static int compare_fs_by_frame_num_desc | ( | const void * | arg1, | |
const void * | arg2 | |||
) | [inline, static] |
compares two frame stores by pic_num for qsort in descending order
Definition at line 749 of file mbuffer.c.
Referenced by init_lists().
static int compare_fs_by_lt_pic_idx_asc | ( | const void * | arg1, | |
const void * | arg2 | |||
) | [inline, static] |
compares two frame stores by lt_pic_num for qsort in descending order
Definition at line 769 of file mbuffer.c.
Referenced by init_lists().
static int compare_fs_by_poc_asc | ( | const void * | arg1, | |
const void * | arg2 | |||
) | [inline, static] |
compares two frame stores by poc for qsort in ascending order
Definition at line 832 of file mbuffer.c.
Referenced by init_lists().
static int compare_fs_by_poc_desc | ( | const void * | arg1, | |
const void * | arg2 | |||
) | [inline, static] |
compares two frame stores by poc for qsort in descending order
Definition at line 853 of file mbuffer.c.
Referenced by init_lists().
static int compare_pic_by_lt_pic_num_asc | ( | const void * | arg1, | |
const void * | arg2 | |||
) | [inline, static] |
compares two stored pictures by picture number for qsort in descending order
Definition at line 729 of file mbuffer.c.
Referenced by init_lists().
static int compare_pic_by_pic_num_desc | ( | const void * | arg1, | |
const void * | arg2 | |||
) | [inline, static] |
compares two stored pictures by picture number for qsort in descending order
Definition at line 709 of file mbuffer.c.
Referenced by init_lists().
static int compare_pic_by_poc_asc | ( | const void * | arg1, | |
const void * | arg2 | |||
) | [inline, static] |
compares two stored pictures by poc for qsort in ascending order
Definition at line 790 of file mbuffer.c.
Referenced by init_lists().
static int compare_pic_by_poc_desc | ( | const void * | arg1, | |
const void * | arg2 | |||
) | [inline, static] |
compares two stored pictures by poc for qsort in descending order
Definition at line 811 of file mbuffer.c.
Referenced by init_lists().
void compute_colocated | ( | Slice * | currSlice, | |
ColocatedParams * | p, | |||
StorablePicture ** | listX[6] | |||
) |
Compute co-located motion info.
Assign frame buffers for field MBs Check whether we should use top or bottom field mvs. Depending on the assigned poc values.
Generate field MVs from Frame MVs
Do nothing if macroblock as field coded in MB-AFF
Use inference flag to remap mvs/references Frame with field co-located
Definition at line 3536 of file mbuffer.c.
References slice::direct_spatial_mv_pred_flag, pic_motion_params::field_frame, storable_picture::motion, pic_motion_params::mv, motion_params::mv, pic_motion_params::ref_id, pic_motion_params::ref_idx, motion_params::ref_idx, and motion_params::ref_pic_id.
Referenced by decode_one_slice().
void compute_colocated_JV | ( | Slice * | currSlice, | |
ColocatedParams * | p, | |||
StorablePicture ** | listX[6] | |||
) |
Compute co-located motion info for 4:4:4 Independent mode.
Assign frame buffers for field MBs Check whether we should use top or bottom field mvs. Depending on the assigned poc values.
Generate field MVs from Frame MVs
Do nothing if macroblock as field coded in MB-AFF
Use inference flag to remap mvs/references Frame with field co-located
Use inference flag to remap mvs/references
Definition at line 3972 of file mbuffer.c.
References slice::direct_spatial_mv_pred_flag, pic_motion_params::field_frame, storable_picture::JVmotion, storable_picture::motion, pic_motion_params::mv, motion_params::mv, pic_motion_params::ref_id, pic_motion_params::ref_idx, motion_params::ref_idx, and motion_params::ref_pic_id.
Referenced by decode_one_slice().
void dpb_combine_field | ( | ImageParameters * | p_Img, | |
FrameStore * | fs | |||
) |
Generate a frame from top and bottom fields.
Use inference flag to remap mvs/references
Generate Frame parameters from field information.
association with id already known for fields.
need to make association with frames
need to make association with frames
Definition at line 3217 of file mbuffer.c.
References dpb_combine_field_yuv(), pic_motion_params::field_frame, storable_picture::motion, pic_motion_params::mv, pic_motion_params::ref_id, pic_motion_params::ref_idx, and storable_picture::slice_id.
Referenced by insert_picture_in_dpb().
void dpb_combine_field_yuv | ( | ImageParameters * | p_Img, | |
FrameStore * | fs | |||
) |
Generate a frame from top and bottom fields, YUV components and display information only.
Definition at line 3158 of file mbuffer.c.
References alloc_storable_picture(), storable_picture::imgUV, and storable_picture::imgY.
Referenced by direct_output(), dpb_combine_field(), and write_unpaired_field().
void dpb_split_field | ( | ImageParameters * | p_Img, | |
FrameStore * | fs | |||
) |
Extract top field from a frame.
association with id already known for fields.
need to make association with frames
Generate field MVs from Frame MVs
Definition at line 2910 of file mbuffer.c.
References alloc_storable_picture(), pic_motion_params::field_frame, storable_picture::imgUV, storable_picture::imgY, pic_motion_params::mb_field, storable_picture::motion, pic_motion_params::mv, pic_motion_params::ref_id, pic_motion_params::ref_idx, and storable_picture::slice_id.
Referenced by insert_picture_in_dpb().
void dump_dpb | ( | DecodedPictureBuffer * | p_Dpb | ) |
Print out list of pictures in DPB. Used for debug purposes.
Definition at line 51 of file mbuffer.c.
References frame_store::is_long_term, frame_store::is_reference, and frame_store::is_used.
Referenced by store_picture_in_dpb().
void fill_frame_num_gap | ( | ImageParameters * | p_Img | ) |
Tian Dong June 13, 2002, Modifed on July 30, 2003.
If a gap in frame_num is found, try to fill the gap
p_Img |
Definition at line 3370 of file mbuffer.c.
References alloc_storable_picture(), decode_poc(), and store_picture_in_dpb().
Referenced by init_picture().
void flush_dpb | ( | ImageParameters * | p_Img | ) |
All stored picture are output. Should be called to empty the buffer.
Definition at line 2856 of file mbuffer.c.
References conceal_non_ref_pics(), output_one_frame_from_dpb(), remove_unused_frame_from_dpb(), and unmark_for_reference().
Referenced by activate_sps(), adaptive_memory_management(), conceal_lost_frames(), error(), idr_memory_management(), and main().
void free_colocated | ( | ColocatedParams * | p | ) |
Free co-located memory.
p | Picture to be freed |
Definition at line 3485 of file mbuffer.c.
References free_mem2D(), free_mem3D(), free_mem3Dint64(), free_mem4Dshort(), motion_params::mv, motion_params::ref_idx, and motion_params::ref_pic_id.
Referenced by exit_slice(), and read_new_slice().
void free_dpb | ( | ImageParameters * | p_Img | ) |
Free memory for decoded picture buffer.
Definition at line 285 of file mbuffer.c.
References free_frame_store(), and free_storable_picture().
Referenced by init_dpb(), and main().
void free_frame_store | ( | ImageParameters * | p_Img, | |
FrameStore * | f | |||
) |
Free frame store memory.
p_Img | image decoding parameters for current picture | |
f | FrameStore to be freed |
Definition at line 490 of file mbuffer.c.
References free_storable_picture().
Referenced by free_dpb(), idr_memory_management(), and uninit_out_buffer().
void free_ref_pic_list_reordering_buffer | ( | Slice * | currSlice | ) |
void free_storable_picture | ( | ImageParameters * | p_Img, | |
StorablePicture * | p | |||
) |
Free picture memory.
p_Img | image decoding parameters for current picture | |
p | Picture to be freed |
Definition at line 564 of file mbuffer.c.
References free_mem2Dpel(), free_mem2Dshort(), free_mem3Dpel(), storable_picture::imgUV, storable_picture::imgY, storable_picture::JVmotion, storable_picture::motion, storable_picture::slice_id, and storable_picture::tone_mapping_lut.
Referenced by direct_output(), flush_direct_output(), free_dpb(), free_frame_store(), make_frame_picture_JV(), and remove_frame_from_dpb().
static void gen_field_ref_ids | ( | StorablePicture * | p | ) | [static] |
Generate Frame parameters from field information.
association with id already known for fields.
Definition at line 2886 of file mbuffer.c.
References pic_motion_params::field_frame, storable_picture::motion, pic_motion_params::ref_id, pic_motion_params::ref_idx, and storable_picture::slice_id.
Referenced by insert_picture_in_dpb().
static void gen_pic_list_from_frame_list | ( | PictureStructure | currStructure, | |
FrameStore ** | fs_list, | |||
int | list_idx, | |||
StorablePicture ** | list, | |||
char * | list_size, | |||
int | long_term | |||
) | [static] |
Generates a alternating field list from a given FrameStore list.
Definition at line 900 of file mbuffer.c.
References is_long_ref(), and is_short_ref().
Referenced by init_lists().
static StorablePicture* get_long_term_pic | ( | ImageParameters * | p_Img, | |
int | LongtermPicNum | |||
) | [static] |
Returns short term pic with given LongtermPicNum.
Definition at line 1434 of file mbuffer.c.
References frame_store::is_reference.
Referenced by reorder_long_term().
static int get_pic_num_x | ( | StorablePicture * | p, | |
int | difference_of_pic_nums_minus1 | |||
) | [static] |
Calculate picNumX.
Definition at line 1733 of file mbuffer.c.
Referenced by mm_assign_long_term_frame_idx(), and mm_unmark_short_term_for_reference().
static StorablePicture* get_short_term_pic | ( | ImageParameters * | p_Img, | |
int | picNum | |||
) | [static] |
Returns short term pic with given picNum.
Definition at line 1400 of file mbuffer.c.
References frame_store::is_reference.
Referenced by reorder_short_term().
static void get_smallest_poc | ( | DecodedPictureBuffer * | p_Dpb, | |
int * | poc, | |||
int * | pos | |||
) | [static] |
find smallest POC in the DPB.
Definition at line 2750 of file mbuffer.c.
References error().
Referenced by output_one_frame_from_dpb(), and store_picture_in_dpb().
int getDpbSize | ( | seq_parameter_set_rbsp_t * | active_sps | ) |
Returns the size of the dpb depending on level and picture size.
Definition at line 97 of file mbuffer.c.
References error().
Referenced by init_dpb().
static void idr_memory_management | ( | ImageParameters * | p_Img, | |
StorablePicture * | p | |||
) | [static] |
Perform Memory management for idr pictures.
Definition at line 1649 of file mbuffer.c.
References alloc_frame_store(), flush_dpb(), free_frame_store(), update_ltref_list(), and update_ref_list().
Referenced by store_picture_in_dpb().
void init_dpb | ( | ImageParameters * | p_Img | ) |
Allocate memory for decoded picture buffer and initialize with sane values.
Definition at line 200 of file mbuffer.c.
References alloc_frame_store(), alloc_storable_picture(), error(), free_dpb(), getDpbSize(), and no_mem_exit().
Referenced by activate_sps().
void init_lists | ( | Slice * | currSlice | ) |
Initialize p_Img->listX[0] and list 1 depending on current slice type.
KS use >= for error concealment
Definition at line 990 of file mbuffer.c.
References compare_fs_by_frame_num_desc(), compare_fs_by_lt_pic_idx_asc(), compare_fs_by_poc_asc(), compare_fs_by_poc_desc(), compare_pic_by_lt_pic_num_asc(), compare_pic_by_pic_num_desc(), compare_pic_by_poc_asc(), compare_pic_by_poc_desc(), gen_pic_list_from_frame_list(), frame_store::is_long_term, frame_store::is_reference, frame_store::is_used, no_mem_exit(), slice::num_ref_idx_l0_active, slice::num_ref_idx_l1_active, slice::slice_type, and slice::structure.
Referenced by copy_to_conceal(), and read_new_slice().
void init_mbaff_lists | ( | ImageParameters * | p_Img | ) |
Initialize listX[2..5] from lists 0 and 1 listX[2]: list0 for current_field==top listX[3]: list1 for current_field==top listX[4]: list0 for current_field==bottom listX[5]: list1 for current_field==bottom.
Definition at line 1360 of file mbuffer.c.
Referenced by read_new_slice().
static void insert_picture_in_dpb | ( | ImageParameters * | p_Img, | |
FrameStore * | fs, | |||
StorablePicture * | p | |||
) | [static] |
Insert the picture into the DPB. A free DPB position is necessary for frames, .
p_Img | image decoding parameters for current picture | |
fs | FrameStore into which the picture will be inserted | |
p | StorablePicture to be inserted |
Definition at line 2476 of file mbuffer.c.
References calculate_frame_no(), dpb_combine_field(), dpb_split_field(), find_snr(), gen_field_ref_ids(), frame_store::is_long_term, frame_store::is_orig_reference, frame_store::is_reference, and frame_store::is_used.
Referenced by store_picture_in_dpb().
int is_long_ref | ( | StorablePicture * | s | ) |
returns true, if picture is long term reference picture
Definition at line 887 of file mbuffer.c.
Referenced by gen_pic_list_from_frame_list().
static int is_long_term_reference | ( | FrameStore * | fs | ) | [static] |
Check if one of the frames/fields in frame store is used for short-term reference.
Definition at line 2655 of file mbuffer.c.
References frame_store::is_used.
Referenced by update_ltref_list().
int is_short_ref | ( | StorablePicture * | s | ) |
returns true, if picture is short term reference picture
Definition at line 874 of file mbuffer.c.
Referenced by gen_pic_list_from_frame_list().
static int is_short_term_reference | ( | FrameStore * | fs | ) | [static] |
Check if one of the frames/fields in frame store is used for short-term reference.
Definition at line 2613 of file mbuffer.c.
References frame_store::is_used.
Referenced by update_ref_list().
static int is_used_for_reference | ( | FrameStore * | fs | ) | [static] |
Check if one of the frames/fields in frame store is used for reference.
Definition at line 2567 of file mbuffer.c.
References frame_store::is_reference, and frame_store::is_used.
Referenced by output_one_frame_from_dpb(), and remove_unused_frame_from_dpb().
static void mark_pic_long_term | ( | DecodedPictureBuffer * | p_Dpb, | |
StorablePicture * | p, | |||
int | long_term_frame_idx, | |||
int | picNumX | |||
) | [static] |
mark a picture as long-term reference
Definition at line 1985 of file mbuffer.c.
References frame_store::is_long_term, and frame_store::is_reference.
Referenced by mm_assign_long_term_frame_idx().
static void mm_assign_long_term_frame_idx | ( | ImageParameters * | p_Img, | |
StorablePicture * | p, | |||
int | difference_of_pic_nums_minus1, | |||
int | long_term_frame_idx | |||
) | [static] |
Assign a long term frame index to a short term picture.
Definition at line 2091 of file mbuffer.c.
References error(), get_pic_num_x(), frame_store::is_reference, mark_pic_long_term(), unmark_long_term_field_for_reference_by_frame_idx(), and unmark_long_term_frame_for_reference_by_frame_idx().
Referenced by adaptive_memory_management().
static void mm_mark_current_picture_long_term | ( | ImageParameters * | p_Img, | |
DecodedPictureBuffer * | p_Dpb, | |||
StorablePicture * | p, | |||
int | long_term_frame_idx | |||
) | [static] |
Mark the current picture used for long term reference.
Definition at line 2195 of file mbuffer.c.
References unmark_long_term_field_for_reference_by_frame_idx(), and unmark_long_term_frame_for_reference_by_frame_idx().
Referenced by adaptive_memory_management().
static void mm_unmark_all_long_term_for_reference | ( | DecodedPictureBuffer * | p_Dpb | ) | [static] |
Mark all long term reference pictures unused for reference.
Definition at line 2167 of file mbuffer.c.
References mm_update_max_long_term_frame_idx().
Referenced by adaptive_memory_management().
static void mm_unmark_all_short_term_for_reference | ( | DecodedPictureBuffer * | p_Dpb | ) | [static] |
Mark all short term reference pictures unused for reference.
Definition at line 2178 of file mbuffer.c.
References unmark_for_reference(), and update_ref_list().
Referenced by adaptive_memory_management().
static void mm_unmark_long_term_for_reference | ( | DecodedPictureBuffer * | p_Dpb, | |
StorablePicture * | p, | |||
int | long_term_pic_num | |||
) | [static] |
Adaptive Memory Management: Mark long term picture unused.
Definition at line 1812 of file mbuffer.c.
References frame_store::is_long_term, frame_store::is_reference, frame_store::is_used, and unmark_for_long_term_reference().
Referenced by adaptive_memory_management().
static void mm_unmark_short_term_for_reference | ( | DecodedPictureBuffer * | p_Dpb, | |
StorablePicture * | p, | |||
int | difference_of_pic_nums_minus1 | |||
) | [static] |
Adaptive Memory Management: Mark short term picture unused.
Definition at line 1752 of file mbuffer.c.
References get_pic_num_x(), frame_store::is_long_term, frame_store::is_reference, frame_store::is_used, and unmark_for_reference().
Referenced by adaptive_memory_management().
void mm_update_max_long_term_frame_idx | ( | DecodedPictureBuffer * | p_Dpb, | |
int | max_long_term_frame_idx_plus1 | |||
) |
Set new max long_term_frame_idx.
Definition at line 2144 of file mbuffer.c.
References unmark_for_long_term_reference().
Referenced by adaptive_memory_management(), and mm_unmark_all_long_term_for_reference().
static void output_one_frame_from_dpb | ( | ImageParameters * | p_Img | ) | [static] |
Output one picture stored in the DPB.
Definition at line 2799 of file mbuffer.c.
References error(), get_smallest_poc(), is_used_for_reference(), remove_frame_from_dpb(), write_lost_non_ref_pic(), write_lost_ref_after_idr(), and write_stored_frame().
Referenced by flush_dpb(), and store_picture_in_dpb().
static void remove_frame_from_dpb | ( | ImageParameters * | p_Img, | |
int | pos | |||
) | [static] |
remove one frame from DPB
Definition at line 2697 of file mbuffer.c.
References error(), free_storable_picture(), frame_store::is_long_term, frame_store::is_orig_reference, frame_store::is_reference, and frame_store::is_used.
Referenced by output_one_frame_from_dpb(), and remove_unused_frame_from_dpb().
static int remove_unused_frame_from_dpb | ( | ImageParameters * | p_Img, | |
DecodedPictureBuffer * | p_Dpb | |||
) | [static] |
Remove a picture from DPB which is no longer needed.
Definition at line 2777 of file mbuffer.c.
References is_used_for_reference(), and remove_frame_from_dpb().
Referenced by flush_dpb(), and store_picture_in_dpb().
static void reorder_long_term | ( | ImageParameters * | p_Img, | |
StorablePicture ** | RefPicListX, | |||
int | num_ref_idx_lX_active_minus1, | |||
int | LongTermPicNum, | |||
int * | refIdxLX | |||
) | [static] |
Reordering process for long-term reference pictures.
Definition at line 1497 of file mbuffer.c.
References get_long_term_pic().
Referenced by reorder_ref_pic_list().
void reorder_ref_pic_list | ( | ImageParameters * | p_Img, | |
StorablePicture ** | list, | |||
char * | list_size, | |||
int | num_ref_idx_lX_active_minus1, | |||
int * | reordering_of_pic_nums_idc, | |||
int * | abs_diff_pic_num_minus1, | |||
int * | long_term_pic_idx | |||
) |
Reordering process for reference picture lists.
Definition at line 1526 of file mbuffer.c.
References error(), reorder_long_term(), and reorder_short_term().
static void reorder_short_term | ( | ImageParameters * | p_Img, | |
StorablePicture ** | RefPicListX, | |||
int | num_ref_idx_lX_active_minus1, | |||
int | picNumLX, | |||
int * | refIdxLX | |||
) | [static] |
Reordering process for short-term reference pictures.
Definition at line 1467 of file mbuffer.c.
References get_short_term_pic().
Referenced by reorder_ref_pic_list().
static void sliding_window_memory_management | ( | DecodedPictureBuffer * | p_Dpb, | |
StorablePicture * | p | |||
) | [static] |
Perform Sliding window decoded reference picture marking process.
Definition at line 1705 of file mbuffer.c.
References frame_store::is_long_term, frame_store::is_reference, unmark_for_reference(), and update_ref_list().
Referenced by store_picture_in_dpb().
void store_picture_in_dpb | ( | ImageParameters * | p_Img, | |
StorablePicture * | p | |||
) |
Store a picture in DPB. This includes cheking for space in DPB and flushing frames. If we received a frame, we need to check for a new store, if we got a field, check if it's the second field of an already allocated store.
p_Img | image decoding parameters for current picture | |
p | Picture to be stored |
Definition at line 2322 of file mbuffer.c.
References adaptive_memory_management(), check_num_ref(), conceal_non_ref_pics(), direct_output(), dump_dpb(), error(), get_smallest_poc(), idr_memory_management(), insert_picture_in_dpb(), frame_store::is_orig_reference, frame_store::is_reference, frame_store::is_used, output_one_frame_from_dpb(), remove_unused_frame_from_dpb(), sliding_window_memory_management(), sliding_window_poc_management(), update_ltref_list(), and update_ref_list().
Referenced by conceal_lost_frames(), exit_picture(), and fill_frame_num_gap().
static void unmark_for_long_term_reference | ( | FrameStore * | fs | ) | [static] |
mark FrameStore unused for reference and reset long term flags
Definition at line 665 of file mbuffer.c.
References frame_store::is_long_term, frame_store::is_reference, and frame_store::is_used.
Referenced by mm_unmark_long_term_for_reference(), mm_update_max_long_term_frame_idx(), unmark_long_term_field_for_reference_by_frame_idx(), and unmark_long_term_frame_for_reference_by_frame_idx().
static void unmark_for_reference | ( | FrameStore * | fs | ) | [static] |
mark FrameStore unused for reference
Definition at line 612 of file mbuffer.c.
References frame_store::is_reference, frame_store::is_used, and storable_picture::motion.
Referenced by flush_dpb(), mm_unmark_all_short_term_for_reference(), mm_unmark_short_term_for_reference(), and sliding_window_memory_management().
static void unmark_long_term_field_for_reference_by_frame_idx | ( | ImageParameters * | p_Img, | |
PictureStructure | structure, | |||
int | long_term_frame_idx, | |||
int | mark_current, | |||
unsigned | curr_frame_num, | |||
int | curr_pic_num | |||
) | [static] |
Mark a long-term reference field unused for reference only if it's not the complementary field of the picture indicated by picNumX.
Definition at line 1889 of file mbuffer.c.
References frame_store::is_long_term, and unmark_for_long_term_reference().
Referenced by mm_assign_long_term_frame_idx(), and mm_mark_current_picture_long_term().
static void unmark_long_term_frame_for_reference_by_frame_idx | ( | DecodedPictureBuffer * | p_Dpb, | |
int | long_term_frame_idx | |||
) | [static] |
Mark a long-term reference frame or complementary field pair unused for referemce.
Definition at line 1872 of file mbuffer.c.
References unmark_for_long_term_reference().
Referenced by mm_assign_long_term_frame_idx(), and mm_mark_current_picture_long_term().
void update_ltref_list | ( | DecodedPictureBuffer * | p_Dpb | ) |
Update the list of frame stores that contain long-term reference frames/fields.
Definition at line 1623 of file mbuffer.c.
References is_long_term_reference().
Referenced by adaptive_memory_management(), idr_memory_management(), and store_picture_in_dpb().
void update_ref_list | ( | DecodedPictureBuffer * | p_Dpb | ) |
Update the list of frame stores that contain reference frames/fields.
Definition at line 1595 of file mbuffer.c.
References is_short_term_reference().
Referenced by adaptive_memory_management(), idr_memory_management(), mm_unmark_all_short_term_for_reference(), sliding_window_memory_management(), and store_picture_in_dpb().