Coverage Report

Created: 2026-01-09 07:04

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
63.2k
{
75
63.2k
    UWORD32 i;
76
63.2k
    mv_buf_t *ps_mv_buf = NULL;
77
78
79
80
129k
    for(i = 0; i < ps_mv_buf_mgr->u4_max_buf_cnt; i++)
81
129k
    {
82
129k
        ps_mv_buf = (mv_buf_t *)ps_mv_buf_mgr->apv_ptr[i];
83
129k
        if(ps_mv_buf && (ps_mv_buf->i4_abs_poc == (WORD32)abs_poc))
84
63.2k
        {
85
63.2k
            break;
86
63.2k
        }
87
129k
    }
88
89
63.2k
    return ps_mv_buf;
90
63.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
14.0k
{
95
14.0k
    WORD32 i, j;
96
14.0k
    WORD32 st_rps_idx;
97
14.0k
    WORD32 num_neg_pics, num_pos_pics;
98
14.0k
    WORD8 *pi1_used;
99
14.0k
    WORD16 *pi2_delta_poc;
100
14.0k
    UWORD32 u4_max_poc_lsb;
101
14.0k
    pic_buf_t *ps_pic_buf;
102
14.0k
    mv_buf_t *ps_mv_buf;
103
14.0k
    UWORD32 r_idx;
104
105
14.0k
    dpb_mgr_t *ps_dpb_mgr = (dpb_mgr_t *)ps_codec->pv_dpb_mgr;
106
14.0k
    buf_mgr_t *ps_mv_buf_mgr = (buf_mgr_t *)ps_codec->pv_mv_buf_mgr;
107
108
14.0k
    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
14.0k
    WORD32 ai4_poc_lt_curr[MAX_DPB_SIZE], ai4_poc_lt_foll[MAX_DPB_SIZE];
110
14.0k
    UWORD32 u4_num_st_curr_before, u4_num_st_foll, u4_num_st_curr_after, u4_num_lt_curr, u4_num_lt_foll;
111
14.0k
    UWORD32 u4_num_total_curr;
112
113
14.0k
    WORD8 ai1_curr_delta_poc_msb_present_flag[MAX_DPB_SIZE], ai1_foll_delta_poc_msb_present_flag[MAX_DPB_SIZE];
114
115
14.0k
    pic_buf_t *as_ref_pic_lt_curr[MAX_DPB_SIZE];
116
14.0k
    pic_buf_t *as_ref_pic_lt_foll[MAX_DPB_SIZE];
117
14.0k
    pic_buf_t *as_ref_pic_st_curr_after[MAX_DPB_SIZE];
118
14.0k
    pic_buf_t *as_ref_pic_st_curr_before[MAX_DPB_SIZE];
119
14.0k
    pic_buf_t *as_ref_pic_st_foll[MAX_DPB_SIZE];
120
121
14.0k
    pic_buf_t *as_ref_pic_list_temp0[MAX_DPB_SIZE], *as_ref_pic_list_temp1[MAX_DPB_SIZE];
122
123
14.0k
    UWORD32 u4_num_rps_curr_temp_list0, u4_num_rps_curr_temp_list1;
124
125
14.0k
    WORD32 i4_pic_order_cnt_val;
126
14.0k
    WORD32 i4_poc_lt;
127
14.0k
    UNUSED(as_ref_pic_lt_foll);
128
14.0k
    UNUSED(as_ref_pic_st_foll);
129
14.0k
    UNUSED(ps_pps);
130
131
14.0k
    RETURN_IF_NAL_INFO;
132
133
14.0k
    u4_max_poc_lsb = (1 << ps_sps->i1_log2_max_pic_order_cnt_lsb);
134
135
14.0k
    i4_pic_order_cnt_val = ps_slice_hdr->i4_abs_pic_order_cnt;
136
137
14.0k
    if(1 == ps_slice_hdr->i1_short_term_ref_pic_set_sps_flag)
138
9.26k
    {
139
9.26k
        st_rps_idx = ps_slice_hdr->i1_short_term_ref_pic_set_idx;
140
9.26k
        num_neg_pics = ps_sps->as_stref_picset[st_rps_idx].i1_num_neg_pics;
141
9.26k
        num_pos_pics = ps_sps->as_stref_picset[st_rps_idx].i1_num_pos_pics;
142
9.26k
        pi1_used = ps_sps->as_stref_picset[st_rps_idx].ai1_used;
143
9.26k
        pi2_delta_poc = ps_sps->as_stref_picset[st_rps_idx].ai2_delta_poc;
144
9.26k
    }
145
4.83k
    else
146
4.83k
    {
147
4.83k
        st_rps_idx = ps_sps->i1_num_short_term_ref_pic_sets;
148
4.83k
        num_neg_pics = ps_slice_hdr->s_stref_picset.i1_num_neg_pics;
149
4.83k
        num_pos_pics = ps_slice_hdr->s_stref_picset.i1_num_pos_pics;
150
4.83k
        pi1_used = ps_slice_hdr->s_stref_picset.ai1_used;
151
4.83k
        pi2_delta_poc = ps_slice_hdr->s_stref_picset.ai2_delta_poc;
152
4.83k
    }
153
154
14.0k
    u4_num_st_curr_before = 0;
155
14.0k
    u4_num_st_foll = 0;
156
43.2k
    for(i = 0; i < num_neg_pics; i++)
157
29.1k
    {
158
29.1k
        if(pi1_used[i])
159
27.2k
        {
160
27.2k
            ai4_poc_st_curr_before[u4_num_st_curr_before] = i4_pic_order_cnt_val + pi2_delta_poc[i];
161
27.2k
            u4_num_st_curr_before++;
162
27.2k
        }
163
1.86k
        else
164
1.86k
        {
165
1.86k
            ai4_poc_st_foll[u4_num_st_foll] = i4_pic_order_cnt_val + pi2_delta_poc[i];
166
1.86k
            u4_num_st_foll++;
167
1.86k
        }
168
29.1k
    }
169
14.0k
    u4_num_st_curr_after = 0;
170
32.7k
    for(i = num_neg_pics; i < num_neg_pics + num_pos_pics; i++)
171
18.6k
    {
172
18.6k
        if(pi1_used[i])
173
18.1k
        {
174
18.1k
            ai4_poc_st_curr_after[u4_num_st_curr_after] = i4_pic_order_cnt_val + pi2_delta_poc[i];
175
18.1k
            u4_num_st_curr_after++;
176
18.1k
        }
177
484
        else
178
484
        {
179
484
            ai4_poc_st_foll[u4_num_st_foll] = i4_pic_order_cnt_val + pi2_delta_poc[i];
180
484
            u4_num_st_foll++;
181
484
        }
182
18.6k
    }
183
184
14.0k
    u4_num_lt_curr = 0;
185
14.0k
    u4_num_lt_foll = 0;
186
18.6k
    for(i = 0; i < ps_slice_hdr->i1_num_long_term_sps + ps_slice_hdr->i1_num_long_term_pics; i++)
187
4.53k
    {
188
4.53k
        i4_poc_lt = ps_slice_hdr->ai4_poc_lsb_lt[i];
189
4.53k
        if(ps_slice_hdr->ai1_delta_poc_msb_present_flag[i])
190
1.39k
        {
191
1.39k
            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.39k
        }
193
194
4.53k
        if(ps_slice_hdr->ai1_used_by_curr_pic_lt_flag[i])
195
3.77k
        {
196
3.77k
            ai4_poc_lt_curr[u4_num_lt_curr] = i4_poc_lt;
197
3.77k
            ai1_curr_delta_poc_msb_present_flag[u4_num_lt_curr] = ps_slice_hdr->ai1_delta_poc_msb_present_flag[i];
198
3.77k
            u4_num_lt_curr++;
199
3.77k
        }
200
765
        else
201
765
        {
202
765
            ai4_poc_lt_foll[u4_num_lt_foll] = i4_poc_lt;
203
765
            ai1_foll_delta_poc_msb_present_flag[u4_num_lt_foll] = ps_slice_hdr->ai1_delta_poc_msb_present_flag[i];
204
765
            u4_num_lt_foll++;
205
765
        }
206
4.53k
    }
207
208
14.0k
    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
14.0k
    if(0 == ps_codec->i4_pic_present)
312
5.78k
    {
313
376k
        for(i = 0; i < MAX_DPB_BUFS; i++)
314
370k
        {
315
370k
            if(ps_dpb_mgr->as_dpb_info[i].ps_pic_buf)
316
13.8k
                ps_dpb_mgr->as_dpb_info[i].ps_pic_buf->u1_used_as_ref = UNUSED_FOR_REF;
317
370k
        }
318
5.78k
    }
319
320
17.8k
    for(i = 0; i < (WORD32)u4_num_lt_curr; i++)
321
3.77k
    {
322
3.77k
        if(0 == ai1_curr_delta_poc_msb_present_flag[i])
323
2.54k
        {
324
2.54k
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc_lsb(ps_dpb_mgr, ai4_poc_lt_curr[i]);
325
2.54k
            if(NULL != ps_pic_buf)
326
1.07k
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
327
328
2.54k
            as_ref_pic_lt_curr[i] = ps_pic_buf;
329
2.54k
        }
330
1.23k
        else
331
1.23k
        {
332
1.23k
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_lt_curr[i]);
333
1.23k
            if(NULL != ps_pic_buf)
334
12
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
335
336
1.23k
            as_ref_pic_lt_curr[i] = ps_pic_buf;
337
1.23k
        }
338
3.77k
    }
339
340
14.8k
    for(i = 0; i < (WORD32)u4_num_lt_foll; i++)
341
765
    {
342
765
        if(0 == ai1_foll_delta_poc_msb_present_flag[i])
343
598
        {
344
598
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc_lsb(ps_dpb_mgr, ai4_poc_lt_foll[i]);
345
598
            if(NULL != ps_pic_buf)
346
87
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
347
348
598
            as_ref_pic_lt_foll[i] = ps_pic_buf;
349
598
        }
350
167
        else
351
167
        {
352
167
            ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_lt_foll[i]);
353
167
            if(NULL != ps_pic_buf)
354
0
                ps_pic_buf->u1_used_as_ref = LONG_TERM_REF;
355
356
167
            as_ref_pic_lt_foll[i] = ps_pic_buf;
357
167
        }
358
765
    }
