Coverage Report

Created: 2025-08-28 06:38

/src/libhevc/decoder/ihevcd_ref_list.c
Line
Count
Source (jump to first uncovered line)
1
/******************************************************************************
2
*
3
* Copyright (C) 2012 Ittiam Systems Pvt Ltd, Bangalore
4
*
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
* you may not use this file except in compliance with the License.
7
* You may obtain a copy of the License at:
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*
17
******************************************************************************/
18
/**
19
*******************************************************************************
20
* @file
21
*  ihevcd_api.c
22
*
23
* @brief
24
*  Contains functions definitions for reference list generation
25
*
26
* @author
27
*  Srinivas T
28
*
29
* @par List of Functions:\
30
* - ihevcd_ref_pic
31
*
32
* @remarks
33
*  None
34
*
35
*******************************************************************************
36
*/
37
38
/*****************************************************************************/
39
/* File Includes                                                             */
40
/*****************************************************************************/
41
#include <stdio.h>
42
#include <stddef.h>
43
#include <stdlib.h>
44
#include <string.h>
45
#include <assert.h>
46
47
#include "ihevc_typedefs.h"
48
#include "iv.h"
49
#include "ivd.h"
50
#include "ihevcd_cxa.h"
51
52
#include "ihevc_defs.h"
53
#include "ihevc_debug.h"
54
#include "ihevc_defs.h"
55
#include "ihevc_macros.h"
56
#include "ihevc_platform_macros.h"
57
#include "ihevc_structs.h"
58
#include "ihevc_buf_mgr.h"
59
#include "ihevc_dpb_mgr.h"
60
61
#include "ihevcd_trace.h"
62
#include "ihevcd_defs.h"
63
#include "ihevc_cabac_tables.h"
64
#include "ihevcd_function_selector.h"
65
#include "ihevcd_structs.h"
66
#include "ihevcd_error.h"
67
#include "ihevcd_nal.h"
68
#include "ihevcd_bitstream.h"
69
#include "ihevcd_debug.h"
70
#include "ihevcd_error.h"
71
72
73
mv_buf_t* ihevcd_mv_mgr_get_poc(buf_mgr_t *ps_mv_buf_mgr, UWORD32 abs_poc)
74
25.2k
{
75
25.2k
    UWORD32 i;
76
25.2k
    mv_buf_t *ps_mv_buf = NULL;
77
78
79
80
67.1k
    for(i = 0; i < ps_mv_buf_mgr->u4_max_buf_cnt; i++)
81
67.1k
    {
82
67.1k
        ps_mv_buf = (mv_buf_t *)ps_mv_buf_mgr->apv_ptr[i];
83
67.1k
        if(ps_mv_buf && (ps_mv_buf->i4_abs_poc == (WORD32)abs_poc))
84
25.2k
        {
85
25.2k
            break;
86
25.2k
        }
87
67.1k
    }
88
89
25.2k
    return ps_mv_buf;
90
25.2k
}
91
92
93
WORD32 ihevcd_ref_list(codec_t *ps_codec, pps_t *ps_pps, sps_t *ps_sps, slice_header_t *ps_slice_hdr)
94
4.87k
{
95
4.87k
    WORD32 i, j;
96
4.87k
    WORD32 st_rps_idx;
97
4.87k
    WORD32 num_neg_pics, num_pos_pics;
98
4.87k
    WORD8 *pi1_used;
99
4.87k
    WORD16 *pi2_delta_poc;
100
4.87k
    UWORD32 u4_max_poc_lsb;
101
4.87k
    pic_buf_t *ps_pic_buf;
102
4.87k
    mv_buf_t *ps_mv_buf;
103
4.87k
    UWORD32 r_idx;
104
105
4.87k
    dpb_mgr_t *ps_dpb_mgr = (dpb_mgr_t *)ps_codec->pv_dpb_mgr;
106
4.87k
    buf_mgr_t *ps_mv_buf_mgr = (buf_mgr_t *)ps_codec->pv_mv_buf_mgr;
107
108
4.87k
    WORD32 ai4_poc_st_curr_before[MAX_DPB_SIZE], ai4_poc_st_foll[MAX_DPB_SIZE], ai4_poc_st_curr_after[MAX_DPB_SIZE];
109
4.87k
    WORD32 ai4_poc_lt_curr[MAX_DPB_SIZE], ai4_poc_lt_foll[MAX_DPB_SIZE];
110
4.87k
    UWORD32 u4_num_st_curr_before, u4_num_st_foll, u4_num_st_curr_after, u4_num_lt_curr, u4_num_lt_foll;
111
4.87k
    UWORD32 u4_num_total_curr;
112
113
4.87k
    WORD8 ai1_curr_delta_poc_msb_present_flag[MAX_DPB_SIZE], ai1_foll_delta_poc_msb_present_flag[MAX_DPB_SIZE];
114
115
4.87k
    pic_buf_t *as_ref_pic_lt_curr[MAX_DPB_SIZE];
116
4.87k
    pic_buf_t *as_ref_pic_lt_foll[MAX_DPB_SIZE];
117
4.87k
    pic_buf_t *as_ref_pic_st_curr_after[MAX_DPB_SIZE];
118
4.87k
    pic_buf_t *as_ref_pic_st_curr_before[MAX_DPB_SIZE];
119
4.87k
    pic_buf_t *as_ref_pic_st_foll[MAX_DPB_SIZE];
120
121
4.87k
    pic_buf_t *as_ref_pic_list_temp0[MAX_DPB_SIZE], *as_ref_pic_list_temp1[MAX_DPB_SIZE];
122
123
4.87k
    UWORD32 u4_num_rps_curr_temp_list0, u4_num_rps_curr_temp_list1;
124
125
4.87k
    WORD32 i4_pic_order_cnt_val;
126
4.87k
    WORD32 i4_poc_lt;
127
4.87k
    UNUSED(as_ref_pic_lt_foll);
128
4.87k
    UNUSED(as_ref_pic_st_foll);
129
4.87k
    UNUSED(ps_pps);
130
131
4.87k
    RETURN_IF_NAL_INFO;
132
133
4.87k
    u4_max_poc_lsb = (1 << ps_sps->i1_log2_max_pic_order_cnt_lsb);
134
135
4.87k
    i4_pic_order_cnt_val = ps_slice_hdr->i4_abs_pic_order_cnt;
136
137
4.87k
    if(1 == ps_slice_hdr->i1_short_term_ref_pic_set_sps_flag)
138
4.83k
    {
139
4.83k
        st_rps_idx = ps_slice_hdr->i1_short_term_ref_pic_set_idx;
140
4.83k
        num_neg_pics = ps_sps->as_stref_picset[st_rps_idx].i1_num_neg_pics;
141
4.83k
        num_pos_pics = ps_sps->as_stref_picset[st_rps_idx].i1_num_pos_pics;
142
4.83k
        pi1_used = ps_sps->as_stref_picset[st_rps_idx].ai1_used;
143
4.83k
        pi2_delta_poc = ps_sps->as_stref_picset[st_rps_idx].ai2_delta_poc;
144
4.83k
    }
145
39
    else
146
39
    {
147
39
        st_rps_idx = ps_sps->i1_num_short_term_ref_pic_sets;
148
39
        num_neg_pics = ps_slice_hdr->s_stref_picset.i1_num_neg_pics;
149
39
        num_pos_pics = ps_slice_hdr->s_stref_picset.i1_num_pos_pics;
150
39
        pi1_used = ps_slice_hdr->s_stref_picset.ai1_used;
151
39
        pi2_delta_poc = ps_slice_hdr->s_stref_picset.ai2_delta_poc;
152
39
    }
153
154
4.87k
    u4_num_st_curr_before = 0;
155
4.87k
    u4_num_st_foll = 0;
156
15.7k
    for(i = 0; i < num_neg_pics; i++)
157
10.8k
    {
158
10.8k
        if(pi1_used[i])
159
10.7k
        {
160
10.7k
            ai4_poc_st_curr_before[u4_num_st_curr_before] = i4_pic_order_cnt_val + pi2_delta_poc[i];
161
10.7k
            u4_num_st_curr_before++;
162
10.7k
        }
163
120
        else
164
120
        {
165
120
            ai4_poc_st_foll[u4_num_st_foll] = i4_pic_order_cnt_val + pi2_delta_poc[i];
166
120
            u4_num_st_foll++;
167
120
        }
168
10.8k
    }
169
4.87k
    u4_num_st_curr_after = 0;
170
12.4k
    for(i = num_neg_pics; i < num_neg_pics + num_pos_pics; i++)
171
7.55k
    {
172
7.55k
        if(pi1_used[i])
173
7.54k
        {
174
7.54k
            ai4_poc_st_curr_after[u4_num_st_curr_after] = i4_pic_order_cnt_val + pi2_delta_poc[i];
175
7.54k
            u4_num_st_curr_after++;
176
7.54k
        }
177
9
        else
178
9
        {
179
9
            ai4_poc_st_foll[u4_num_st_foll] = i4_pic_order_cnt_val + pi2_delta_poc[i];
180
9
            u4_num_st_foll++;
181
9
        }
182
7.55k
    }
183
184
4.87k
    u4_num_lt_curr = 0;
185
4.87k
    u4_num_lt_foll = 0;
186
4.88k
    for(i = 0; i < ps_slice_hdr->i1_num_long_term_sps + ps_slice_hdr->i1_num_long_term_pics; i++)
187
8
    {
188
8
        i4_poc_lt = ps_slice_hdr->ai4_poc_lsb_lt[i];
189
8
        if(ps_slice_hdr->ai1_delta_poc_msb_present_flag[i])
190
4
        {
191
4
            i4_poc_lt += i4_pic_order_cnt_val - ps_slice_hdr->ai1_delta_poc_msb_cycle_lt[i] * (WORD32)u4_max_poc_lsb - ps_slice_hdr->i4_pic_order_cnt_lsb;
192
4
        }
193
194
8
        if(ps_slice_hdr->ai1_used_by_curr_pic_lt_flag[i])
195
8
        {
196
8
            ai4_poc_lt_curr[u4_num_lt_curr] = i4_poc_lt;
197
8
            ai1_curr_delta_poc_msb_present_flag[u4_num_lt_curr] = ps_slice_hdr->ai1_delta_poc_msb_present_flag[i];
198
8
            u4_num_lt_curr++;
199
8
        }
200
0
        else
201
0
        {
202
0
            ai4_poc_lt_foll[u4_num_lt_foll] = i4_poc_lt;
203
0
            ai1_foll_delta_poc_msb_present_flag[u4_num_lt_foll] = ps_slice_hdr->ai1_delta_poc_msb_present_flag[i];
204
0
            u4_num_lt_foll++;
205
0
        }
206
8
    }
207
208
4.87k
    u4_num_total_curr = u4_num_lt_curr + u4_num_st_curr_after + u4_num_st_curr_before;
209
210
    /* Bit stream conformance tests */
211
/*
212
    for(i = 0; i < u4_num_lt_curr; i++)
213
    {
214
        int j;
215
        if(ai1_curr_delta_poc_msb_present_flag[i])
216
        {
217
            for(j = 0; j < u4_num_st_curr_before; j++)
218
            {
219
                ASSERT(ai4_poc_st_curr_before[j] != ai4_poc_lt_curr[i]);
220
            }
221
            for(j = 0; j < u4_num_st_curr_after; j++)
222
            {
223
                ASSERT(ai4_poc_st_curr_after[j] != ai4_poc_lt_curr[i]);
224
            }
225
            for(j = 0; j < u4_num_st_foll; j++)
226
            {
227
                ASSERT(ai4_poc_st_foll[j] != ai4_poc_lt_curr[i]);
228
            }
229
            for(j = 0; j < u4_num_lt_curr; j++)
230
            {
231
                ASSERT((ai4_poc_lt_curr[j] != ai4_poc_lt_curr[i]) || (j == i));
232
            }
233
        }
234
        else
235
        {
236
            for(j = 0; j < u4_num_st_curr_before; j++)
237
            {
238
                ASSERT((ai4_poc_st_curr_before[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_curr[i]);
239
            }
240
            for(j = 0; j < u4_num_st_curr_after; j++)
241
            {
242
                ASSERT((ai4_poc_st_curr_after[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_curr[i]);
243
            }
244
            for(j = 0; j < u4_num_st_foll; j++)
245
            {
246
                ASSERT((ai4_poc_st_foll[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_curr[i]);
247
            }
248
            for(j = 0; j < u4_num_lt_curr; j++)
249
            {
250
                ASSERT(((ai4_poc_lt_curr[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_curr[i]) || (j == i));
251
            }
252
        }
253
    }
254
255
    for(i = 0; i < u4_num_lt_foll; i++)
256
    {
257
        int j;
258
        if(ai1_foll_delta_poc_msb_present_flag[i])
259
        {
260
            for(j = 0; j < u4_num_st_curr_before; j++)
261
            {
262
                ASSERT(ai4_poc_st_curr_before[j] != ai4_poc_lt_foll[i]);
263
            }
264
            for(j = 0; j < u4_num_st_curr_after; j++)
265
            {
266
                ASSERT(ai4_poc_st_curr_after[j] != ai4_poc_lt_foll[i]);
267
            }
268
            for(j = 0; j < u4_num_st_foll; j++)
269
            {
270
                ASSERT(ai4_poc_st_foll[j] != ai4_poc_lt_foll[i]);
271
            }
272
            for(j = 0; j < u4_num_lt_curr; j++)
273
            {
274
                ASSERT(ai4_poc_lt_curr[j] != ai4_poc_lt_foll[i]);
275
            }
276
            for(j = 0; j < u4_num_lt_foll; j++)
277
            {
278
                ASSERT((ai4_poc_lt_foll[j] != ai4_poc_lt_foll[i]) || (j == i));
279
            }
280
        }
281
        else
282
        {
283
            for(j = 0; j < u4_num_st_curr_before; j++)
284
            {
285
                ASSERT((ai4_poc_st_curr_before[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_foll[i]);
286
            }
287
            for(j = 0; j < u4_num_st_curr_after; j++)
288
            {
289
                ASSERT((ai4_poc_st_curr_after[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_foll[i]);
290
            }
291
            for(j = 0; j < u4_num_st_foll; j++)
292
            {
293
                ASSERT((ai4_poc_st_foll[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_foll[i]);
294
            }
295
            for(j = 0; j < u4_num_lt_curr; j++)
296
            {
297
                ASSERT((ai4_poc_lt_curr[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_foll[i]);
298
            }
299
            for(j = 0; j < u4_num_lt_foll; j++)
300
            {
301
                ASSERT(((ai4_poc_lt_foll[j] & (u4_max_poc_lsb - 1)) != ai4_poc_lt_foll[i]) || (j == i));
302
            }
303
        }
304
    }
305
*/
306
307
308
    /* Reference Pic sets creation */
309
310
    /* Set all the DPB buffers to UNUSED_FOR_REF */
311
4.87k
    if(0 == ps_codec->i4_pic_present)
312
657
    {
313
42.7k
        for(i = 0; i < MAX_DPB_BUFS; i++)
314
42.0k
        {
315
42.0k
            if(ps_dpb_mgr->as_dpb_info[i].ps_pic_buf)
316
2.57k
                ps_dpb_mgr->as_dpb_info[i].ps_pic_buf->u1_used_as_ref = UNUSED_FOR_REF;
317
42.0k
        }
318
657
    }
319
320
4.88k
    for(i = 0; i < (WORD32)u4_num_lt_curr; i++)
321
8
    {
322
8
        if(0 == ai1_curr_delta_poc_msb_present_flag[i])
323
4
        {
324
4
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc_lsb(ps_dpb_mgr, ai4_poc_lt_curr[i]);
325
4
            if(NULL != ps_pic_buf)
326
2
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
327
328
4
            as_ref_pic_lt_curr[i] = ps_pic_buf;
329
4
        }
330
4
        else
331
4
        {
332
4
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_lt_curr[i]);
333
4
            if(NULL != ps_pic_buf)
334
0
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
335
336
4
            as_ref_pic_lt_curr[i] = ps_pic_buf;
337
4
        }
338
8
    }
