Coverage Report

Created: 2025-12-14 06:11

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libhevc/decoder/ihevcd_ref_list.c
Line
Count
Source
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
70.3k
{
75
70.3k
    UWORD32 i;
76
70.3k
    mv_buf_t *ps_mv_buf = NULL;
77
78
79
80
153k
    for(i = 0; i < ps_mv_buf_mgr->u4_max_buf_cnt; i++)
81
153k
    {
82
153k
        ps_mv_buf = (mv_buf_t *)ps_mv_buf_mgr->apv_ptr[i];
83
153k
        if(ps_mv_buf && (ps_mv_buf->i4_abs_poc == (WORD32)abs_poc))
84
70.3k
        {
85
70.3k
            break;
86
70.3k
        }
87
153k
    }
88
89
70.3k
    return ps_mv_buf;
90
70.3k
}
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
15.4k
{
95
15.4k
    WORD32 i, j;
96
15.4k
    WORD32 st_rps_idx;
97
15.4k
    WORD32 num_neg_pics, num_pos_pics;
98
15.4k
    WORD8 *pi1_used;
99
15.4k
    WORD16 *pi2_delta_poc;
100
15.4k
    UWORD32 u4_max_poc_lsb;
101
15.4k
    pic_buf_t *ps_pic_buf;
102
15.4k
    mv_buf_t *ps_mv_buf;
103
15.4k
    UWORD32 r_idx;
104
105
15.4k
    dpb_mgr_t *ps_dpb_mgr = (dpb_mgr_t *)ps_codec->pv_dpb_mgr;
106
15.4k
    buf_mgr_t *ps_mv_buf_mgr = (buf_mgr_t *)ps_codec->pv_mv_buf_mgr;
107
108
15.4k
    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
15.4k
    WORD32 ai4_poc_lt_curr[MAX_DPB_SIZE], ai4_poc_lt_foll[MAX_DPB_SIZE];
110
15.4k
    UWORD32 u4_num_st_curr_before, u4_num_st_foll, u4_num_st_curr_after, u4_num_lt_curr, u4_num_lt_foll;
111
15.4k
    UWORD32 u4_num_total_curr;
112
113
15.4k
    WORD8 ai1_curr_delta_poc_msb_present_flag[MAX_DPB_SIZE], ai1_foll_delta_poc_msb_present_flag[MAX_DPB_SIZE];
114
115
15.4k
    pic_buf_t *as_ref_pic_lt_curr[MAX_DPB_SIZE];
116
15.4k
    pic_buf_t *as_ref_pic_lt_foll[MAX_DPB_SIZE];
117
15.4k
    pic_buf_t *as_ref_pic_st_curr_after[MAX_DPB_SIZE];
118
15.4k
    pic_buf_t *as_ref_pic_st_curr_before[MAX_DPB_SIZE];
119
15.4k
    pic_buf_t *as_ref_pic_st_foll[MAX_DPB_SIZE];
120
121
15.4k
    pic_buf_t *as_ref_pic_list_temp0[MAX_DPB_SIZE], *as_ref_pic_list_temp1[MAX_DPB_SIZE];
122
123
15.4k
    UWORD32 u4_num_rps_curr_temp_list0, u4_num_rps_curr_temp_list1;
124
125
15.4k
    WORD32 i4_pic_order_cnt_val;
126
15.4k
    WORD32 i4_poc_lt;
127
15.4k
    UNUSED(as_ref_pic_lt_foll);
128
15.4k
    UNUSED(as_ref_pic_st_foll);
129
15.4k
    UNUSED(ps_pps);
130
131
15.4k
    RETURN_IF_NAL_INFO;
132
133
15.4k
    u4_max_poc_lsb = (1 << ps_sps->i1_log2_max_pic_order_cnt_lsb);
134
135
15.4k
    i4_pic_order_cnt_val = ps_slice_hdr->i4_abs_pic_order_cnt;
136
137
15.4k
    if(1 == ps_slice_hdr->i1_short_term_ref_pic_set_sps_flag)
138
9.92k
    {
139
9.92k
        st_rps_idx = ps_slice_hdr->i1_short_term_ref_pic_set_idx;
140
9.92k
        num_neg_pics = ps_sps->as_stref_picset[st_rps_idx].i1_num_neg_pics;
141
9.92k
        num_pos_pics = ps_sps->as_stref_picset[st_rps_idx].i1_num_pos_pics;
142
9.92k
        pi1_used = ps_sps->as_stref_picset[st_rps_idx].ai1_used;
143
9.92k
        pi2_delta_poc = ps_sps->as_stref_picset[st_rps_idx].ai2_delta_poc;
144
9.92k
    }
145
5.51k
    else
146
5.51k
    {
147
5.51k
        st_rps_idx = ps_sps->i1_num_short_term_ref_pic_sets;
148
5.51k
        num_neg_pics = ps_slice_hdr->s_stref_picset.i1_num_neg_pics;
149
5.51k
        num_pos_pics = ps_slice_hdr->s_stref_picset.i1_num_pos_pics;
150
5.51k
        pi1_used = ps_slice_hdr->s_stref_picset.ai1_used;
151
5.51k
        pi2_delta_poc = ps_slice_hdr->s_stref_picset.ai2_delta_poc;
152
5.51k
    }
153
154
15.4k
    u4_num_st_curr_before = 0;
155
15.4k
    u4_num_st_foll = 0;
156
45.4k
    for(i = 0; i < num_neg_pics; i++)
157
30.0k
    {
158
30.0k
        if(pi1_used[i])
159
28.6k
        {
160
28.6k
            ai4_poc_st_curr_before[u4_num_st_curr_before] = i4_pic_order_cnt_val + pi2_delta_poc[i];
161
28.6k
            u4_num_st_curr_before++;
162
28.6k
        }
163
1.42k
        else
164
1.42k
        {
165
1.42k
            ai4_poc_st_foll[u4_num_st_foll] = i4_pic_order_cnt_val + pi2_delta_poc[i];
166
1.42k
            u4_num_st_foll++;
167
1.42k
        }
168
30.0k
    }
169
15.4k
    u4_num_st_curr_after = 0;
170
35.7k
    for(i = num_neg_pics; i < num_neg_pics + num_pos_pics; i++)
171
20.3k
    {
172
20.3k
        if(pi1_used[i])
173
20.1k
        {
174
20.1k
            ai4_poc_st_curr_after[u4_num_st_curr_after] = i4_pic_order_cnt_val + pi2_delta_poc[i];
175
20.1k
            u4_num_st_curr_after++;
176
20.1k
        }
177
222
        else
178
222
        {
179
222
            ai4_poc_st_foll[u4_num_st_foll] = i4_pic_order_cnt_val + pi2_delta_poc[i];
180
222
            u4_num_st_foll++;
181
222
        }
182
20.3k
    }
183
184
15.4k
    u4_num_lt_curr = 0;
185
15.4k
    u4_num_lt_foll = 0;
186
19.4k
    for(i = 0; i < ps_slice_hdr->i1_num_long_term_sps + ps_slice_hdr->i1_num_long_term_pics; i++)
187
3.97k
    {
188
3.97k
        i4_poc_lt = ps_slice_hdr->ai4_poc_lsb_lt[i];
189
3.97k
        if(ps_slice_hdr->ai1_delta_poc_msb_present_flag[i])
190
1.22k
        {
191
1.22k
            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
1.22k
        }
193
194
3.97k
        if(ps_slice_hdr->ai1_used_by_curr_pic_lt_flag[i])
195
3.37k
        {
196
3.37k
            ai4_poc_lt_curr[u4_num_lt_curr] = i4_poc_lt;
197
3.37k
            ai1_curr_delta_poc_msb_present_flag[u4_num_lt_curr] = ps_slice_hdr->ai1_delta_poc_msb_present_flag[i];
198
3.37k
            u4_num_lt_curr++;
199
3.37k
        }
200
604
        else
201
604
        {
202
604
            ai4_poc_lt_foll[u4_num_lt_foll] = i4_poc_lt;
203
604
            ai1_foll_delta_poc_msb_present_flag[u4_num_lt_foll] = ps_slice_hdr->ai1_delta_poc_msb_present_flag[i];
204
604
            u4_num_lt_foll++;
205
604
        }
206
3.97k
    }
207
208
15.4k
    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
15.4k
    if(0 == ps_codec->i4_pic_present)
312
5.22k
    {
313
339k
        for(i = 0; i < MAX_DPB_BUFS; i++)
314
334k
        {
315
334k
            if(ps_dpb_mgr->as_dpb_info[i].ps_pic_buf)
316
13.9k
                ps_dpb_mgr->as_dpb_info[i].ps_pic_buf->u1_used_as_ref = UNUSED_FOR_REF;
317
334k
        }
318
5.22k
    }
319
320
18.8k
    for(i = 0; i < (WORD32)u4_num_lt_curr; i++)
321
3.37k
    {
322
3.37k
        if(0 == ai1_curr_delta_poc_msb_present_flag[i])
323
2.29k
        {
324
2.29k
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc_lsb(ps_dpb_mgr, ai4_poc_lt_curr[i]);
325
2.29k
            if(NULL != ps_pic_buf)
326
1.00k
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
327
328
2.29k
            as_ref_pic_lt_curr[i] = ps_pic_buf;
329
2.29k
        }
330
1.08k
        else
331
1.08k
        {
332
1.08k
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_lt_curr[i]);
333
1.08k
            if(NULL != ps_pic_buf)
334
10
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
335
336
1.08k
            as_ref_pic_lt_curr[i] = ps_pic_buf;
337
1.08k
        }
338
3.37k
    }