359
360
361
41.3k
    for(i = 0; i < (WORD32)u4_num_st_curr_before; i++)
362
27.2k
    {
363
364
27.2k
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_curr_before[i]);
365
27.2k
        if(NULL != ps_pic_buf)
366
17.5k
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
367
368
27.2k
        as_ref_pic_st_curr_before[i] = ps_pic_buf;
369
27.2k
    }
370
371
32.2k
    for(i = 0; i < (WORD32)u4_num_st_curr_after; i++)
372
18.1k
    {
373
18.1k
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_curr_after[i]);
374
18.1k
        if(NULL != ps_pic_buf)
375
13.3k
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
376
377
18.1k
        as_ref_pic_st_curr_after[i] = ps_pic_buf;
378
18.1k
    }
379
380
16.4k
    for(i = 0; i < (WORD32)u4_num_st_foll; i++)
381
2.35k
    {
382
2.35k
        ps_pic_buf = ihevc_dpb_mgr_get_ref_by_poc(ps_dpb_mgr, ai4_poc_st_foll[i]);
383
2.35k
        if(NULL != ps_pic_buf)
384
182
            ps_pic_buf->u1_used_as_ref = SHORT_TERM_REF;
385
386
2.35k
        as_ref_pic_st_foll[i] = ps_pic_buf;
387
2.35k
    }