339
340
4.87k
    for(i = 0; i < (WORD32)u4_num_lt_foll; i++)
341
0
    {
342
0
        if(0 == ai1_foll_delta_poc_msb_present_flag[i])
343
0
        {
344
0
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc_lsb(ps_dpb_mgr, ai4_poc_lt_foll[i]);
345
0
            if(NULL != ps_pic_buf)
346
0
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
347
348
0
            as_ref_pic_lt_foll[i] = ps_pic_buf;
349
0
        }
350
0
        else
351
0
        {
352
0
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_lt_foll[i]);
353
0
            if(NULL != ps_pic_buf)
354
0
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
355
356
0
            as_ref_pic_lt_foll[i] = ps_pic_buf;
357
0
        }
358
0
    }
359
360
361
15.6k
    for(i = 0; i < (WORD32)u4_num_st_curr_before; i++)
362
10.7k
    {
363
364
10.7k
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_curr_before[i]);
365
10.7k
        if(NULL != ps_pic_buf)
366
9.42k
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
367
368
10.7k
        as_ref_pic_st_curr_before[i] = ps_pic_buf;
369
10.7k
    }
370
371
12.4k
    for(i = 0; i < (WORD32)u4_num_st_curr_after; i++)
372
7.54k
    {
373
7.54k
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_curr_after[i]);
374
7.54k
        if(NULL != ps_pic_buf)