339
340
16.0k
    for(i = 0; i < (WORD32)u4_num_lt_foll; i++)
341
604
    {
342
604
        if(0 == ai1_foll_delta_poc_msb_present_flag[i])
343
459
        {
344
459
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc_lsb(ps_dpb_mgr, ai4_poc_lt_foll[i]);
345
459
            if(NULL != ps_pic_buf)
346
63
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
347
348
459
            as_ref_pic_lt_foll[i] = ps_pic_buf;
349
459
        }
350
145
        else
351
145
        {
352
145
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_lt_foll[i]);
353
145
            if(NULL != ps_pic_buf)
354
0
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
355
356
145
            as_ref_pic_lt_foll[i] = ps_pic_buf;
357
145
        }
358
604
    }
359
360
361
44.0k
    for(i = 0; i < (WORD32)u4_num_st_curr_before; i++)
362
28.6k
    {
363
364
28.6k
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_curr_before[i]);
365
28.6k
        if(NULL != ps_pic_buf)
366
20.6k
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
367
368
28.6k
        as_ref_pic_st_curr_before[i] = ps_pic_buf;
369
28.6k
    }
370
371
35.5k
    for(i = 0; i < (WORD32)u4_num_st_curr_after; i++)
372
20.1k
    {
373
20.1k
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_curr_after[i]);
374
20.1k
        if(NULL != ps_pic_buf)