388
389
    //TODO: Bit stream conformance tests to be included
390
391
14.0k
    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
14.0k
    r_idx = 0;
394
14.0k
    if((PSLICE == ps_slice_hdr->i1_slice_type) ||
395
13.4k
       (BSLICE == ps_slice_hdr->i1_slice_type))
396
13.1k
    {
397
26.8k
        while(r_idx < u4_num_rps_curr_temp_list0)
398
13.6k
        {
399
41.2k
            for(i = 0; (i < (WORD32)u4_num_st_curr_before) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
400
27.6k
            {
401
27.6k
                if(NULL == as_ref_pic_st_curr_before[i])
402
9.70k
                {
403
9.70k
                    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
9.70k
                }
405
27.6k
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_st_curr_before[i];
406
27.6k
            }
407
408
31.8k
            for(i = 0; (i < (WORD32)u4_num_st_curr_after) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
409
18.2k
            {
410
18.2k
                if(NULL == as_ref_pic_st_curr_after[i])
411
4.88k
                {
412
4.88k
                    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
4.88k
                }
414
18.2k
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_st_curr_after[i];
415
18.2k
            }
416
417
16.7k
            for(i = 0; (i < (WORD32)u4_num_lt_curr) && (r_idx < u4_num_rps_curr_temp_list0); r_idx++, i++)
418
3.08k
            {
419
3.08k
                if(NULL == as_ref_pic_lt_curr[i])
420
1.95k
                {
421
1.95k
                    as_ref_pic_lt_curr[i] = ihevc_dpb_mgr_get_ref_by_nearest_poc(ps_dpb_mgr, ai4_poc_lt_curr[i]);
422
1.95k
                }
423
3.08k
                as_ref_pic_list_temp0[r_idx] = as_ref_pic_lt_curr[i];
424
3.08k
            }
425
13.6k
        }
426
427
39.3k
        for(r_idx = 0; (WORD32)r_idx < ps_slice_hdr->i1_num_ref_idx_l0_active; r_idx++)
428
26.6k
        {
429
26.6k
            pic_buf_t *ps_pic_buf;
430
26.6k
            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
26.6k
            ps_pic_buf = (pic_buf_t *)ps_slice_hdr->as_ref_pic_list0[r_idx].pv_pic_buf;
432
433
26.6k
            if(ps_pic_buf == NULL)
434
539
                return IHEVCD_REF_PIC_NOT_FOUND;
435
436
26.1k
            ps_mv_buf = ihevcd_mv_mgr_get_poc(ps_mv_buf_mgr, ps_pic_buf->i4_abs_poc);
437
26.1k
            ps_slice_hdr->as_ref_pic_list0[r_idx].pv_mv_buf = ps_mv_buf;
438
26.1k
        }
439
440
441
12.6k
        if(ps_slice_hdr->i1_slice_type  == BSLICE)
442
12.1k
        {
443
12.1k
            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
12.1k
            r_idx = 0;
446
24.2k
            while(r_idx < u4_num_rps_curr_temp_list1)
447
12.1k
            {
448
29.4k
                for(i = 0; (i < (WORD32)u4_num_st_curr_after) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
449
17.2k
                {
450
17.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
17.2k
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_st_curr_after[i];
455
17.2k
                }
456
457
37.9k
                for(i = 0; (i < (WORD32)u4_num_st_curr_before) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
458
25.8k
                {
459
25.8k
                    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
25.8k
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_st_curr_before[i];
464
25.8k
                }
465
466
13.4k
                for(i = 0; (i < (WORD32)u4_num_lt_curr) && (r_idx < u4_num_rps_curr_temp_list1); r_idx++, i++)
467
1.31k
                {
468
1.31k
                    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.31k
                    as_ref_pic_list_temp1[r_idx] = as_ref_pic_lt_curr[i];
473
1.31k
                }
474
12.1k
            }
475
476
36.4k
            for(r_idx = 0; (WORD32)r_idx < ps_slice_hdr->i1_num_ref_idx_l1_active; r_idx++)
477
24.3k
            {
478
24.3k
                pic_buf_t *ps_pic_buf;
479
24.3k
                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
24.3k
                ps_pic_buf = (pic_buf_t *)ps_slice_hdr->as_ref_pic_list1[r_idx].pv_pic_buf;
481
482
24.3k
                if(ps_pic_buf == NULL)
483
0
                    return IHEVCD_REF_PIC_NOT_FOUND;
484
485
24.3k
                ps_mv_buf = ihevcd_mv_mgr_get_poc(ps_mv_buf_mgr, ps_pic_buf->i4_abs_poc);
486
24.3k
                ps_slice_hdr->as_ref_pic_list1[r_idx].pv_mv_buf = ps_mv_buf;
487
24.3k
            }
488
12.1k
        }
489
12.6k
    }
490
491
13.5k
    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
880k
    for(i = 0; i < MAX_DPB_BUFS; i++)
494
867k
    {
495
867k
        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.95k
        {
497
3.95k
            pic_buf_t *ps_pic_buf = ps_dpb_mgr->as_dpb_info[i].ps_pic_buf;
498
3.95k
            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.95k
            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.95k
            ps_mv_buf = (mv_buf_t *)ps_codec->ps_mv_buf;
506
10.1k
            for(j = 0; j < ps_codec->i4_max_dpb_size; j++)
507
10.1k
            {
508
10.1k
                if(ps_mv_buf && ps_mv_buf->i4_abs_poc == ps_pic_buf->i4_abs_poc)
509
3.95k
                {
510
3.95k
                    ihevc_buf_mgr_release((buf_mgr_t *)ps_codec->pv_mv_buf_mgr, j, BUF_MGR_REF);
511
3.95k
                    break;
512
3.95k
                }
513
6.16k
                ps_mv_buf++;
514
6.16k
            }
515
3.95k
        }
516
517
867k
    }
518
519
13.5k
    return IHEVCD_SUCCESS;
520
14.0k
}