375
7.20k
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
376
377
7.54k
        as_ref_pic_st_curr_after[i] = ps_pic_buf;
378
7.54k
    }
379
380
5.00k
    for(i = 0; i < (WORD32)u4_num_st_foll; i++)
381
129
    {
382
129
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_foll[i]);
383
129
        if(NULL != ps_pic_buf)
384
70
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
385
386
129
        as_ref_pic_st_foll[i] = ps_pic_buf;
387
129
    }
388
389
    //TODO: Bit stream conformance tests to be included
390
391
4.87k
    u4_num_rps_curr_temp_list0 = (WORD32)u4_num_total_curr > ps_slice_hdr->i1_num_ref_idx_l0_active ? (WORD32)u4_num_total_curr : ps_slice_hdr->i1_num_ref_idx_l0_active;
392
393
4.87k
    r_idx = 0;
394
4.87k
    if((PSLICE == ps_slice_hdr->i1_slice_type) ||
395
4.87k
       (BSLICE == ps_slice_hdr->i1_slice_type))
396
4.84k
    {
397
9.70k
        while(r_idx < u4_num_rps_curr_temp_list0)
398
4.85k
        {
399
15.6k
            for(i = 0; (i < (WORD32)u4_num_st_curr_before) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
400
10.7k
            {
401
10.7k
                if(NULL == as_ref_pic_st_curr_before[i])
402
1.33k
                {
403
1.33k
                    as_ref_pic_st_curr_before[i] = ihevc_dpb_mgr_get_ref_by_nearest_poc(ps_dpb_mgr, ai4_poc_st_curr_before[i]);
404
1.33k
                }
405
10.7k
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_st_curr_before[i];
406
10.7k
            }
407
408
12.4k
            for(i = 0; (i < (WORD32)u4_num_st_curr_after) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
409
7.54k
            {
410
7.54k
                if(NULL == as_ref_pic_st_curr_after[i])
411
344
                {
412
344
                    as_ref_pic_st_curr_after[i] = ihevc_dpb_mgr_get_ref_by_nearest_poc(ps_dpb_mgr, ai4_poc_st_curr_after[i]);
413
344
                }
414
7.54k
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_st_curr_after[i];
415
7.54k
            }
416
417
4.86k
            for(i = 0; (i < (WORD32)u4_num_lt_curr) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
418
8
            {
419
8
                if(NULL == as_ref_pic_lt_curr[i])
420
6
                {
421
6
                    as_ref_pic_lt_curr[i] = ihevc_dpb_mgr_get_ref_by_nearest_poc(ps_dpb_mgr, ai4_poc_lt_curr[i]);
422
6
                }
423
8
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_lt_curr[i];
424
8
            }
425
4.85k
        }
426
427
15.1k
        for(r_idx = 0; (WORD32)r_idx < ps_slice_hdr->i1_num_ref_idx_l0_active; r_idx++)
428
10.3k
        {
429
10.3k
            pic_buf_t *ps_pic_buf;
430
10.3k
            ps_slice_hdr->as_ref_pic_list0[r_idx].pv_pic_buf = ps_slice_hdr->s_rplm.i1_ref_pic_list_modification_flag_l0 ?  (void *)as_ref_pic_list_temp0[ps_slice_hdr->s_rplm.i1_list_entry_l0[r_idx]] :  (void *)as_ref_pic_list_temp0[r_idx];
431
10.3k
            ps_pic_buf = (pic_buf_t *)ps_slice_hdr->as_ref_pic_list0[r_idx].pv_pic_buf;
432
433
10.3k
            if(ps_pic_buf == NULL)
434
58
                return IHEVCD_REF_PIC_NOT_FOUND;
435
436
10.2k
            ps_mv_buf = ihevcd_mv_mgr_get_poc(ps_mv_buf_mgr, ps_pic_buf->i4_abs_poc);
437
10.2k
            ps_slice_hdr->as_ref_pic_list0[r_idx].pv_mv_buf = ps_mv_buf;
438
10.2k
        }
439
440
441
4.78k
        if(ps_slice_hdr->i1_slice_type  == BSLICE)
442
4.78k
        {
443
4.78k
            u4_num_rps_curr_temp_list1 = (WORD32)u4_num_total_curr > ps_slice_hdr->i1_num_ref_idx_l1_active ? (WORD32)u4_num_total_curr : ps_slice_hdr->i1_num_ref_idx_l1_active;
444
445
4.78k
            r_idx = 0;
446
9.57k
            while(r_idx < u4_num_rps_curr_temp_list1)
447
4.78k
            {
448
12.2k
                for(i = 0; (i < (WORD32)u4_num_st_curr_after) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
449
7.47k
                {
450
7.47k
                    if(NULL == as_ref_pic_st_curr_after[i])
451
0
                    {
452
0
                        as_ref_pic_st_curr_after[i] = ihevc_dpb_mgr_get_ref_by_nearest_poc(ps_dpb_mgr, ai4_poc_st_curr_after[i]);
453
0
                    }
454
7.47k
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_st_curr_after[i];
455
7.47k
                }
456
457
15.4k
                for(i = 0; (i < (WORD32)u4_num_st_curr_before) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
458
10.6k
                {
459
10.6k
                    if(NULL == as_ref_pic_st_curr_before[i])
460
0
                    {
461
0
                        as_ref_pic_st_curr_before[i] = ihevc_dpb_mgr_get_ref_by_nearest_poc(ps_dpb_mgr, ai4_poc_st_curr_before[i]);
462
0
                    }
463
10.6k
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_st_curr_before[i];
464
10.6k
                }
465
466
4.78k
                for(i = 0; (i < (WORD32)u4_num_lt_curr) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
467
0
                {
468
0
                    if(NULL == as_ref_pic_lt_curr[i])
469
0
                    {
470
0
                        as_ref_pic_lt_curr[i] = ihevc_dpb_mgr_get_ref_by_nearest_poc(ps_dpb_mgr, ai4_poc_lt_curr[i]);
471
0
                    }
472
0
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_lt_curr[i];
473
0
                }
474
4.78k
            }
475
476
15.0k
            for(r_idx = 0; (WORD32)r_idx < ps_slice_hdr->i1_num_ref_idx_l1_active; r_idx++)
477
10.2k
            {
478
10.2k
                pic_buf_t *ps_pic_buf;
479
10.2k
                ps_slice_hdr->as_ref_pic_list1[r_idx].pv_pic_buf = ps_slice_hdr->s_rplm.i1_ref_pic_list_modification_flag_l1 ?  (void *)as_ref_pic_list_temp1[ps_slice_hdr->s_rplm.i1_list_entry_l1[r_idx]] :  (void *)as_ref_pic_list_temp1[r_idx];
480
10.2k
                ps_pic_buf = (pic_buf_t *)ps_slice_hdr->as_ref_pic_list1[r_idx].pv_pic_buf;
481
482
10.2k
                if(ps_pic_buf == NULL)
483
0
                    return IHEVCD_REF_PIC_NOT_FOUND;
484
485
10.2k
                ps_mv_buf = ihevcd_mv_mgr_get_poc(ps_mv_buf_mgr, ps_pic_buf->i4_abs_poc);
486
10.2k
                ps_slice_hdr->as_ref_pic_list1[r_idx].pv_mv_buf = ps_mv_buf;
487
10.2k
            }
488
4.78k
        }
489
4.78k
    }
490
491
4.81k
    DEBUG_PRINT_REF_LIST_POCS(i4_pic_order_cnt_val, ps_slice_hdr, ps_dpb_mgr, u4_num_st_curr_before, u4_num_st_curr_after, u4_num_st_foll, u4_num_lt_curr, u4_num_lt_foll, ai4_poc_st_curr_before, ai4_poc_st_curr_after, ai4_poc_st_foll, ai4_poc_lt_curr, ai4_poc_lt_foll);
492
    /* Buffers that are still marked as UNUSED_FOR_REF are released from dpb (internally dpb calls release from pic buf manager)*/
493
313k
    for(i = 0; i < MAX_DPB_BUFS; i++)
494
308k
    {
495
308k
        if((ps_dpb_mgr->as_dpb_info[i].ps_pic_buf) && (UNUSED_FOR_REF == ps_dpb_mgr->as_dpb_info[i].ps_pic_buf->u1_used_as_ref))
496
538
        {
497
538
            pic_buf_t *ps_pic_buf = ps_dpb_mgr->as_dpb_info[i].ps_pic_buf;
498
538
            mv_buf_t *ps_mv_buf;
499
500
            /* Long term index is set to MAX_DPB_BUFS to ensure it is not added as LT */
501
538
            ihevc_dpb_mgr_del_ref(ps_dpb_mgr, (buf_mgr_t *)ps_codec->pv_pic_buf_mgr, ps_pic_buf->i4_abs_poc);
502
503
504
            /* Find buffer id of the MV bank corresponding to the buffer being freed (Buffer with POC of u4_abs_poc) */
505
538
            ps_mv_buf = (mv_buf_t *)ps_codec->ps_mv_buf;
506
1.72k
            for(j = 0; j < ps_codec->i4_max_dpb_size; j++)
507
1.72k
            {
508
1.72k
                if(ps_mv_buf && ps_mv_buf->i4_abs_poc == ps_pic_buf->i4_abs_poc)
509
538
                {
510
538
                    ihevc_buf_mgr_release((buf_mgr_t *)ps_codec->pv_mv_buf_mgr, j, BUF_MGR_REF);
511
538
                    break;
512
538
                }
513
1.18k
                ps_mv_buf++;
514
1.18k
            }
515
538
        }
516
517
308k
    }
518
519
4.81k
    return IHEVCD_SUCCESS;
520
4.87k
}