375
16.5k
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
376
377
20.1k
        as_ref_pic_st_curr_after[i] = ps_pic_buf;
378
20.1k
    }
379
380
17.0k
    for(i = 0; i < (WORD32)u4_num_st_foll; i++)
381
1.64k
    {
382
1.64k
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_foll[i]);
383
1.64k
        if(NULL != ps_pic_buf)
384
137
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
385
386
1.64k
        as_ref_pic_st_foll[i] = ps_pic_buf;
387
1.64k
    }
388
389
    //TODO: Bit stream conformance tests to be included
390
391
15.4k
    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
15.4k
    r_idx = 0;
394
15.4k
    if((PSLICE == ps_slice_hdr->i1_slice_type) ||
395
14.9k
       (BSLICE == ps_slice_hdr->i1_slice_type))
396
14.2k
    {
397
28.7k
        while(r_idx < u4_num_rps_curr_temp_list0)
398
14.4k
        {
399
43.1k
            for(i = 0; (i < (WORD32)u4_num_st_curr_before) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
400
28.6k
            {
401
28.6k
                if(NULL == as_ref_pic_st_curr_before[i])
402
7.76k
                {
403
7.76k
                    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
7.76k
                }
405
28.6k
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_st_curr_before[i];
406
28.6k
            }
407
408
34.5k
            for(i = 0; (i < (WORD32)u4_num_st_curr_after) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
409
20.0k
            {
410
20.0k
                if(NULL == as_ref_pic_st_curr_after[i])
411
3.50k
                {
412
3.50k
                    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
3.50k
                }
414
20.0k
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_st_curr_after[i];
415
20.0k
            }
416
417
17.3k
            for(i = 0; (i < (WORD32)u4_num_lt_curr) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
418
2.83k
            {
419
2.83k
                if(NULL == as_ref_pic_lt_curr[i])
420
1.77k
                {
421
1.77k
                    as_ref_pic_lt_curr[i] = ihevc_dpb_mgr_get_ref_by_nearest_poc(ps_dpb_mgr, ai4_poc_lt_curr[i]);
422
1.77k
                }
423
2.83k
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_lt_curr[i];
424
2.83k
            }
425
14.4k
        }
426
427
43.1k
        for(r_idx = 0; (WORD32)r_idx < ps_slice_hdr->i1_num_ref_idx_l0_active; r_idx++)
428
29.1k
        {
429
29.1k
            pic_buf_t *ps_pic_buf;
430
29.1k
            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
29.1k
            ps_pic_buf = (pic_buf_t *)ps_slice_hdr->as_ref_pic_list0[r_idx].pv_pic_buf;
432
433
29.1k
            if(ps_pic_buf == NULL)
434
361
                return IHEVCD_REF_PIC_NOT_FOUND;
435
436
28.8k
            ps_mv_buf = ihevcd_mv_mgr_get_poc(ps_mv_buf_mgr, ps_pic_buf->i4_abs_poc);
437
28.8k
            ps_slice_hdr->as_ref_pic_list0[r_idx].pv_mv_buf = ps_mv_buf;
438
28.8k
        }
439
440
441
13.9k
        if(ps_slice_hdr->i1_slice_type  == BSLICE)
442
13.4k
        {
443
13.4k
            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
13.4k
            r_idx = 0;
446
26.9k
            while(r_idx < u4_num_rps_curr_temp_list1)
447
13.4k
            {
448
32.7k
                for(i = 0; (i < (WORD32)u4_num_st_curr_after) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
449
19.2k
                {
450
19.2k
                    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
19.2k
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_st_curr_after[i];
455
19.2k
                }
456
457
40.8k
                for(i = 0; (i < (WORD32)u4_num_st_curr_before) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
458
27.4k
                {
459
27.4k
                    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
27.4k
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_st_curr_before[i];
464
27.4k
                }
465
466
14.6k
                for(i = 0; (i < (WORD32)u4_num_lt_curr) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
467
1.21k
                {
468
1.21k
                    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
1.21k
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_lt_curr[i];
473
1.21k
                }
474
13.4k
            }
475
476
40.9k
            for(r_idx = 0; (WORD32)r_idx < ps_slice_hdr->i1_num_ref_idx_l1_active; r_idx++)
477
27.4k
            {
478
27.4k
                pic_buf_t *ps_pic_buf;
479
27.4k
                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
27.4k
                ps_pic_buf = (pic_buf_t *)ps_slice_hdr->as_ref_pic_list1[r_idx].pv_pic_buf;
481
482
27.4k
                if(ps_pic_buf == NULL)
483
0
                    return IHEVCD_REF_PIC_NOT_FOUND;
484
485
27.4k
                ps_mv_buf = ihevcd_mv_mgr_get_poc(ps_mv_buf_mgr, ps_pic_buf->i4_abs_poc);
486
27.4k
                ps_slice_hdr->as_ref_pic_list1[r_idx].pv_mv_buf = ps_mv_buf;
487
27.4k
            }
488
13.4k
        }
489
13.9k
    }
490
491
15.0k
    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
979k
    for(i = 0; i < MAX_DPB_BUFS; i++)
494
964k
    {
495
964k
        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
3.73k
        {
497
3.73k
            pic_buf_t *ps_pic_buf = ps_dpb_mgr->as_dpb_info[i].ps_pic_buf;
498
3.73k
            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
3.73k
            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
3.73k
            ps_mv_buf = (mv_buf_t *)ps_codec->ps_mv_buf;
506
10.0k
            for(j = 0; j < ps_codec->i4_max_dpb_size; j++)
507
10.0k
            {
508
10.0k
                if(ps_mv_buf && ps_mv_buf->i4_abs_poc == ps_pic_buf->i4_abs_poc)
509
3.73k
                {
510
3.73k
                    ihevc_buf_mgr_release((buf_mgr_t *)ps_codec->pv_mv_buf_mgr, j, BUF_MGR_REF);
511
3.73k
                    break;
512
3.73k
                }
513
6.26k
                ps_mv_buf++;
514
6.26k
            }
515
3.73k
        }
516
517
964k
    }
518
519
15.0k
    return IHEVCD_SUCCESS;
520
15.4k
}