Coverage Report

Created: 2025-10-13 06:35

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libavc/decoder/ih264d_parse_slice.c
Line
Count
Source
1
/******************************************************************************
2
 *
3
 * Copyright (C) 2015 The Android Open Source Project
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
 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
19
*/
20
/*!
21
 **************************************************************************
22
 * \file ih264d_parse_slice.c
23
 *
24
 * \brief
25
 *    Contains routines that decodes a slice NAL unit
26
 *
27
 * \date
28
 *    19/12/2002
29
 *
30
 * \author  AI
31
 **************************************************************************
32
 */
33
#include <string.h>
34
#include "ih264_typedefs.h"
35
#include "ih264_macros.h"
36
#include "ih264_platform_macros.h"
37
#include "ithread.h"
38
#include "ih264d_structs.h"
39
#include "ih264d_debug.h"
40
#include "ih264d_bitstrm.h"
41
#include "ih264d_parse_mb_header.h"
42
#include "ih264d_process_bslice.h"
43
#include "ih264d_process_pslice.h"
44
#include "ih264d_parse_cavlc.h"
45
#include "ih264d_utils.h"
46
#include "ih264d_deblocking.h"
47
#include "ih264d_defs.h"
48
#include "ih264d_error_handler.h"
49
#include "ih264d_tables.h"
50
#include "ih264d_defs.h"
51
#include "ih264d_mem_request.h"
52
#include "ih264d_parse_islice.h"
53
#include "ih264d_parse_slice.h"
54
#include "ih264d_mvpred.h"
55
#include "ih264d_mb_utils.h"
56
57
#include "ih264d_defs.h"
58
#include "ih264d_quant_scaling.h"
59
60
#include "ih264d_inter_pred.h"
61
62
#include "ih264d_sei.h"
63
#include "ih264d.h"
64
#include "ih264_error.h"
65
#include "ih264_disp_mgr.h"
66
#include "ih264_buf_mgr.h"
67
68
#include "ih264d_thread_parse_decode.h"
69
#include "ih264d_thread_compute_bs.h"
70
#include "ih264d_dpb_manager.h"
71
#include <assert.h>
72
#include "ih264d_parse_islice.h"
73
#define RET_LAST_SKIP  0x80000000
74
75
WORD32 check_app_out_buf_size(dec_struct_t *ps_dec);
76
/*!
77
 **************************************************************************
78
 * \if Function name : ih264d_form_pred_weight_matrix \endif
79
 *
80
 * \brief
81
 *    Forms pred weight matrix.
82
 *
83
 * \return
84
 *    None
85
 *
86
 **************************************************************************
87
 */
88
89
void ih264d_form_pred_weight_matrix(dec_struct_t *ps_dec)
90
29.3k
{
91
29.3k
    dec_slice_params_t *ps_cur_slice;
92
29.3k
    UWORD8 uc_num_ref_idx_l0_active, uc_num_ref_idx_l1_active;
93
29.3k
    UWORD8 i, j;
94
29.3k
    UWORD32 *pu4_mat_iwt_ofst;
95
29.3k
    UWORD16 i2_idx;
96
29.3k
    UWORD32 *pui32_weight_offset_l0, *pui32_weight_offset_l1;
97
29.3k
    UWORD32 u4_temp;
98
99
29.3k
    ps_cur_slice = ps_dec->ps_cur_slice;
100
29.3k
    uc_num_ref_idx_l0_active = ps_cur_slice->u1_num_ref_idx_lx_active[0];
101
29.3k
    uc_num_ref_idx_l1_active = ps_cur_slice->u1_num_ref_idx_lx_active[1];
102
103
29.3k
    pu4_mat_iwt_ofst = ps_dec->pu4_wts_ofsts_mat;
104
105
29.3k
    if(ps_cur_slice->u1_slice_type == B_SLICE)
106
4.52k
    {
107
14.7k
        for(i = 0; i < uc_num_ref_idx_l0_active; i++)
108
10.1k
        {
109
10.1k
            pui32_weight_offset_l0 = ps_cur_slice->u4_wt_ofst_lx[0][i];
110
35.9k
            for(j = 0; j < uc_num_ref_idx_l1_active; j++)
111
25.7k
            {
112
25.7k
                pui32_weight_offset_l1 = ps_cur_slice->u4_wt_ofst_lx[1][j];
113
25.7k
                i2_idx = i * uc_num_ref_idx_l0_active + j;
114
25.7k
                i2_idx = X3(i2_idx);
115
                /*        u4_temp = (pui32_weight_offset_l0[0] | (pui32_weight_offset_l1[0] << 16));
116
                 pu4_mat_iwt_ofst[0] = u4_temp;
117
                 u4_temp = (pui32_weight_offset_l0[1] | (pui32_weight_offset_l1[1] << 16));
118
                 pu4_mat_iwt_ofst[1] = u4_temp;
119
                 u4_temp = (pui32_weight_offset_l0[2] | (pui32_weight_offset_l1[2] << 16));
120
                 pu4_mat_iwt_ofst[2] = u4_temp;
121
                 pu4_mat_iwt_ofst += 3;*/
122
25.7k
                pu4_mat_iwt_ofst[0] = pui32_weight_offset_l0[0];
123
25.7k
                pu4_mat_iwt_ofst[1] = pui32_weight_offset_l1[0];
124
25.7k
                pu4_mat_iwt_ofst[2] = pui32_weight_offset_l0[1];
125
25.7k
                pu4_mat_iwt_ofst[3] = pui32_weight_offset_l1[1];
126
25.7k
                pu4_mat_iwt_ofst[4] = pui32_weight_offset_l0[2];
127
25.7k
                pu4_mat_iwt_ofst[5] = pui32_weight_offset_l1[2];
128
25.7k
                pu4_mat_iwt_ofst += 6;
129
25.7k
            }
130
10.1k
        }
131
4.52k
    }
132
24.8k
    else
133
24.8k
    {
134
69.2k
        for(i = 0; i < uc_num_ref_idx_l0_active; i++)
135
44.4k
        {
136
44.4k
            pui32_weight_offset_l0 = ps_cur_slice->u4_wt_ofst_lx[0][i];
137
44.4k
            i2_idx = X3(i);
138
44.4k
            u4_temp = (UWORD32)pui32_weight_offset_l0[0];
139
44.4k
            pu4_mat_iwt_ofst[0] = u4_temp;
140
44.4k
            u4_temp = (UWORD32)pui32_weight_offset_l0[1];
141
44.4k
            pu4_mat_iwt_ofst[2] = u4_temp;
142
44.4k
            u4_temp = (UWORD32)pui32_weight_offset_l0[2];
143
44.4k
            pu4_mat_iwt_ofst[4] = u4_temp;
144
44.4k
            pu4_mat_iwt_ofst += 6;
145
44.4k
        }
146
24.8k
    }
147
29.3k
}
148
149
150
/*!
151
 **************************************************************************
152
 * \if Function name :  init_firstSliceParam \endif
153
 *
154
 * \brief
155
 *    Initialize the Parameter required for all the slices for a picture
156
 *
157
 * \return           : Nothing
158
 *
159
 **************************************************************************
160
 */
161
162
WORD32 ih264d_start_of_pic(dec_struct_t *ps_dec,
163
                         WORD32 i4_poc,
164
                         pocstruct_t *ps_temp_poc,
165
                         UWORD16 u2_frame_num,
166
                         dec_pic_params_t *ps_pps)
167
9.26k
{
168
9.26k
    pocstruct_t *ps_prev_poc = &ps_dec->s_cur_pic_poc;
169
9.26k
    pocstruct_t *ps_cur_poc = ps_temp_poc;
170
171
9.26k
    pic_buffer_t *pic_buf;
172
173
9.26k
    ivd_video_decode_op_t * ps_dec_output =
174
9.26k
                    (ivd_video_decode_op_t *)ps_dec->pv_dec_out;
175
9.26k
    dec_slice_params_t *ps_cur_slice = ps_dec->ps_cur_slice;
176
9.26k
    dec_seq_params_t *ps_seq = ps_pps->ps_sps;
177
9.26k
    UWORD8 u1_bottom_field_flag = ps_cur_slice->u1_bottom_field_flag;
178
9.26k
    UWORD8 u1_field_pic_flag = ps_cur_slice->u1_field_pic_flag;
179
    /* high profile related declarations */
180
9.26k
    high_profile_tools_t s_high_profile;
181
9.26k
    WORD32 ret;
182
183
9.26k
    H264_MUTEX_LOCK(&ps_dec->process_disp_mutex);
184
185
    /* check output buffer size given by the application */
186
9.26k
    if(check_app_out_buf_size(ps_dec) != IV_SUCCESS)
187
83
        return IVD_DISP_FRM_ZERO_OP_BUF_SIZE;
188
189
9.18k
    ps_prev_poc->i4_pic_order_cnt_lsb = ps_cur_poc->i4_pic_order_cnt_lsb;
190
9.18k
    ps_prev_poc->i4_pic_order_cnt_msb = ps_cur_poc->i4_pic_order_cnt_msb;
191
9.18k
    ps_prev_poc->i4_delta_pic_order_cnt_bottom =
192
9.18k
                    ps_cur_poc->i4_delta_pic_order_cnt_bottom;
193
9.18k
    ps_prev_poc->i4_delta_pic_order_cnt[0] =
194
9.18k
                    ps_cur_poc->i4_delta_pic_order_cnt[0];
195
9.18k
    ps_prev_poc->i4_delta_pic_order_cnt[1] =
196
9.18k
                    ps_cur_poc->i4_delta_pic_order_cnt[1];
197
9.18k
    ps_prev_poc->u1_bot_field = ps_dec->ps_cur_slice->u1_bottom_field_flag;
198
9.18k
    ps_prev_poc->i4_prev_frame_num_ofst = ps_cur_poc->i4_prev_frame_num_ofst;
199
9.18k
    ps_prev_poc->u2_frame_num = u2_frame_num;
200
9.18k
    ps_dec->i1_prev_mb_qp_delta = 0;
201
9.18k
    ps_dec->i1_next_ctxt_idx = 0;
202
203
204
9.18k
    ps_dec->u4_nmb_deblk = 0;
205
9.18k
    if(ps_dec->u4_num_cores == 1)
206
4.22k
       ps_dec->u4_nmb_deblk = 1;
207
208
209
210
9.18k
    if(ps_seq->u1_mb_aff_flag == 1)
211
4.08k
    {
212
4.08k
        ps_dec->u4_nmb_deblk = 0;
213
4.08k
        if(ps_dec->u4_num_cores > 2)
214
41
            ps_dec->u4_num_cores = 2;
215
4.08k
    }
216
217
9.18k
        ps_dec->u4_use_intrapred_line_copy = 0;
218
219
220
221
9.18k
    if (ps_seq->u1_mb_aff_flag == 0)
222
5.10k
    {
223
5.10k
        ps_dec->u4_use_intrapred_line_copy = 1;
224
5.10k
    }
225
226
9.18k
    ps_dec->u4_app_disable_deblk_frm = 0;
227
    /* If degrade is enabled, set the degrade flags appropriately */
228
9.18k
    if(ps_dec->i4_degrade_type && ps_dec->i4_degrade_pics)
229
0
    {
230
0
        WORD32 degrade_pic;
231
0
        ps_dec->i4_degrade_pic_cnt++;
232
0
        degrade_pic = 0;
233
234
        /* If degrade is to be done in all frames, then do not check further */
235
0
        switch(ps_dec->i4_degrade_pics)
236
0
        {
237
0
            case 4:
238
0
            {
239
0
                degrade_pic = 1;
240
0
                break;
241
0
            }
242
0
            case 3:
243
0
            {
244
0
                if(ps_cur_slice->u1_slice_type != I_SLICE)
245
0
                    degrade_pic = 1;
246
247
0
                break;
248
0
            }
249
0
            case 2:
250
0
            {
251
252
                /* If pic count hits non-degrade interval or it is an islice, then do not degrade */
253
0
                if((ps_cur_slice->u1_slice_type != I_SLICE)
254
0
                                && (ps_dec->i4_degrade_pic_cnt
255
0
                                                != ps_dec->i4_nondegrade_interval))
256
0
                    degrade_pic = 1;
257
258
0
                break;
259
0
            }
260
0
            case 1:
261
0
            {
262
                /* Check if the current picture is non-ref */
263
0
                if(0 == ps_cur_slice->u1_nal_ref_idc)
264
0
                {
265
0
                    degrade_pic = 1;
266
0
                }
267
0
                break;
268
0
            }
269
270
0
        }
271
0
        if(degrade_pic)
272
0
        {
273
0
            if(ps_dec->i4_degrade_type & 0x2)
274
0
                ps_dec->u4_app_disable_deblk_frm = 1;
275
276
            /* MC degrading is done only for non-ref pictures */
277
0
            if(0 == ps_cur_slice->u1_nal_ref_idc)
278
0
            {
279
0
                if(ps_dec->i4_degrade_type & 0x4)
280
0
                    ps_dec->i4_mv_frac_mask = 0;
281
282
0
                if(ps_dec->i4_degrade_type & 0x8)
283
0
                    ps_dec->i4_mv_frac_mask = 0;
284
0
            }
285
0
        }
286
0
        else
287
0
            ps_dec->i4_degrade_pic_cnt = 0;
288
0
    }
289
290
9.18k
    {
291
9.18k
        dec_err_status_t * ps_err = ps_dec->ps_dec_err_status;
292
9.18k
        if((ps_cur_slice->u1_slice_type == I_SLICE)
293
8.15k
                        || (ps_cur_slice->u1_slice_type == SI_SLICE))
294
1.02k
            ps_err->u1_cur_pic_type = PIC_TYPE_I;
295
8.15k
        else
296
8.15k
            ps_err->u1_cur_pic_type = PIC_TYPE_UNKNOWN;
297
298
9.18k
        if(ps_err->u1_pic_aud_i == PIC_TYPE_I)
299
30
        {
300
30
            ps_err->u1_cur_pic_type = PIC_TYPE_I;
301
30
            ps_err->u1_pic_aud_i = PIC_TYPE_UNKNOWN;
302
30
        }
303
304
9.18k
        if(ps_cur_slice->u1_nal_unit_type == IDR_SLICE_NAL)
305
1.68k
        {
306
1.68k
            if(ps_err->u1_err_flag)
307
0
                ih264d_reset_ref_bufs(ps_dec->ps_dpb_mgr);
308
1.68k
            ps_err->u1_err_flag = ACCEPT_ALL_PICS;
309
1.68k
        }
310
9.18k
    }
311
312
9.18k
    if(ps_dec->u1_init_dec_flag && ps_dec->s_prev_seq_params.u1_eoseq_pending)
313
0
    {
314
        /* Reset the decoder picture buffers */
315
0
        WORD32 j;
316
0
        for(j = 0; j < MAX_DISP_BUFS_NEW; j++)
317
0
        {
318
319
0
            ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
320
0
                                  j,
321
0
                                  BUF_MGR_REF);
322
0
            ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_mv_buf_mgr,
323
0
                                  ps_dec->as_buf_id_info_map[j].mv_buf_id,
324
0
                                  BUF_MGR_REF);
325
0
            ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
326
0
                                  j,
327
0
                                  BUF_MGR_IO);
328
0
        }
329
330
        /* reset the decoder structure parameters related to buffer handling */
331
0
        ps_dec->u1_second_field = 0;
332
0
        ps_dec->i4_cur_display_seq = 0;
333
334
        /********************************************************************/
335
        /* indicate in the decoder output i4_status that some frames are being */
336
        /* dropped, so that it resets timestamp and wait for a new sequence */
337
        /********************************************************************/
338
339
0
        ps_dec->s_prev_seq_params.u1_eoseq_pending = 0;
340
0
    }
341
9.18k
    ret = ih264d_init_pic(ps_dec, u2_frame_num, i4_poc, ps_pps);
342
9.18k
    if(ret != OK)
343
0
        return ret;
344
345
9.18k
    ps_dec->pv_parse_tu_coeff_data = ps_dec->pv_pic_tu_coeff_data;
346
9.18k
    ps_dec->pv_proc_tu_coeff_data  = ps_dec->pv_pic_tu_coeff_data;
347
9.18k
    ps_dec->ps_nmb_info = ps_dec->ps_frm_mb_info;
348
9.18k
    if(ps_dec->u1_separate_parse)
349
4.95k
    {
350
4.95k
        UWORD16 pic_wd;
351
4.95k
        UWORD16 pic_ht;
352
4.95k
        UWORD32 num_mbs;
353
354
4.95k
        pic_wd = ps_dec->u2_pic_wd;
355
4.95k
        pic_ht = ps_dec->u2_pic_ht;
356
4.95k
        num_mbs = (pic_wd * pic_ht) >> 8;
357
358
4.95k
        if(ps_dec->pu1_dec_mb_map)
359
4.95k
        {
360
4.95k
            memset((void *)ps_dec->pu1_dec_mb_map, 0, num_mbs);
361
4.95k
        }
362
363
4.95k
        if(ps_dec->pu1_recon_mb_map)
364
4.95k
        {
365
366
4.95k
            memset((void *)ps_dec->pu1_recon_mb_map, 0, num_mbs);
367
4.95k
        }
368
369
4.95k
        if(ps_dec->pu2_slice_num_map)
370
4.95k
        {
371
4.95k
            memset((void *)ps_dec->pu2_slice_num_map, 0,
372
4.95k
                   (num_mbs * sizeof(UWORD16)));
373
4.95k
        }
374
375
4.95k
    }
376
377
9.18k
    ps_dec->ps_parse_cur_slice = &(ps_dec->ps_dec_slice_buf[0]);
378
9.18k
    ps_dec->ps_decode_cur_slice = &(ps_dec->ps_dec_slice_buf[0]);
379
9.18k
    ps_dec->ps_computebs_cur_slice = &(ps_dec->ps_dec_slice_buf[0]);
380
9.18k
    ps_dec->u2_cur_slice_num = 0;
381
382
    /* Initialize all the HP toolsets to zero */
383
9.18k
    ps_dec->s_high_profile.u1_scaling_present = 0;
384
9.18k
    ps_dec->s_high_profile.u1_transform8x8_present = 0;
385
386
    /* Get Next Free Picture */
387
9.18k
    if(1 == ps_dec->u4_share_disp_buf)
388
0
    {
389
0
        UWORD32 i;
390
        /* Free any buffer that is in the queue to be freed */
391
0
        for(i = 0; i < MAX_DISP_BUFS_NEW; i++)
392
0
        {
393
0
            if(0 == ps_dec->u4_disp_buf_to_be_freed[i])
394
0
                continue;
395
0
            ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_pic_buf_mgr, i,
396
0
            BUF_MGR_IO);
397
0
            ps_dec->u4_disp_buf_to_be_freed[i] = 0;
398
0
            ps_dec->u4_disp_buf_mapping[i] = 0;
399
400
0
        }
401
0
    }
402
9.18k
    if(!(u1_field_pic_flag && 0 != ps_dec->u1_top_bottom_decoded)) //ps_dec->u1_second_field))
403
7.19k
    {
404
7.19k
        pic_buffer_t *ps_cur_pic;
405
7.19k
        WORD32 cur_pic_buf_id, cur_mv_buf_id;
406
7.19k
        col_mv_buf_t *ps_col_mv;
407
7.19k
        while(1)
408
7.19k
        {
409
7.19k
            ps_cur_pic = (pic_buffer_t *)ih264_buf_mgr_get_next_free(
410
7.19k
                            (buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
411
7.19k
                            &cur_pic_buf_id);
412
413
            /* In case of IDR slices, if there is no free picture buffer, then release
414
             * all buffers from display and reference
415
             */
416
7.19k
            if((ps_cur_pic == NULL) && (ps_cur_slice->u1_nal_unit_type == IDR_SLICE_NAL))
417
19
            {
418
19
                WORD32 j;
419
420
1.23k
                for(j = 0; j < MAX_DISP_BUFS_NEW; j++)
421
1.21k
                {
422
1.21k
                    ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
423
1.21k
                                          j,
424
1.21k
                                          BUF_MGR_REF);
425
1.21k
                    ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_mv_buf_mgr,
426
1.21k
                                          ps_dec->as_buf_id_info_map[j].mv_buf_id,
427
1.21k
                                          BUF_MGR_REF);
428
429
1.21k
                    ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
430
1.21k
                                          j,
431
1.21k
                                          BUF_MGR_IO);
432
1.21k
                }
433
19
                ps_cur_pic = (pic_buffer_t *)ih264_buf_mgr_get_next_free(
434
19
                                (buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
435
19
                                &cur_pic_buf_id);
436
19
            }
437
438
7.19k
            if(ps_cur_pic == NULL)
439
435
            {
440
435
                ps_dec->i4_error_code = ERROR_UNAVAIL_PICBUF_T;
441
435
                ps_dec->ps_dec_err_status->u1_err_flag |= REJECT_CUR_PIC;
442
435
                return ERROR_UNAVAIL_PICBUF_T;
443
435
            }
444
6.75k
            if(0 == ps_dec->u4_disp_buf_mapping[cur_pic_buf_id])
445
6.75k
            {
446
6.75k
                break;
447
6.75k
            }
448
449
6.75k
        }
450
6.75k
        ps_col_mv = (col_mv_buf_t *)ih264_buf_mgr_get_next_free((buf_mgr_t *)ps_dec->pv_mv_buf_mgr,
451
6.75k
                                                               &cur_mv_buf_id);
452
6.75k
        if(ps_col_mv == NULL)
453
565
        {
454
565
            ps_dec->i4_error_code = ERROR_UNAVAIL_MVBUF_T;
455
565
            ps_dec->ps_dec_err_status->u1_err_flag |= REJECT_CUR_PIC;
456
565
            return ERROR_UNAVAIL_MVBUF_T;
457
565
        }
458
459
6.19k
        ps_dec->ps_cur_pic = ps_cur_pic;
460
6.19k
        ps_dec->u1_pic_buf_id = cur_pic_buf_id;
461
6.19k
        ps_cur_pic->u4_ts = ps_dec->u4_ts;
462
463
        /* Update POC and inter_pic_id in sei structure,
464
         * later can be used by application for grain synthesis(SMPTE-RDD5) */
465
6.19k
        if(ps_dec->ps_sei->u1_sei_fgc_params_present_flag)
466
39
        {
467
39
            ps_dec->ps_sei->s_sei_fgc_params.i4_poc = i4_poc;
468
39
            ps_dec->ps_sei->s_sei_fgc_params.u4_idr_pic_id = ps_cur_slice->u4_idr_pic_id;
469
39
        }
470
6.19k
        memcpy(&ps_cur_pic->s_sei_pic, ps_dec->ps_sei, sizeof(sei));
471
472
6.19k
        ps_cur_pic->u1_mv_buf_id = cur_mv_buf_id;
473
6.19k
        ps_dec->as_buf_id_info_map[cur_pic_buf_id].mv_buf_id = cur_mv_buf_id;
474
6.19k
        if(ps_dec->u1_enable_mb_info)
475
0
        {
476
0
            UWORD32 mb_info_map_size = ps_dec->u4_total_mbs << 2;
477
0
            ps_dec->as_buf_id_info_map[cur_pic_buf_id].pu1_qp_map
478
0
                = ps_dec->pu1_qp_map_base + cur_pic_buf_id * mb_info_map_size;
479
0
            ps_dec->as_buf_id_info_map[cur_pic_buf_id].pu1_mb_type_map
480
0
                = ps_dec->pu1_mb_type_map_base + cur_pic_buf_id * mb_info_map_size;
481
0
            memset(ps_dec->as_buf_id_info_map[cur_pic_buf_id].pu1_qp_map, 0, mb_info_map_size);
482
0
            memset(ps_dec->as_buf_id_info_map[cur_pic_buf_id].pu1_mb_type_map, 0, mb_info_map_size);
483
0
        }
484
485
6.19k
        ps_cur_pic->pu1_col_zero_flag = (UWORD8 *)ps_col_mv->pv_col_zero_flag;
486
6.19k
        ps_cur_pic->ps_mv = (mv_pred_t *)ps_col_mv->pv_mv;
487
6.19k
        ps_dec->au1_pic_buf_ref_flag[cur_pic_buf_id] = 0;
488
489
6.19k
        {
490
            /*make first entry of list0 and list1 point to cur pic,
491
             *so that if first slice is in error, ref pic struct will have valid entries*/
492
6.19k
            ps_dec->ps_ref_pic_buf_lx[0] = ps_dec->ps_dpb_mgr->ps_init_dpb[0];
493
6.19k
            ps_dec->ps_ref_pic_buf_lx[1] = ps_dec->ps_dpb_mgr->ps_init_dpb[1];
494
6.19k
            *(ps_dec->ps_dpb_mgr->ps_init_dpb[0][0]) = *ps_cur_pic;
495
            /* Initialize for field reference as well */
496
6.19k
            *(ps_dec->ps_dpb_mgr->ps_init_dpb[0][MAX_REF_BUFS]) = *ps_cur_pic;
497
498
6.19k
            *(ps_dec->ps_dpb_mgr->ps_mod_dpb[0][0]) = *ps_cur_pic;
499
            /* Initialize for field reference as well */
500
6.19k
            *(ps_dec->ps_dpb_mgr->ps_mod_dpb[0][MAX_REF_BUFS]) = *ps_cur_pic;
501
6.19k
            *(ps_dec->ps_dpb_mgr->ps_init_dpb[1][0]) = *ps_cur_pic;
502
            /* Initialize for field reference as well */
503
6.19k
            *(ps_dec->ps_dpb_mgr->ps_init_dpb[1][MAX_REF_BUFS]) = *ps_cur_pic;
504
6.19k
            *(ps_dec->ps_dpb_mgr->ps_mod_dpb[1][0]) = *ps_cur_pic;
505
            /* Initialize for field reference as well */
506
6.19k
            *(ps_dec->ps_dpb_mgr->ps_mod_dpb[1][MAX_REF_BUFS]) = *ps_cur_pic;
507
6.19k
        }
508
509
6.19k
        ps_dec->ps_cur_pic->u1_picturetype = u1_field_pic_flag;
510
6.19k
        ps_dec->ps_cur_pic->u4_pack_slc_typ = SKIP_NONE;
511
6.19k
        H264_DEC_DEBUG_PRINT("got a buffer\n");
512
6.19k
    }
513
1.99k
    else
514
1.99k
    {
515
1.99k
        H264_DEC_DEBUG_PRINT("did not get a buffer\n");
516
1.99k
    }
517
518
8.18k
    ps_dec->u4_pic_buf_got = 1;
519
520
8.18k
    ps_dec->ps_cur_pic->i4_poc = i4_poc;
521
8.18k
    ps_dec->ps_cur_pic->i4_frame_num = u2_frame_num;
522
8.18k
    ps_dec->ps_cur_pic->i4_pic_num = u2_frame_num;
523
8.18k
    ps_dec->ps_cur_pic->i4_top_field_order_cnt = ps_pps->i4_top_field_order_cnt;
524
8.18k
    ps_dec->ps_cur_pic->i4_bottom_field_order_cnt =
525
8.18k
                    ps_pps->i4_bottom_field_order_cnt;
526
8.18k
    ps_dec->ps_cur_pic->i4_avg_poc = ps_pps->i4_avg_poc;
527
8.18k
    ps_dec->ps_cur_pic->u4_time_stamp = ps_dec->u4_pts;
528
529
8.18k
    ps_dec->s_cur_pic = *(ps_dec->ps_cur_pic);
530
8.18k
    if(u1_field_pic_flag && u1_bottom_field_flag)
531
975
    {
532
975
        WORD32 i4_temp_poc;
533
975
        WORD32 i4_top_field_order_poc, i4_bot_field_order_poc;
534
        /* Point to odd lines, since it's bottom field */
535
975
        ps_dec->s_cur_pic.pu1_buf1 += ps_dec->s_cur_pic.u2_frm_wd_y;
536
975
        ps_dec->s_cur_pic.pu1_buf2 += ps_dec->s_cur_pic.u2_frm_wd_uv;
537
975
        ps_dec->s_cur_pic.pu1_buf3 += ps_dec->s_cur_pic.u2_frm_wd_uv;
538
975
        ps_dec->s_cur_pic.ps_mv +=
539
975
                        ((ps_dec->u2_pic_ht * ps_dec->u2_pic_wd) >> 5);
540
975
        ps_dec->s_cur_pic.pu1_col_zero_flag += ((ps_dec->u2_pic_ht
541
975
                        * ps_dec->u2_pic_wd) >> 5);
542
975
        ps_dec->ps_cur_pic->u1_picturetype |= BOT_FLD;
543
975
        i4_top_field_order_poc = ps_dec->ps_cur_pic->i4_top_field_order_cnt;
544
975
        i4_bot_field_order_poc = ps_dec->ps_cur_pic->i4_bottom_field_order_cnt;
545
975
        i4_temp_poc = MIN(i4_top_field_order_poc,
546
975
                                 i4_bot_field_order_poc);
547
975
        ps_dec->ps_cur_pic->i4_avg_poc = i4_temp_poc;
548
975
    }
549
550
8.18k
    ps_cur_slice->u1_mbaff_frame_flag = ps_seq->u1_mb_aff_flag
551
3.70k
                    && (!u1_field_pic_flag);
552
553
8.18k
    ps_dec->ps_cur_pic->u1_picturetype |= (ps_cur_slice->u1_mbaff_frame_flag
554
8.18k
                    << 2);
555
556
8.18k
    ps_dec->ps_cur_mb_row = ps_dec->ps_nbr_mb_row; //[0];
557
    //Increment by 2 ,so that left mb (mbaff decrements by 2)  will always be valid
558
8.18k
    ps_dec->ps_cur_mb_row += 2;
559
8.18k
    ps_dec->ps_top_mb_row = ps_dec->ps_nbr_mb_row;
560
8.18k
    ps_dec->ps_top_mb_row += ((ps_dec->u2_frm_wd_in_mbs + 2) << (1 - ps_dec->ps_cur_sps->u1_frame_mbs_only_flag));
561
    //Increment by 2 ,so that left mb (mbaff decrements by 2)  will always be valid
562
8.18k
    ps_dec->ps_top_mb_row += 2;
563
564
    /* CHANGED CODE */
565
8.18k
    ps_dec->ps_mv_cur = ps_dec->s_cur_pic.ps_mv;
566
8.18k
    ps_dec->ps_mv_top = ps_dec->ps_mv_top_p[0];
567
    /* CHANGED CODE */
568
8.18k
    ps_dec->u1_mv_top_p = 0;
569
8.18k
    ps_dec->u4_mb_idx = 0;
570
    /* CHANGED CODE */
571
8.18k
    ps_dec->ps_mv_left = ps_dec->s_cur_pic.ps_mv;
572
8.18k
    ps_dec->u4_total_mbs_coded = 0;
573
8.18k
    ps_dec->i4_submb_ofst = -(SUB_BLK_SIZE);
574
8.18k
    ps_dec->u4_pred_info_idx = 0;
575
8.18k
    ps_dec->u4_pred_info_pkd_idx = 0;
576
8.18k
    ps_dec->u4_dma_buf_idx = 0;
577
8.18k
    ps_dec->ps_mv = ps_dec->s_cur_pic.ps_mv;
578
8.18k
    ps_dec->ps_mv_bank_cur = ps_dec->s_cur_pic.ps_mv;
579
8.18k
    ps_dec->pu1_col_zero_flag = ps_dec->s_cur_pic.pu1_col_zero_flag;
580
8.18k
    ps_dec->ps_part = ps_dec->ps_parse_part_params;
581
8.18k
    ps_dec->i2_prev_slice_mbx = -1;
582
8.18k
    ps_dec->i2_prev_slice_mby = 0;
583
8.18k
    ps_dec->u2_mv_2mb[0] = 0;
584
8.18k
    ps_dec->u2_mv_2mb[1] = 0;
585
8.18k
    ps_dec->u1_last_pic_not_decoded = 0;
586
587
8.18k
    ps_dec->u2_cur_slice_num_dec_thread = 0;
588
8.18k
    ps_dec->u2_cur_slice_num_bs = 0;
589
8.18k
    ps_dec->u4_intra_pred_line_ofst = 0;
590
8.18k
    ps_dec->pu1_cur_y_intra_pred_line = ps_dec->pu1_y_intra_pred_line;
591
8.18k
    ps_dec->pu1_cur_u_intra_pred_line = ps_dec->pu1_u_intra_pred_line;
592
8.18k
    ps_dec->pu1_cur_v_intra_pred_line = ps_dec->pu1_v_intra_pred_line;
593
594
8.18k
    ps_dec->pu1_cur_y_intra_pred_line_base = ps_dec->pu1_y_intra_pred_line;
595
8.18k
    ps_dec->pu1_cur_u_intra_pred_line_base = ps_dec->pu1_u_intra_pred_line;
596
8.18k
    ps_dec->pu1_cur_v_intra_pred_line_base = ps_dec->pu1_v_intra_pred_line;
597
598
599
600
601
602
8.18k
    ps_dec->pu1_prev_y_intra_pred_line = ps_dec->pu1_y_intra_pred_line
603
8.18k
                    + (ps_dec->u2_frm_wd_in_mbs * MB_SIZE);
604
605
8.18k
    ps_dec->pu1_prev_u_intra_pred_line = ps_dec->pu1_u_intra_pred_line
606
8.18k
                    + ps_dec->u2_frm_wd_in_mbs * BLK8x8SIZE * YUV420SP_FACTOR;
607
8.18k
    ps_dec->pu1_prev_v_intra_pred_line = ps_dec->pu1_v_intra_pred_line
608
8.18k
                    + ps_dec->u2_frm_wd_in_mbs * BLK8x8SIZE;
609
610
8.18k
    ps_dec->ps_deblk_mbn = ps_dec->ps_deblk_pic;
611
    /* Initialize The Function Pointer Depending Upon the Entropy and MbAff Flag */
612
8.18k
    {
613
8.18k
        if(ps_cur_slice->u1_mbaff_frame_flag)
614
2.01k
        {
615
2.01k
            ps_dec->pf_compute_bs = ih264d_compute_bs_mbaff;
616
2.01k
            ps_dec->pf_mvpred = ih264d_mvpred_mbaff;
617
2.01k
        }
618
6.16k
        else
619
6.16k
        {
620
6.16k
            ps_dec->pf_compute_bs = ih264d_compute_bs_non_mbaff;
621
6.16k
            ps_dec->u1_cur_mb_fld_dec_flag = ps_cur_slice->u1_field_pic_flag;
622
6.16k
        }
623
8.18k
    }
624
    /* Set up the Parameter for DMA transfer */
625
8.18k
    {
626
8.18k
        UWORD8 u1_field_pic_flag = ps_dec->ps_cur_slice->u1_field_pic_flag;
627
628
8.18k
        UWORD8 u1_mbaff = ps_cur_slice->u1_mbaff_frame_flag;
629
630
8.18k
        UWORD16 uc_lastmbs = (((ps_dec->u2_pic_wd) >> 4)
631
8.18k
                        % (ps_dec->u4_recon_mb_grp >> u1_mbaff));
632
8.18k
        UWORD16 ui16_lastmbs_widthY =
633
8.18k
                        (uc_lastmbs ? (uc_lastmbs << 4) : ((ps_dec->u4_recon_mb_grp
634
6.49k
                                        >> u1_mbaff) << 4));
635
8.18k
        UWORD16 ui16_lastmbs_widthUV =
636
8.18k
                        uc_lastmbs ? (uc_lastmbs << 3) : ((ps_dec->u4_recon_mb_grp
637
6.49k
                                        >> u1_mbaff) << 3);
638
639
8.18k
        ps_dec->s_tran_addrecon.pu1_dest_y = ps_dec->s_cur_pic.pu1_buf1;
640
8.18k
        ps_dec->s_tran_addrecon.pu1_dest_u = ps_dec->s_cur_pic.pu1_buf2;
641
8.18k
        ps_dec->s_tran_addrecon.pu1_dest_v = ps_dec->s_cur_pic.pu1_buf3;
642
643
8.18k
        ps_dec->s_tran_addrecon.u2_frm_wd_y = ps_dec->u2_frm_wd_y
644
8.18k
                        << u1_field_pic_flag;
645
8.18k
        ps_dec->s_tran_addrecon.u2_frm_wd_uv = ps_dec->u2_frm_wd_uv
646
8.18k
                        << u1_field_pic_flag;
647
648
8.18k
        if(u1_field_pic_flag)
649
2.60k
        {
650
2.60k
            ui16_lastmbs_widthY += ps_dec->u2_frm_wd_y;
651
2.60k
            ui16_lastmbs_widthUV += ps_dec->u2_frm_wd_uv;
652
2.60k
        }
653
654
        /* Normal Increment of Pointer */
655
8.18k
        ps_dec->s_tran_addrecon.u4_inc_y[0] = ((ps_dec->u4_recon_mb_grp << 4)
656
8.18k
                        >> u1_mbaff);
657
8.18k
        ps_dec->s_tran_addrecon.u4_inc_uv[0] = ((ps_dec->u4_recon_mb_grp << 4)
658
8.18k
                        >> u1_mbaff);
659
660
        /* End of Row Increment */
661
8.18k
        ps_dec->s_tran_addrecon.u4_inc_y[1] = (ui16_lastmbs_widthY
662
8.18k
                        + (PAD_LEN_Y_H << 1)
663
8.18k
                        + ps_dec->s_tran_addrecon.u2_frm_wd_y
664
8.18k
                                        * ((15 << u1_mbaff) + u1_mbaff));
665
8.18k
        ps_dec->s_tran_addrecon.u4_inc_uv[1] = (ui16_lastmbs_widthUV
666
8.18k
                        + (PAD_LEN_UV_H << 2)
667
8.18k
                        + ps_dec->s_tran_addrecon.u2_frm_wd_uv
668
8.18k
                                        * ((15 << u1_mbaff) + u1_mbaff));
669
670
        /* Assign picture numbers to each frame/field  */
671
        /* only once per picture.                      */
672
8.18k
        ih264d_assign_pic_num(ps_dec);
673
8.18k
        ps_dec->s_tran_addrecon.u2_mv_top_left_inc = (ps_dec->u4_recon_mb_grp
674
8.18k
                        << 2) - 1 - (u1_mbaff << 2);
675
8.18k
        ps_dec->s_tran_addrecon.u2_mv_left_inc = ((ps_dec->u4_recon_mb_grp
676
8.18k
                        >> u1_mbaff) - 1) << (4 + u1_mbaff);
677
8.18k
    }
678
    /**********************************************************************/
679
    /* High profile related initialization at pictrue level               */
680
    /**********************************************************************/
681
8.18k
    if(ps_seq->u1_profile_idc == HIGH_PROFILE_IDC)
682
2.74k
    {
683
2.74k
        if((ps_seq->i4_seq_scaling_matrix_present_flag)
684
2.19k
                        || (ps_pps->i4_pic_scaling_matrix_present_flag))
685
593
        {
686
593
            ret = ih264d_form_scaling_matrix_picture(ps_seq, ps_pps, ps_dec);
687
593
            ps_dec->s_high_profile.u1_scaling_present = 1;
688
593
        }
689
2.15k
        else
690
2.15k
        {
691
2.15k
            ret = ih264d_form_default_scaling_matrix(ps_dec);
692
2.15k
        }
693
2.74k
    }
694
5.43k
    else
695
5.43k
    {
696
5.43k
        ret = ih264d_form_default_scaling_matrix(ps_dec);
697
5.43k
    }
698
699
8.18k
    ps_dec->s_high_profile.u1_transform8x8_present = ps_pps->i4_transform_8x8_mode_flag;
700
701
8.18k
    if(ret != OK)
702
0
        return ret;
703
704
    /* required while reading the transform_size_8x8 u4_flag */
705
8.18k
    ps_dec->s_high_profile.u1_direct_8x8_inference_flag =
706
8.18k
                    ps_seq->u1_direct_8x8_inference_flag;
707
8.18k
    ps_dec->s_high_profile.s_cavlc_ctxt = ps_dec->s_cavlc_ctxt;
708
709
8.18k
    ps_dec->i1_recon_in_thread3_flag = 1;
710
8.18k
    ps_dec->ps_frame_buf_ip_recon = &ps_dec->s_tran_addrecon;
711
8.18k
    if(ps_dec->u1_separate_parse)
712
4.45k
    {
713
4.45k
        memcpy(&ps_dec->s_tran_addrecon_parse, &ps_dec->s_tran_addrecon,
714
4.45k
               sizeof(tfr_ctxt_t));
715
4.45k
        if(ps_dec->u4_num_cores >= 3 && ps_dec->i1_recon_in_thread3_flag)
716
1.83k
        {
717
1.83k
            memcpy(&ps_dec->s_tran_iprecon, &ps_dec->s_tran_addrecon,
718
1.83k
                   sizeof(tfr_ctxt_t));
719
1.83k
            ps_dec->ps_frame_buf_ip_recon = &ps_dec->s_tran_iprecon;
720
1.83k
        }
721
4.45k
    }
722
723
724
8.18k
    ih264d_init_deblk_tfr_ctxt(ps_dec,&(ps_dec->s_pad_mgr), &(ps_dec->s_tran_addrecon),
725
8.18k
                               ps_dec->u2_frm_wd_in_mbs, 0);
726
727
8.18k
    ps_dec->ps_cur_deblk_mb = ps_dec->ps_deblk_pic;
728
8.18k
    ps_dec->u4_cur_deblk_mb_num = 0;
729
730
8.18k
    ps_dec->u4_deblk_mb_x = 0;
731
8.18k
    ps_dec->u4_deblk_mb_y = 0;
732
8.18k
    ps_dec->pu4_wt_ofsts = ps_dec->pu4_wts_ofsts_mat;
733
734
8.18k
    ps_dec->u4_first_slice_in_pic = 0;
735
8.18k
    H264_MUTEX_UNLOCK(&ps_dec->process_disp_mutex);
736
8.18k
    return OK;
737
8.18k
}
738
739
/*!
740
 **************************************************************************
741
 * \if Function name :  ih264d_deblock_display \endif
742
 *
743
 * \brief            :  The function callls the deblocking routine and manages
744
 :  the Recon buffers and displays .
745
 * \return           :  Nothing
746
 *
747
 **************************************************************************
748
 */
749
WORD32 ih264d_end_of_pic_dispbuf_mgr(dec_struct_t * ps_dec)
750
136k
{
751
136k
    dec_slice_params_t *ps_cur_slice = ps_dec->ps_cur_slice;
752
136k
    UWORD8 u1_num_of_users = 0;
753
136k
    WORD32 ret;
754
755
136k
    H264_MUTEX_LOCK(&ps_dec->process_disp_mutex);
756
136k
    if(1)
757
136k
    {
758
759
136k
        {
760
136k
            ih264d_delete_nonref_nondisplay_pics(ps_dec->ps_dpb_mgr);
761
136k
            if(ps_cur_slice->u1_mmco_equalto5
762
134k
                            || (ps_cur_slice->u1_nal_unit_type == IDR_SLICE_NAL))
763
112k
            {
764
112k
                ps_dec->ps_cur_pic->i4_poc = 0;
765
112k
                if(ps_dec->u4_total_mbs_coded
766
112k
                                == (ps_dec->ps_cur_sps->u4_max_mb_addr + 1))
767
112k
                    ih264d_reset_ref_bufs(ps_dec->ps_dpb_mgr);
768
112k
                ih264d_release_display_bufs(ps_dec);
769
112k
            }
770
136k
            if(IVD_DECODE_FRAME_OUT != ps_dec->e_frm_out_mode)
771
136k
            {
772
136k
                ret = ih264d_assign_display_seq(ps_dec);
773
136k
                if(ret != OK)
774
0
                    return ret;
775
136k
            }
776
136k
        }
777
778
136k
        if(ps_cur_slice->u1_nal_ref_idc)
779
116k
        {
780
            /* Mark pic buf as needed for reference */
781
116k
            ih264_buf_mgr_set_status((buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
782
116k
                                     ps_dec->u1_pic_buf_id,
783
116k
                                     BUF_MGR_REF);
784
            /* Mark mv buf as needed for reference */
785
116k
            ih264_buf_mgr_set_status((buf_mgr_t *)ps_dec->pv_mv_buf_mgr,
786
116k
                                     ps_dec->as_buf_id_info_map[ps_dec->u1_pic_buf_id].mv_buf_id,
787
116k
                                     BUF_MGR_REF);
788
116k
            ps_dec->au1_pic_buf_ref_flag[ps_dec->u1_pic_buf_id] = 1;
789
116k
        }
790
791
        /* 420 consumer */
792
        /* Increment the number of users by 1 for display based upon */
793
        /*the SEEK KEY FRAME control sent to decoder                 */
794
136k
        if(((0 == ps_dec->u1_last_pic_not_decoded)
795
136k
                        && (0
796
136k
                                        == (ps_dec->ps_cur_pic->u4_pack_slc_typ
797
136k
                                                        & ps_dec->u4_skip_frm_mask)))
798
0
                        || (ps_cur_slice->u1_nal_unit_type == IDR_SLICE_NAL))
799
136k
        {
800
            /* Mark pic buf as needed for display */
801
136k
            ih264_buf_mgr_set_status((buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
802
136k
                                     ps_dec->u1_pic_buf_id,
803
136k
                                     BUF_MGR_IO);
804
805
136k
        }
806
807
136k
        if(!ps_cur_slice->u1_field_pic_flag
808
2.60k
                        || ((TOP_FIELD_ONLY | BOT_FIELD_ONLY)
809
2.60k
                                        != ps_dec->u1_top_bottom_decoded))
810
136k
        {
811
136k
            pic_buffer_t *ps_cur_pic = ps_dec->ps_cur_pic;
812
136k
            ps_cur_pic->u2_disp_width = ps_dec->u2_disp_width;
813
136k
            ps_cur_pic->u2_disp_height = ps_dec->u2_disp_height >> 1;
814
815
136k
            ps_cur_pic->u2_crop_offset_y = ps_dec->u2_crop_offset_y;
816
136k
            ps_cur_pic->u2_crop_offset_uv = ps_dec->u2_crop_offset_uv;
817
136k
            ps_cur_pic->u1_pic_type = 0;
818
136k
            {
819
136k
                WORD64 i8_display_poc;
820
136k
                i8_display_poc = (WORD64)ps_dec->i4_prev_max_display_seq +
821
136k
                            ps_dec->ps_cur_pic->i4_poc;
822
136k
                if(IS_OUT_OF_RANGE_S32(i8_display_poc))
823
288
                {
824
288
                    ps_dec->i4_prev_max_display_seq = 0;
825
288
                }
826
136k
            }
827
136k
            ret = ih264d_insert_pic_in_display_list(
828
136k
                            ps_dec->ps_dpb_mgr,
829
136k
                            ps_dec->u1_pic_buf_id,
830
136k
                            ps_dec->i4_prev_max_display_seq
831
136k
                                            + ps_dec->ps_cur_pic->i4_poc,
832
136k
                            ps_dec->ps_cur_pic->i4_frame_num);
833
136k
            if(ret != OK)
834
5
                return ret;
835
836
136k
            {
837
136k
                ivd_video_decode_op_t * ps_dec_output =
838
136k
                                (ivd_video_decode_op_t *)ps_dec->pv_dec_out;
839
840
136k
                ps_dec_output->u4_frame_decoded_flag = 1;
841
136k
            }
842
136k
            if(ps_dec->au1_pic_buf_ref_flag[ps_dec->u1_pic_buf_id] == 0)
843
20.5k
            {
844
20.5k
                ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_mv_buf_mgr,
845
20.5k
                                      ps_dec->as_buf_id_info_map[ps_dec->u1_pic_buf_id].mv_buf_id,
846
20.5k
                                      BUF_MGR_REF);
847
20.5k
                ps_dec->au1_pic_buf_ref_flag[ps_dec->u1_pic_buf_id] = 0;
848
849
20.5k
            }
850
136k
        }
851
534
        else
852
534
        {
853
534
            H264_DEC_DEBUG_PRINT("pic not inserted display %d %d\n",
854
534
                                 ps_cur_slice->u1_field_pic_flag,
855
534
                                 ps_dec->u1_second_field);
856
534
        }
857
858
136k
        if(!ps_cur_slice->u1_field_pic_flag
859
2.60k
                        || ((TOP_FIELD_ONLY | BOT_FIELD_ONLY)
860
2.60k
                                        == ps_dec->u1_top_bottom_decoded))
861
134k
        {
862
134k
            if(IVD_DECODE_FRAME_OUT == ps_dec->e_frm_out_mode)
863
0
            {
864
0
                ret = ih264d_assign_display_seq(ps_dec);
865
0
                if(ret != OK)
866
0
                    return ret;
867
0
            }
868
134k
        }
869
136k
    }
870
871
136k
    H264_MUTEX_UNLOCK(&ps_dec->process_disp_mutex);
872
873
136k
    return OK;
874
136k
}
875
876
void ih264d_err_pic_dispbuf_mgr(dec_struct_t *ps_dec)
877
569
{
878
569
    dec_slice_params_t *ps_cur_slice = ps_dec->ps_cur_slice;
879
569
    ivd_video_decode_op_t * ps_dec_output =
880
569
                    (ivd_video_decode_op_t *)ps_dec->pv_dec_out;
881
882
569
    ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
883
569
                          ps_dec->u1_pic_buf_id,
884
569
                          BUF_MGR_REF);
885
569
    ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_mv_buf_mgr,
886
569
                          ps_dec->as_buf_id_info_map[ps_dec->u1_pic_buf_id].mv_buf_id,
887
569
                          BUF_MGR_REF);
888
569
    ih264_buf_mgr_release((buf_mgr_t *)ps_dec->pv_pic_buf_mgr,
889
569
                          ps_dec->u1_pic_buf_id,
890
569
                          BUF_MGR_IO);
891
569
}
892
893
void ih264d_deblock_picture(void *ptr)
894
136k
{
895
136k
    dec_struct_t *ps_dec = (dec_struct_t *)ptr;
896
897
136k
    {
898
        /*Deblock picture only if all the mb's in the frame have been decoded*/
899
136k
        if(ps_dec->u1_pic_decode_done == 1)
900
136k
        {
901
136k
            if(ps_dec->ps_cur_slice->u1_mbaff_frame_flag
902
134k
                            || ps_dec->ps_cur_slice->u1_field_pic_flag)
903
4.62k
            {
904
4.62k
                ps_dec->p_DeblockPicture[ps_dec->ps_cur_slice->u1_mbaff_frame_flag](
905
4.62k
                                ps_dec);
906
4.62k
            }
907
132k
            else
908
909
132k
            {
910
911
132k
                ih264d_deblock_picture_progressive(ps_dec);
912
132k
            }
913
914
136k
        }
915
136k
    }
916
917
136k
}
918
919
/*!
920
 **************************************************************************
921
 * \if Function name :  ih264d_deblock_display \endif
922
 *
923
 * \brief            :  The function callls the deblocking routine and manages
924
 :  the Recon buffers and displays .
925
 * \return           :  Nothing
926
 *
927
 **************************************************************************
928
 */
929
WORD32 ih264d_deblock_display(dec_struct_t *ps_dec)
930
136k
{
931
136k
    WORD32 ret;
932
    /* Call deblocking */
933
136k
    ih264d_deblock_picture(ps_dec);
934
935
136k
    ret = ih264d_end_of_pic_dispbuf_mgr(ps_dec);
936
136k
    if(ret != OK)
937
5
        return ret;
938
939
136k
    return OK;
940
136k
}
941
942
/*
943
 *!
944
 **************************************************************************
945
 * \if Function name : EndofPoc \endif
946
 *
947
 * \brief
948
 *    EndofPoc Processing
949
 *
950
 * \return
951
 *    0 on Success and Error code otherwise
952
 **************************************************************************
953
 */
954
955
WORD32 ih264d_end_of_pic(dec_struct_t *ps_dec)
956
136k
{
957
136k
    dec_slice_params_t *ps_cur_slice = ps_dec->ps_cur_slice;
958
136k
    WORD32 ret;
959
960
136k
    {
961
136k
        dec_err_status_t * ps_err = ps_dec->ps_dec_err_status;
962
136k
        if(ps_err->u1_err_flag & REJECT_CUR_PIC)
963
0
        {
964
0
            ih264d_err_pic_dispbuf_mgr(ps_dec);
965
0
            return ERROR_NEW_FRAME_EXPECTED;
966
0
        }
967
136k
    }
968
969
136k
    H264_MUTEX_LOCK(&ps_dec->process_disp_mutex);
970
136k
    ret = ih264d_end_of_pic_processing(ps_dec);
971
136k
    if(ret != OK)
972
0
        return ret;
973
    /*--------------------------------------------------------------------*/
974
    /* ih264d_decode_pic_order_cnt - calculate the Pic Order Cnt                    */
975
    /* Needed to detect end of picture                                    */
976
    /*--------------------------------------------------------------------*/
977
978
136k
    H264_MUTEX_UNLOCK(&ps_dec->process_disp_mutex);
979
980
136k
    return OK;
981
136k
}
982
983
984
/*!
985
 **************************************************************************
986
 * \if Function name : ih264d_fix_error_in_dpb \endif
987
 *
988
 * \brief
989
 *    fix error in DPB
990
 *
991
 * \return
992
 *    Number of node(s) deleted
993
 **************************************************************************
994
 */
995
996
WORD32 ih264d_fix_error_in_dpb(dec_struct_t *ps_dec)
997
150k
{
998
    /*--------------------------------------------------------------------*/
999
    /* If there is common node in lt_list and st_list then delete it from */
1000
    /* st_list                                                            */
1001
    /*--------------------------------------------------------------------*/
1002
150k
    UWORD8 no_of_nodes_deleted = 0;
1003
150k
    UWORD8 lt_ref_num = ps_dec->ps_dpb_mgr->u1_num_lt_ref_bufs;
1004
150k
    struct dpb_info_t *ps_lt_curr_dpb = ps_dec->ps_dpb_mgr->ps_dpb_ht_head;
1005
168k
    while(lt_ref_num && ps_lt_curr_dpb)
1006
18.4k
    {
1007
18.4k
        if(ps_dec->ps_dpb_mgr->ps_dpb_st_head
1008
1.61k
                && ((ps_lt_curr_dpb->s_bot_field.u1_reference_info
1009
1.61k
                        | ps_lt_curr_dpb->s_top_field.u1_reference_info)
1010
1.61k
                        == (IS_SHORT_TERM | IS_LONG_TERM)))
1011
0
        {
1012
0
            struct dpb_info_t *ps_st_next_dpb = ps_dec->ps_dpb_mgr->ps_dpb_st_head;
1013
0
            struct dpb_info_t *ps_st_curr_dpb = ps_dec->ps_dpb_mgr->ps_dpb_st_head;
1014
0
            UWORD8 st_ref_num = ps_dec->ps_dpb_mgr->u1_num_st_ref_bufs;
1015
0
            while(st_ref_num && ps_st_curr_dpb)
1016
0
            {
1017
0
                if(ps_st_curr_dpb == ps_lt_curr_dpb)
1018
0
                {
1019
0
                    if(st_ref_num == ps_dec->ps_dpb_mgr->u1_num_st_ref_bufs)
1020
0
                    {
1021
0
                        ps_dec->ps_dpb_mgr->ps_dpb_st_head =
1022
0
                                ps_dec->ps_dpb_mgr->ps_dpb_st_head->ps_prev_short;
1023
0
                        ps_st_curr_dpb = ps_dec->ps_dpb_mgr->ps_dpb_st_head;
1024
0
                    }
1025
0
                    else
1026
0
                    {
1027
0
                        ps_st_next_dpb->ps_prev_short = ps_st_curr_dpb->ps_prev_short;
1028
0
                    }
1029
0
                    ps_dec->ps_dpb_mgr->u1_num_st_ref_bufs--;
1030
0
                    no_of_nodes_deleted++;
1031
0
                    break;
1032
0
                }
1033
0
                ps_st_next_dpb = ps_st_curr_dpb;
1034
0
                ps_st_curr_dpb = ps_st_curr_dpb->ps_prev_short;
1035
0
                st_ref_num--;
1036
0
            }
1037
0
        }
1038
18.4k
        ps_lt_curr_dpb = ps_lt_curr_dpb->ps_prev_long;
1039
18.4k
        lt_ref_num--;
1040
18.4k
    }
1041
150k
    return no_of_nodes_deleted;
1042
150k
}
1043
1044
1045
/*!
1046
 **************************************************************************
1047
 * \if Function name : DecodeSlice \endif
1048
 *
1049
 * \brief
1050
 *    Parses a slice
1051
 *
1052
 * \return
1053
 *    0 on Success and Error code otherwise
1054
 **************************************************************************
1055
 */
1056
1057
WORD32 ih264d_parse_decode_slice(UWORD8 u1_is_idr_slice,
1058
                                 UWORD8 u1_nal_ref_idc,
1059
                                 dec_struct_t *ps_dec /* Decoder parameters */
1060
                                 )
1061
26.8k
{
1062
26.8k
    dec_bit_stream_t * ps_bitstrm = ps_dec->ps_bitstrm;
1063
26.8k
    dec_pic_params_t *ps_pps;
1064
26.8k
    dec_seq_params_t *ps_seq;
1065
26.8k
    dec_slice_params_t *ps_cur_slice = ps_dec->ps_cur_slice;
1066
26.8k
    pocstruct_t s_tmp_poc = {0};
1067
26.8k
    WORD32 i_delta_poc[2];
1068
26.8k
    WORD32 i4_poc = 0;
1069
26.8k
    UWORD16 u2_first_mb_in_slice, u2_frame_num;
1070
26.8k
    UWORD8 u1_field_pic_flag, u1_redundant_pic_cnt = 0, u1_slice_type;
1071
26.8k
    UWORD32 u4_idr_pic_id = 0;
1072
26.8k
    UWORD8 u1_bottom_field_flag, u1_pic_order_cnt_type;
1073
1074
26.8k
    UWORD8 u1_nal_unit_type;
1075
26.8k
    UWORD32 *pu4_bitstrm_buf = ps_bitstrm->pu4_buffer;
1076
26.8k
    UWORD32 *pu4_bitstrm_ofst = &ps_bitstrm->u4_ofst;
1077
26.8k
    WORD8 i1_is_end_of_poc;
1078
1079
26.8k
    WORD32 ret, end_of_frame;
1080
26.8k
    WORD32 prev_slice_err, num_mb_skipped;
1081
26.8k
    UWORD32 u4_mbaff;
1082
26.8k
    pocstruct_t *ps_cur_poc;
1083
1084
26.8k
    UWORD32 u4_temp;
1085
26.8k
    WORD32 i_temp;
1086
26.8k
    UWORD32 u4_call_end_of_pic = 0;
1087
1088
    /* read FirstMbInSlice  and slice type*/
1089
26.8k
    ps_dec->ps_dpb_cmds->u1_dpb_commands_read_slc = 0;
1090
26.8k
    u2_first_mb_in_slice = ih264d_uev(pu4_bitstrm_ofst,
1091
26.8k
                                     pu4_bitstrm_buf);
1092
26.8k
    if(u2_first_mb_in_slice
1093
26.8k
                    >= (ps_dec->u2_frm_ht_in_mbs * ps_dec->u2_frm_wd_in_mbs))
1094
1.20k
    {
1095
1096
1.20k
        return ERROR_CORRUPTED_SLICE;
1097
1.20k
    }
1098
1099
    /*we currently don not support ASO*/
1100
25.6k
    if(((u2_first_mb_in_slice << ps_cur_slice->u1_mbaff_frame_flag)
1101
25.6k
                    <= ps_dec->u4_cur_mb_addr) && (ps_dec->u4_first_slice_in_pic == 0))
1102
2.75k
    {
1103
2.75k
        return ERROR_CORRUPTED_SLICE;
1104
2.75k
    }
1105
1106
22.8k
    COPYTHECONTEXT("SH: first_mb_in_slice",u2_first_mb_in_slice);
1107
1108
22.8k
    u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
1109
1110
22.8k
    if(u4_temp > 9)
1111
183
        return ERROR_INV_SLC_TYPE_T;
1112
1113
22.7k
    u1_slice_type = u4_temp;
1114
22.7k
    COPYTHECONTEXT("SH: slice_type",(u1_slice_type));
1115
    /* Find Out the Slice Type is 5 to 9 or not then Set the Flag   */
1116
    /* u1_sl_typ_5_9 = 1 .Which tells that all the slices in the Pic*/
1117
    /* will be of same type of current                            */
1118
22.7k
    if(u1_slice_type > 4)
1119
12.1k
    {
1120
12.1k
        u1_slice_type -= 5;
1121
12.1k
    }
1122
1123
22.7k
    u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
1124
22.7k
    if(u4_temp & MASK_ERR_PIC_SET_ID)
1125
32
        return ERROR_INV_SLICE_HDR_T;
1126
    /* discard slice if pic param is invalid */
1127
22.6k
    COPYTHECONTEXT("SH: pic_parameter_set_id", u4_temp);
1128
22.6k
    ps_pps = &ps_dec->ps_pps[u4_temp];
1129
22.6k
    if(FALSE == ps_pps->u1_is_valid)
1130
330
    {
1131
330
        return ERROR_INV_SLICE_HDR_T;
1132
330
    }
1133
22.3k
    ps_seq = ps_pps->ps_sps;
1134
22.3k
    if(!ps_seq)
1135
0
        return ERROR_INV_SLICE_HDR_T;
1136
22.3k
    if(FALSE == ps_seq->u1_is_valid)
1137
0
        return ERROR_INV_SLICE_HDR_T;
1138
1139
    /* Get the frame num */
1140
22.3k
    u2_frame_num = ih264d_get_bits_h264(ps_bitstrm,
1141
22.3k
                                         ps_seq->u1_bits_in_frm_num);
1142
//    H264_DEC_DEBUG_PRINT("FRAME %d First MB in slice: %d\n", u2_frame_num, u2_first_mb_in_slice);
1143
1144
22.3k
    COPYTHECONTEXT("SH: frame_num", u2_frame_num);
1145
//    H264_DEC_DEBUG_PRINT("Second field: %d frame num: %d prv_frame_num: %d \n", ps_dec->u1_second_field, u2_frame_num, ps_dec->u2_prv_frame_num);
1146
22.3k
    if(!ps_dec->u1_first_slice_in_stream && ps_dec->u4_first_slice_in_pic)
1147
12.7k
    {
1148
12.7k
        pocstruct_t *ps_prev_poc = &ps_dec->s_prev_pic_poc;
1149
12.7k
        pocstruct_t *ps_cur_poc = &ps_dec->s_cur_pic_poc;
1150
1151
12.7k
        ps_dec->u2_mbx = 0xffff;
1152
12.7k
        ps_dec->u2_mby = 0;
1153
1154
12.7k
        if((0 == u1_is_idr_slice) && ps_cur_slice->u1_nal_ref_idc)
1155
6.35k
            ps_dec->u2_prev_ref_frame_num = ps_cur_slice->u2_frame_num;
1156
1157
12.7k
        if(u1_is_idr_slice || ps_cur_slice->u1_mmco_equalto5)
1158
4.52k
            ps_dec->u2_prev_ref_frame_num = 0;
1159
1160
12.7k
        if(ps_dec->ps_cur_sps->u1_gaps_in_frame_num_value_allowed_flag)
1161
2.51k
        {
1162
2.51k
            ret = ih264d_decode_gaps_in_frame_num(ps_dec, u2_frame_num);
1163
2.51k
            if (ret != OK) {
1164
962
                return ERROR_DBP_MANAGER_T;
1165
962
            }
1166
2.51k
        }
1167
1168
11.7k
        ps_prev_poc->i4_prev_frame_num_ofst = ps_cur_poc->i4_prev_frame_num_ofst;
1169
11.7k
        ps_prev_poc->u2_frame_num = ps_cur_poc->u2_frame_num;
1170
11.7k
        ps_prev_poc->u1_mmco_equalto5 = ps_cur_slice->u1_mmco_equalto5;
1171
11.7k
        if(ps_cur_slice->u1_nal_ref_idc)
1172
7.85k
        {
1173
7.85k
            ps_prev_poc->i4_pic_order_cnt_lsb = ps_cur_poc->i4_pic_order_cnt_lsb;
1174
7.85k
            ps_prev_poc->i4_pic_order_cnt_msb = ps_cur_poc->i4_pic_order_cnt_msb;
1175
7.85k
            ps_prev_poc->i4_delta_pic_order_cnt_bottom =
1176
7.85k
                            ps_cur_poc->i4_delta_pic_order_cnt_bottom;
1177
7.85k
            ps_prev_poc->i4_delta_pic_order_cnt[0] =
1178
7.85k
                            ps_cur_poc->i4_delta_pic_order_cnt[0];
1179
7.85k
            ps_prev_poc->i4_delta_pic_order_cnt[1] =
1180
7.85k
                            ps_cur_poc->i4_delta_pic_order_cnt[1];
1181
7.85k
            ps_prev_poc->u1_bot_field = ps_cur_poc->u1_bot_field;
1182
7.85k
        }
1183
1184
11.7k
        ps_dec->u4_total_mbs_coded = 0;
1185
11.7k
    }
1186
    /* Get the field related flags  */
1187
21.3k
    if(!ps_seq->u1_frame_mbs_only_flag)
1188
12.0k
    {
1189
1190
12.0k
        u1_field_pic_flag = ih264d_get_bit_h264(ps_bitstrm);
1191
12.0k
        COPYTHECONTEXT("SH: field_pic_flag", u1_field_pic_flag);
1192
12.0k
        u1_bottom_field_flag = 0;
1193
1194
12.0k
        if(u1_field_pic_flag)
1195
5.89k
        {
1196
5.89k
            ps_dec->pu1_inv_scan = (UWORD8 *)gau1_ih264d_inv_scan_fld;
1197
5.89k
            u1_bottom_field_flag = ih264d_get_bit_h264(ps_bitstrm);
1198
5.89k
            COPYTHECONTEXT("SH: bottom_field_flag", u1_bottom_field_flag);
1199
1200
5.89k
        }
1201
6.11k
        else
1202
6.11k
        {
1203
6.11k
            ps_dec->pu1_inv_scan = (UWORD8 *)gau1_ih264d_inv_scan;
1204
6.11k
        }
1205
12.0k
    }
1206
9.36k
    else
1207
9.36k
    {
1208
9.36k
        u1_field_pic_flag = 0;
1209
9.36k
        u1_bottom_field_flag = 0;
1210
1211
9.36k
        ps_dec->pu1_inv_scan = (UWORD8 *)gau1_ih264d_inv_scan;
1212
9.36k
    }
1213
1214
21.3k
    u1_nal_unit_type = SLICE_NAL;
1215
21.3k
    if(u1_is_idr_slice)
1216
5.74k
    {
1217
5.74k
        u1_nal_unit_type = IDR_SLICE_NAL;
1218
5.74k
        u4_idr_pic_id = ih264d_uev(pu4_bitstrm_ofst,
1219
5.74k
                                   pu4_bitstrm_buf);
1220
5.74k
        if(u4_idr_pic_id > 65535)
1221
12
            return ERROR_INV_SLICE_HDR_T;
1222
5.73k
        COPYTHECONTEXT("SH:  ", u4_idr_pic_id);
1223
5.73k
    }
1224
1225
    /* read delta pic order count information*/
1226
21.3k
    i_delta_poc[0] = i_delta_poc[1] = 0;
1227
21.3k
    s_tmp_poc.i4_pic_order_cnt_lsb = 0;
1228
21.3k
    s_tmp_poc.i4_delta_pic_order_cnt_bottom = 0;
1229
21.3k
    u1_pic_order_cnt_type = ps_seq->u1_pic_order_cnt_type;
1230
21.3k
    if(u1_pic_order_cnt_type == 0)
1231
12.4k
    {
1232
12.4k
        i_temp = ih264d_get_bits_h264(
1233
12.4k
                        ps_bitstrm,
1234
12.4k
                        ps_seq->u1_log2_max_pic_order_cnt_lsb_minus);
1235
12.4k
        if(i_temp < 0 || i_temp >= ps_seq->i4_max_pic_order_cntLsb)
1236
0
            return ERROR_INV_SLICE_HDR_T;
1237
12.4k
        s_tmp_poc.i4_pic_order_cnt_lsb = i_temp;
1238
12.4k
        COPYTHECONTEXT("SH: pic_order_cnt_lsb", s_tmp_poc.i4_pic_order_cnt_lsb);
1239
1240
12.4k
        if((ps_pps->u1_pic_order_present_flag == 1) && (!u1_field_pic_flag))
1241
3.68k
        {
1242
3.68k
            s_tmp_poc.i4_delta_pic_order_cnt_bottom = ih264d_sev(
1243
3.68k
                            pu4_bitstrm_ofst, pu4_bitstrm_buf);
1244
            //if(s_tmp_poc.i4_delta_pic_order_cnt_bottom > ps_seq->i4_max_pic_order_cntLsb)
1245
3.68k
            COPYTHECONTEXT("SH: delta_pic_order_cnt_bottom",
1246
3.68k
                            s_tmp_poc.i4_delta_pic_order_cnt_bottom);
1247
3.68k
        }
1248
12.4k
    }
1249
1250
21.3k
    s_tmp_poc.i4_delta_pic_order_cnt[0] = 0;
1251
21.3k
    s_tmp_poc.i4_delta_pic_order_cnt[1] = 0;
1252
21.3k
    if(u1_pic_order_cnt_type == 1
1253
4.42k
                    && (!ps_seq->u1_delta_pic_order_always_zero_flag))
1254
4.00k
    {
1255
4.00k
        s_tmp_poc.i4_delta_pic_order_cnt[0] = ih264d_sev(pu4_bitstrm_ofst,
1256
4.00k
                                                         pu4_bitstrm_buf);
1257
4.00k
        COPYTHECONTEXT("SH: delta_pic_order_cnt[0]",
1258
4.00k
                        s_tmp_poc.i4_delta_pic_order_cnt[0]);
1259
1260
4.00k
        if(ps_pps->u1_pic_order_present_flag && !u1_field_pic_flag)
1261
1.56k
        {
1262
1.56k
            s_tmp_poc.i4_delta_pic_order_cnt[1] = ih264d_sev(
1263
1.56k
                            pu4_bitstrm_ofst, pu4_bitstrm_buf);
1264
1.56k
            COPYTHECONTEXT("SH: delta_pic_order_cnt[1]",
1265
1.56k
                            s_tmp_poc.i4_delta_pic_order_cnt[1]);
1266
1.56k
        }
1267
4.00k
    }
1268
1269
21.3k
    if(ps_pps->u1_redundant_pic_cnt_present_flag)
1270
1.90k
    {
1271
1.90k
        u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
1272
1.90k
        if(u4_temp > MAX_REDUNDANT_PIC_CNT)
1273
130
            return ERROR_INV_SLICE_HDR_T;
1274
1.77k
        u1_redundant_pic_cnt = u4_temp;
1275
1.77k
        COPYTHECONTEXT("SH: redundant_pic_cnt", u1_redundant_pic_cnt);
1276
1.77k
    }
1277
1278
    /*--------------------------------------------------------------------*/
1279
    /* Check if the slice is part of new picture                          */
1280
    /*--------------------------------------------------------------------*/
1281
    /* First slice of a picture is always considered as part of new picture */
1282
21.2k
    i1_is_end_of_poc = 1;
1283
21.2k
    ps_dec->ps_dec_err_status->u1_err_flag &= MASK_REJECT_CUR_PIC;
1284
1285
21.2k
    if(ps_dec->u4_first_slice_in_pic == 0)
1286
7.29k
    {
1287
7.29k
        i1_is_end_of_poc = ih264d_is_end_of_pic(u2_frame_num, u1_nal_ref_idc,
1288
7.29k
                                            &s_tmp_poc, &ps_dec->s_cur_pic_poc,
1289
7.29k
                                            ps_cur_slice, u1_pic_order_cnt_type,
1290
7.29k
                                            u1_nal_unit_type, u4_idr_pic_id,
1291
7.29k
                                            u1_field_pic_flag,
1292
7.29k
                                            u1_bottom_field_flag);
1293
7.29k
        if(i1_is_end_of_poc)
1294
685
        {
1295
685
            ps_dec->u1_first_slice_in_stream = 0;
1296
685
            return ERROR_INCOMPLETE_FRAME;
1297
685
        }
1298
1299
7.29k
    }
1300
1301
    /*--------------------------------------------------------------------*/
1302
    /* Check for error in slice and parse the missing/corrupted MB's      */
1303
    /* as skip-MB's in an inserted P-slice                                */
1304
    /*--------------------------------------------------------------------*/
1305
20.5k
    u4_mbaff = ps_seq->u1_mb_aff_flag && (!u1_field_pic_flag);
1306
20.5k
    prev_slice_err = 0;
1307
1308
20.5k
    if(i1_is_end_of_poc || ps_dec->u1_first_slice_in_stream)
1309
13.9k
    {
1310
        /* If the current slice is not a field or frame number of the current
1311
         * slice doesn't match with previous slice, and decoder is expecting
1312
         * to decode a field i.e. ps_dec->u1_top_bottom_decoded is not 0 and
1313
         * is not (TOP_FIELD_ONLY | BOT_FIELD_ONLY), treat it as a dangling
1314
         * field */
1315
13.9k
        if((u1_field_pic_flag == 0 || u2_frame_num != ps_dec->u2_prv_frame_num)
1316
10.5k
               && ps_dec->u1_top_bottom_decoded != 0
1317
518
                   && ps_dec->u1_top_bottom_decoded
1318
518
                       != (TOP_FIELD_ONLY | BOT_FIELD_ONLY))
1319
518
        {
1320
518
            ps_dec->u1_dangling_field = 1;
1321
518
            if(ps_dec->u4_first_slice_in_pic)
1322
518
            {
1323
                // first slice - dangling field
1324
518
                prev_slice_err = 1;
1325
518
            }
1326
0
            else
1327
0
            {
1328
                // last slice - dangling field
1329
0
                prev_slice_err = 2;
1330
0
            }
1331
1332
518
            if(ps_dec->u1_top_bottom_decoded ==TOP_FIELD_ONLY)
1333
345
                ps_cur_slice->u1_bottom_field_flag = 1;
1334
173
            else
1335
173
                ps_cur_slice->u1_bottom_field_flag = 0;
1336
1337
518
            num_mb_skipped = (ps_dec->u2_frm_ht_in_mbs * ps_dec->u2_frm_wd_in_mbs)
1338
518
                    - ps_dec->u4_total_mbs_coded;
1339
518
            ps_cur_poc = &ps_dec->s_cur_pic_poc;
1340
1341
518
            u1_is_idr_slice = ps_cur_slice->u1_nal_unit_type == IDR_SLICE_NAL;
1342
518
        }
1343
13.4k
        else if(ps_dec->u4_first_slice_in_pic)
1344
13.4k
        {
1345
13.4k
            if(u2_first_mb_in_slice > 0)
1346
4.37k
            {
1347
                // first slice - missing/header corruption
1348
4.37k
                prev_slice_err = 1;
1349
4.37k
                num_mb_skipped = u2_first_mb_in_slice << u4_mbaff;
1350
4.37k
                ps_cur_poc = &s_tmp_poc;
1351
1352
                // initializing slice parameters
1353
4.37k
                ps_cur_slice->u4_idr_pic_id = u4_idr_pic_id;
1354
4.37k
                ps_cur_slice->u1_field_pic_flag = u1_field_pic_flag;
1355
4.37k
                ps_cur_slice->u1_bottom_field_flag = u1_bottom_field_flag;
1356
4.37k
                ps_cur_slice->i4_pic_order_cnt_lsb =
1357
4.37k
                        s_tmp_poc.i4_pic_order_cnt_lsb;
1358
4.37k
                ps_cur_slice->u1_nal_unit_type = u1_nal_unit_type;
1359
4.37k
                ps_cur_slice->u1_redundant_pic_cnt = u1_redundant_pic_cnt;
1360
4.37k
                ps_cur_slice->u1_nal_ref_idc = u1_nal_ref_idc;
1361
4.37k
                ps_cur_slice->u1_pic_order_cnt_type = u1_pic_order_cnt_type;
1362
4.37k
                ps_cur_slice->u1_mbaff_frame_flag = ps_seq->u1_mb_aff_flag
1363
1.95k
                        && (!u1_field_pic_flag);
1364
4.37k
            }
1365
13.4k
        }
1366
3
        else
1367
3
        {
1368
            /* since i1_is_end_of_poc is set ,means new frame num is encountered. so conceal the current frame
1369
             * completely */
1370
3
            prev_slice_err = 2;
1371
3
            num_mb_skipped = (ps_dec->u2_frm_ht_in_mbs
1372
3
                            * ps_dec->u2_frm_wd_in_mbs)
1373
3
                            - ps_dec->u4_total_mbs_coded;
1374
3
            ps_cur_poc = &s_tmp_poc;
1375
3
        }
1376
13.9k
    }
1377
6.60k
    else
1378
6.60k
    {
1379
6.60k
        if((u2_first_mb_in_slice << u4_mbaff) > ps_dec->u4_total_mbs_coded)
1380
1.18k
        {
1381
            // previous slice - missing/corruption
1382
1.18k
            prev_slice_err = 2;
1383
1.18k
            num_mb_skipped = (u2_first_mb_in_slice << u4_mbaff)
1384
1.18k
                    - ps_dec->u4_total_mbs_coded;
1385
1.18k
            ps_cur_poc = &s_tmp_poc;
1386
1.18k
        }
1387
5.42k
        else if((u2_first_mb_in_slice << u4_mbaff) < ps_dec->u4_total_mbs_coded)
1388
0
        {
1389
0
            return ERROR_CORRUPTED_SLICE;
1390
0
        }
1391
6.60k
    }
1392
1393
20.5k
    if(prev_slice_err)
1394
6.08k
    {
1395
6.08k
        ret = ih264d_mark_err_slice_skip(ps_dec, num_mb_skipped, u1_is_idr_slice, u2_frame_num, ps_cur_poc, prev_slice_err);
1396
1397
6.08k
        if(ps_dec->u1_dangling_field == 1)
1398
518
        {
1399
518
            ps_dec->u1_second_field = 1 - ps_dec->u1_second_field;
1400
518
            ps_dec->u1_first_slice_in_stream = 0;
1401
518
            ps_dec->u1_top_bottom_decoded = TOP_FIELD_ONLY | BOT_FIELD_ONLY;
1402
518
            return ERROR_DANGLING_FIELD_IN_PIC;
1403
518
        }
1404
1405
5.56k
        if(prev_slice_err == 2)
1406
1.18k
        {
1407
1.18k
            ps_dec->u1_first_slice_in_stream = 0;
1408
1.18k
            return ERROR_INCOMPLETE_FRAME;
1409
1.18k
        }
1410
1411
4.37k
        if(ps_dec->u4_total_mbs_coded
1412
4.37k
                >= ps_dec->u2_frm_ht_in_mbs * ps_dec->u2_frm_wd_in_mbs)
1413
41
        {
1414
            /* return if all MBs in frame are parsed*/
1415
41
            ps_dec->u1_first_slice_in_stream = 0;
1416
41
            return ERROR_IN_LAST_SLICE_OF_PIC;
1417
41
        }
1418
1419
4.33k
        if(ps_dec->ps_dec_err_status->u1_err_flag & REJECT_CUR_PIC)
1420
569
        {
1421
569
            ih264d_err_pic_dispbuf_mgr(ps_dec);
1422
569
            return ERROR_NEW_FRAME_EXPECTED;
1423
569
        }
1424
1425
3.76k
        if(ret != OK)
1426
43
            return ret;
1427
1428
3.72k
        i1_is_end_of_poc = 0;
1429
3.72k
    }
1430
1431
18.1k
    if(u1_field_pic_flag)
1432
5.05k
    {
1433
5.05k
        ps_dec->u2_prv_frame_num = u2_frame_num;
1434
5.05k
    }
1435
1436
18.1k
    if(ps_cur_slice->u1_mmco_equalto5)
1437
1.13k
    {
1438
1.13k
        WORD64 i8_result;
1439
1.13k
        WORD32 i4_temp_poc;
1440
1.13k
        WORD32 i4_top_field_order_poc, i4_bot_field_order_poc;
1441
1442
1.13k
        if(!ps_cur_slice->u1_field_pic_flag) // or a complementary field pair
1443
615
        {
1444
615
            i4_top_field_order_poc = ps_dec->ps_cur_pic->i4_top_field_order_cnt;
1445
615
            i4_bot_field_order_poc =
1446
615
                            ps_dec->ps_cur_pic->i4_bottom_field_order_cnt;
1447
615
            i4_temp_poc = MIN(i4_top_field_order_poc,
1448
615
                                     i4_bot_field_order_poc);
1449
615
        }
1450
523
        else if(!ps_cur_slice->u1_bottom_field_flag)
1451
311
            i4_temp_poc = ps_dec->ps_cur_pic->i4_top_field_order_cnt;
1452
212
        else
1453
212
            i4_temp_poc = ps_dec->ps_cur_pic->i4_bottom_field_order_cnt;
1454
1455
1.13k
        i8_result = (WORD64)i4_temp_poc - ps_dec->ps_cur_pic->i4_top_field_order_cnt;
1456
1.13k
        if(IS_OUT_OF_RANGE_S32(i8_result))
1457
319
        {
1458
319
            return ERROR_INV_POC;
1459
319
        }
1460
819
        ps_dec->ps_cur_pic->i4_top_field_order_cnt = i8_result;
1461
819
        i8_result = (WORD64)i4_temp_poc
1462
819
                        - ps_dec->ps_cur_pic->i4_bottom_field_order_cnt;
1463
819
        if(IS_OUT_OF_RANGE_S32(i8_result))
1464
130
        {
1465
130
            return ERROR_INV_POC;
1466
130
        }
1467
689
        ps_dec->ps_cur_pic->i4_bottom_field_order_cnt = i8_result;
1468
689
        ps_dec->ps_cur_pic->i4_poc = i4_temp_poc;
1469
689
        ps_dec->ps_cur_pic->i4_avg_poc = i4_temp_poc;
1470
689
    }
1471
17.7k
    if(ps_dec->u4_first_slice_in_pic)
1472
8.67k
    {
1473
8.67k
        ret = ih264d_decode_pic_order_cnt(u1_is_idr_slice, u2_frame_num,
1474
8.67k
                                          &ps_dec->s_prev_pic_poc,
1475
8.67k
                                          &s_tmp_poc, ps_cur_slice, ps_pps,
1476
8.67k
                                          u1_nal_ref_idc,
1477
8.67k
                                          u1_bottom_field_flag,
1478
8.67k
                                          u1_field_pic_flag, &i4_poc);
1479
8.67k
        if(ret != OK)
1480
4.29k
            return ret;
1481
        /* Display seq no calculations */
1482
4.37k
        if(i4_poc >= ps_dec->i4_max_poc)
1483
2.89k
            ps_dec->i4_max_poc = i4_poc;
1484
        /* IDR Picture or POC wrap around */
1485
4.37k
        if(i4_poc == 0)
1486
1.74k
        {
1487
1.74k
            WORD64 i8_temp;
1488
1.74k
            i8_temp = (WORD64)ps_dec->i4_prev_max_display_seq
1489
1.74k
                      + ps_dec->i4_max_poc
1490
1.74k
                      + ps_dec->u1_max_dec_frame_buffering + 1;
1491
            /*If i4_prev_max_display_seq overflows integer range, reset it */
1492
1.74k
            ps_dec->i4_prev_max_display_seq = IS_OUT_OF_RANGE_S32(i8_temp)?
1493
1.71k
                                              0 : i8_temp;
1494
1.74k
            ps_dec->i4_max_poc = 0;
1495
1.74k
        }
1496
4.37k
    }
1497
1498
    /* Increment only if the current slice has atleast 1 more MB */
1499
13.4k
    if (ps_dec->u4_first_slice_in_pic == 0 &&
1500
9.07k
        (ps_dec->ps_parse_cur_slice->u4_first_mb_in_slice <
1501
9.07k
        (UWORD32)(ps_dec->u4_total_mbs_coded >> ps_dec->ps_cur_slice->u1_mbaff_frame_flag)))
1502
9.07k
    {
1503
9.07k
        ps_dec->ps_parse_cur_slice++;
1504
9.07k
        ps_dec->u2_cur_slice_num++;
1505
        // in the case of single core increment ps_decode_cur_slice
1506
9.07k
        if(ps_dec->u1_separate_parse == 0)
1507
2.36k
        {
1508
2.36k
            ps_dec->ps_decode_cur_slice++;
1509
2.36k
        }
1510
9.07k
    }
1511
1512
13.4k
    ps_dec->u1_slice_header_done = 0;
1513
1514
    /*--------------------------------------------------------------------*/
1515
    /* Copy the values read from the bitstream to the slice header and then*/
1516
    /* If the slice is first slice in picture, then do Start of Picture   */
1517
    /* processing.                                                        */
1518
    /*--------------------------------------------------------------------*/
1519
13.4k
    ps_cur_slice->i4_delta_pic_order_cnt[0] = i_delta_poc[0];
1520
13.4k
    ps_cur_slice->i4_delta_pic_order_cnt[1] = i_delta_poc[1];
1521
13.4k
    ps_cur_slice->u4_idr_pic_id = u4_idr_pic_id;
1522
13.4k
    ps_cur_slice->u2_first_mb_in_slice = u2_first_mb_in_slice;
1523
13.4k
    ps_cur_slice->u1_field_pic_flag = u1_field_pic_flag;
1524
13.4k
    ps_cur_slice->u1_bottom_field_flag = u1_bottom_field_flag;
1525
13.4k
    ps_cur_slice->u1_slice_type = u1_slice_type;
1526
13.4k
    ps_cur_slice->i4_pic_order_cnt_lsb = s_tmp_poc.i4_pic_order_cnt_lsb;
1527
1528
13.4k
    ps_cur_slice->u1_nal_unit_type = u1_nal_unit_type;
1529
13.4k
    ps_cur_slice->u1_redundant_pic_cnt = u1_redundant_pic_cnt;
1530
13.4k
    ps_cur_slice->u1_nal_ref_idc = u1_nal_ref_idc;
1531
13.4k
    ps_cur_slice->u1_pic_order_cnt_type = u1_pic_order_cnt_type;
1532
1533
13.4k
    if(ps_seq->u1_frame_mbs_only_flag)
1534
6.98k
        ps_cur_slice->u1_direct_8x8_inference_flag =
1535
6.98k
                        ps_seq->u1_direct_8x8_inference_flag;
1536
6.45k
    else
1537
6.45k
        ps_cur_slice->u1_direct_8x8_inference_flag = 1;
1538
1539
13.4k
    if(u1_slice_type == B_SLICE)
1540
5.06k
    {
1541
5.06k
        ps_cur_slice->u1_direct_spatial_mv_pred_flag = ih264d_get_bit_h264(
1542
5.06k
                        ps_bitstrm);
1543
5.06k
        COPYTHECONTEXT("SH: direct_spatial_mv_pred_flag",
1544
5.06k
                        ps_cur_slice->u1_direct_spatial_mv_pred_flag);
1545
1546
5.06k
        if(ps_cur_slice->u1_direct_spatial_mv_pred_flag)
1547
3.31k
            ps_cur_slice->pf_decodeDirect = ih264d_decode_spatial_direct;
1548
1.74k
        else
1549
1.74k
            ps_cur_slice->pf_decodeDirect = ih264d_decode_temporal_direct;
1550
5.06k
        if(!((ps_pps->ps_sps->u1_mb_aff_flag) && (!u1_field_pic_flag)))
1551
3.94k
            ps_dec->pf_mvpred = ih264d_mvpred_nonmbaffB;
1552
5.06k
    }
1553
8.38k
    else
1554
8.38k
    {
1555
8.38k
        if(!((ps_pps->ps_sps->u1_mb_aff_flag) && (!u1_field_pic_flag)))
1556
7.37k
            ps_dec->pf_mvpred = ih264d_mvpred_nonmbaff;
1557
8.38k
    }
1558
1559
13.4k
    if(ps_dec->u4_first_slice_in_pic)
1560
4.37k
    {
1561
4.37k
        if(u2_first_mb_in_slice == 0)
1562
4.37k
        {
1563
4.37k
            ret = ih264d_start_of_pic(ps_dec, i4_poc, &s_tmp_poc, u2_frame_num, ps_pps);
1564
4.37k
            if(ret != OK)
1565
471
                return ret;
1566
4.37k
        }
1567
1568
3.90k
        ps_dec->u4_output_present = 0;
1569
1570
3.90k
        {
1571
3.90k
            ih264d_get_next_display_field(ps_dec,
1572
3.90k
                                          ps_dec->ps_out_buffer,
1573
3.90k
                                          &(ps_dec->s_disp_op));
1574
            /* If error code is non-zero then there is no buffer available for display,
1575
             hence avoid format conversion */
1576
1577
3.90k
            if(0 != ps_dec->s_disp_op.u4_error_code)
1578
1.64k
            {
1579
1.64k
                ps_dec->u4_fmt_conv_cur_row = ps_dec->s_disp_frame_info.u4_y_ht;
1580
1.64k
            }
1581
2.26k
            else
1582
2.26k
                ps_dec->u4_output_present = 1;
1583
3.90k
        }
1584
3.90k
        if(ps_dec->u1_separate_parse == 1)
1585
1.82k
        {
1586
1.82k
            if(ps_dec->u4_dec_thread_created == 0)
1587
129
            {
1588
129
                ithread_create(ps_dec->pv_dec_thread_handle, NULL,
1589
129
                               (void *)ih264d_decode_picture_thread,
1590
129
                               (void *)ps_dec);
1591
1592
129
                ps_dec->u4_dec_thread_created = 1;
1593
129
            }
1594
1.82k
            if(ps_dec->i4_threads_active)
1595
1.82k
            {
1596
1.82k
                ret = ithread_mutex_lock(ps_dec->apv_proc_start_mutex[0]);
1597
1.82k
                RETURN_IF((ret != IV_SUCCESS), ret);
1598
1599
1.82k
                ps_dec->ai4_process_start[0] = PROC_START;
1600
1.82k
                ret = ithread_cond_signal(ps_dec->apv_proc_start_condition[0]);
1601
1.82k
                RETURN_IF((ret != IV_SUCCESS), ret);
1602
1603
1.82k
                ret = ithread_mutex_unlock(ps_dec->apv_proc_start_mutex[0]);
1604
1.82k
                RETURN_IF((ret != IV_SUCCESS), ret);
1605
1.82k
            }
1606
1607
1.82k
            if((ps_dec->u4_num_cores == 3) &&
1608
746
                            ((ps_dec->u4_app_disable_deblk_frm == 0) || ps_dec->i1_recon_in_thread3_flag)
1609
746
                            && (ps_dec->u4_bs_deblk_thread_created == 0))
1610
59
            {
1611
59
                ps_dec->u4_start_recon_deblk = 0;
1612
59
                ithread_create(ps_dec->pv_bs_deblk_thread_handle, NULL,
1613
59
                               (void *)ih264d_recon_deblk_thread,
1614
59
                               (void *)ps_dec);
1615
59
                ps_dec->u4_bs_deblk_thread_created = 1;
1616
59
            }
1617
1.82k
            if(ps_dec->i4_threads_active)
1618
1.82k
            {
1619
1.82k
                if (ps_dec->u4_bs_deblk_thread_created)
1620
746
                {
1621
746
                    ret = ithread_mutex_lock(ps_dec->apv_proc_start_mutex[1]);
1622
746
                    RETURN_IF((ret != IV_SUCCESS), ret);
1623
1624
746
                    ps_dec->ai4_process_start[1] = PROC_START;
1625
746
                    ret = ithread_cond_signal(ps_dec->apv_proc_start_condition[1]);
1626
746
                    RETURN_IF((ret != IV_SUCCESS), ret);
1627
1628
746
                    ret = ithread_mutex_unlock(ps_dec->apv_proc_start_mutex[1]);
1629
746
                    RETURN_IF((ret != IV_SUCCESS), ret);
1630
746
                }
1631
1.82k
            }
1632
1.82k
        }
1633
1634
3.90k
    }
1635
1636
    /* INITIALIZATION of fn ptrs for MC and formMbPartInfo functions */
1637
12.9k
    {
1638
12.9k
        UWORD8 uc_nofield_nombaff;
1639
1640
1641
1642
12.9k
        uc_nofield_nombaff = ((ps_dec->ps_cur_slice->u1_field_pic_flag == 0)
1643
9.88k
                        && (ps_dec->ps_cur_slice->u1_mbaff_frame_flag == 0)
1644
7.84k
                        && (u1_slice_type != B_SLICE)
1645
6.54k
                        && (ps_dec->ps_cur_pps->u1_wted_pred_flag == 0));
1646
1647
        /* Initialise MC and formMbPartInfo fn ptrs one time based on profile_idc */
1648
1649
12.9k
        if(uc_nofield_nombaff)
1650
3.22k
        {
1651
3.22k
            ps_dec->p_form_mb_part_info = ih264d_form_mb_part_info_bp;
1652
3.22k
            ps_dec->p_motion_compensate = ih264d_motion_compensate_bp;
1653
3.22k
        }
1654
9.75k
        else
1655
9.75k
        {
1656
9.75k
            ps_dec->p_form_mb_part_info = ih264d_form_mb_part_info_mp;
1657
9.75k
            ps_dec->p_motion_compensate = ih264d_motion_compensate_mp;
1658
9.75k
        }
1659
1660
1661
12.9k
    }
1662
1663
    /*
1664
     * Decide whether to decode the current picture or not
1665
     */
1666
12.9k
    {
1667
12.9k
        dec_err_status_t * ps_err = ps_dec->ps_dec_err_status;
1668
12.9k
        if(ps_err->u4_frm_sei_sync == u2_frame_num)
1669
0
        {
1670
0
            ps_err->u1_err_flag = ACCEPT_ALL_PICS;
1671
0
            ps_err->u4_frm_sei_sync = SYNC_FRM_DEFAULT;
1672
0
        }
1673
12.9k
        ps_err->u4_cur_frm = u2_frame_num;
1674
12.9k
    }
1675
1676
    /* Decision for decoding if the picture is to be skipped */
1677
12.9k
    {
1678
12.9k
        WORD32 i4_skip_b_pic, i4_skip_p_pic;
1679
1680
12.9k
        i4_skip_b_pic = (ps_dec->u4_skip_frm_mask & B_SLC_BIT)
1681
0
                        && (B_SLICE == u1_slice_type) && (0 == u1_nal_ref_idc);
1682
1683
12.9k
        i4_skip_p_pic = (ps_dec->u4_skip_frm_mask & P_SLC_BIT)
1684
0
                        && (P_SLICE == u1_slice_type) && (0 == u1_nal_ref_idc);
1685
1686
        /**************************************************************/
1687
        /* Skip the B picture if skip mask is set for B picture and   */
1688
        /* Current B picture is a non reference B picture or there is */
1689
        /* no user for reference B picture                            */
1690
        /**************************************************************/
1691
12.9k
        if(i4_skip_b_pic)
1692
0
        {
1693
0
            ps_dec->ps_cur_pic->u4_pack_slc_typ |= B_SLC_BIT;
1694
            /* Don't decode the picture in SKIP-B mode if that picture is B */
1695
            /* and also it is not to be used as a reference picture         */
1696
0
            ps_dec->u1_last_pic_not_decoded = 1;
1697
1698
0
            return OK;
1699
0
        }
1700
        /**************************************************************/
1701
        /* Skip the P picture if skip mask is set for P picture and   */
1702
        /* Current P picture is a non reference P picture or there is */
1703
        /* no user for reference P picture                            */
1704
        /**************************************************************/
1705
12.9k
        if(i4_skip_p_pic)
1706
0
        {
1707
0
            ps_dec->ps_cur_pic->u4_pack_slc_typ |= P_SLC_BIT;
1708
            /* Don't decode the picture in SKIP-P mode if that picture is P */
1709
            /* and also it is not to be used as a reference picture         */
1710
0
            ps_dec->u1_last_pic_not_decoded = 1;
1711
1712
0
            return OK;
1713
0
        }
1714
12.9k
    }
1715
1716
12.9k
    {
1717
12.9k
        UWORD16 u2_mb_x, u2_mb_y;
1718
1719
12.9k
        ps_dec->i4_submb_ofst = ((u2_first_mb_in_slice
1720
12.9k
                        << ps_cur_slice->u1_mbaff_frame_flag) * SUB_BLK_SIZE)
1721
12.9k
                        - SUB_BLK_SIZE;
1722
12.9k
        if(u2_first_mb_in_slice)
1723
9.07k
        {
1724
9.07k
            UWORD8 u1_mb_aff;
1725
9.07k
            UWORD8 u1_field_pic;
1726
9.07k
            UWORD16 u2_frm_wd_in_mbs;
1727
9.07k
            u2_frm_wd_in_mbs = ps_seq->u2_frm_wd_in_mbs;
1728
9.07k
            u1_mb_aff = ps_cur_slice->u1_mbaff_frame_flag;
1729
9.07k
            u1_field_pic = ps_cur_slice->u1_field_pic_flag;
1730
1731
9.07k
            {
1732
9.07k
                UWORD32 x_offset;
1733
9.07k
                UWORD32 y_offset;
1734
9.07k
                UWORD32 u4_frame_stride;
1735
9.07k
                tfr_ctxt_t *ps_trns_addr; // = &ps_dec->s_tran_addrecon_parse;
1736
1737
9.07k
                if(ps_dec->u1_separate_parse)
1738
6.71k
                {
1739
6.71k
                    ps_trns_addr = &ps_dec->s_tran_addrecon_parse;
1740
6.71k
                }
1741
2.36k
                else
1742
2.36k
                {
1743
2.36k
                    ps_trns_addr = &ps_dec->s_tran_addrecon;
1744
2.36k
                }
1745
9.07k
                u2_mb_x = MOD(u2_first_mb_in_slice, u2_frm_wd_in_mbs);
1746
9.07k
                u2_mb_y = DIV(u2_first_mb_in_slice, u2_frm_wd_in_mbs);
1747
1748
9.07k
                u2_mb_y <<= u1_mb_aff;
1749
1750
9.07k
                if((u2_mb_x > u2_frm_wd_in_mbs - 1)
1751
9.07k
                                || (u2_mb_y > ps_dec->u2_frm_ht_in_mbs - 1))
1752
0
                {
1753
0
                    return ERROR_CORRUPTED_SLICE;
1754
0
                }
1755
1756
9.07k
                u4_frame_stride = ps_dec->u2_frm_wd_y << u1_field_pic;
1757
9.07k
                x_offset = u2_mb_x << 4;
1758
9.07k
                y_offset = (u2_mb_y * u4_frame_stride) << 4;
1759
1760
9.07k
                ps_trns_addr->pu1_dest_y = ps_dec->s_cur_pic.pu1_buf1 + x_offset
1761
9.07k
                                + y_offset;
1762
1763
9.07k
                u4_frame_stride = ps_dec->u2_frm_wd_uv << u1_field_pic;
1764
9.07k
                x_offset >>= 1;
1765
9.07k
                y_offset = (u2_mb_y * u4_frame_stride) << 3;
1766
1767
9.07k
                x_offset *= YUV420SP_FACTOR;
1768
1769
9.07k
                ps_trns_addr->pu1_dest_u = ps_dec->s_cur_pic.pu1_buf2 + x_offset
1770
9.07k
                                + y_offset;
1771
9.07k
                ps_trns_addr->pu1_dest_v = ps_dec->s_cur_pic.pu1_buf3 + x_offset
1772
9.07k
                                + y_offset;
1773
1774
9.07k
                ps_trns_addr->pu1_mb_y = ps_trns_addr->pu1_dest_y;
1775
9.07k
                ps_trns_addr->pu1_mb_u = ps_trns_addr->pu1_dest_u;
1776
9.07k
                ps_trns_addr->pu1_mb_v = ps_trns_addr->pu1_dest_v;
1777
1778
1779
                // assign the deblock structure pointers to start of slice
1780
9.07k
                if(ps_dec->u1_separate_parse == 1)
1781
6.71k
                {
1782
6.71k
                    ps_dec->ps_deblk_mbn = ps_dec->ps_deblk_pic
1783
6.71k
                                    + (u2_first_mb_in_slice << u1_mb_aff);
1784
6.71k
                }
1785
2.36k
                else
1786
2.36k
                {
1787
2.36k
                        ps_dec->ps_deblk_mbn = ps_dec->ps_deblk_pic
1788
2.36k
                                        + (u2_first_mb_in_slice << u1_mb_aff);
1789
2.36k
                }
1790
1791
9.07k
                ps_dec->u4_cur_mb_addr = (u2_first_mb_in_slice << u1_mb_aff);
1792
1793
9.07k
                ps_dec->ps_mv_cur = ps_dec->s_cur_pic.ps_mv
1794
9.07k
                                + ((u2_first_mb_in_slice << u1_mb_aff) << 4);
1795
9.07k
            }
1796
9.07k
        }
1797
3.90k
        else
1798
3.90k
        {
1799
3.90k
            tfr_ctxt_t *ps_trns_addr;
1800
1801
3.90k
            if(ps_dec->u1_separate_parse)
1802
1.82k
            {
1803
1.82k
                ps_trns_addr = &ps_dec->s_tran_addrecon_parse;
1804
1.82k
            }
1805
2.08k
            else
1806
2.08k
            {
1807
2.08k
                ps_trns_addr = &ps_dec->s_tran_addrecon;
1808
2.08k
            }
1809
1810
3.90k
            u2_mb_x = 0xffff;
1811
3.90k
            u2_mb_y = 0;
1812
            // assign the deblock structure pointers to start of slice
1813
3.90k
            ps_dec->u4_cur_mb_addr = 0;
1814
3.90k
            ps_dec->ps_deblk_mbn = ps_dec->ps_deblk_pic;
1815
3.90k
            ps_dec->ps_mv_cur = ps_dec->s_cur_pic.ps_mv;
1816
3.90k
            ps_trns_addr->pu1_dest_y = ps_dec->s_cur_pic.pu1_buf1;
1817
3.90k
            ps_trns_addr->pu1_dest_u = ps_dec->s_cur_pic.pu1_buf2;
1818
3.90k
            ps_trns_addr->pu1_dest_v = ps_dec->s_cur_pic.pu1_buf3;
1819
1820
3.90k
            ps_trns_addr->pu1_mb_y = ps_trns_addr->pu1_dest_y;
1821
3.90k
            ps_trns_addr->pu1_mb_u = ps_trns_addr->pu1_dest_u;
1822
3.90k
            ps_trns_addr->pu1_mb_v = ps_trns_addr->pu1_dest_v;
1823
1824
3.90k
        }
1825
1826
12.9k
        ps_dec->ps_part = ps_dec->ps_parse_part_params;
1827
1828
12.9k
        ps_dec->u2_mbx =
1829
12.9k
                        (MOD(u2_first_mb_in_slice - 1, ps_seq->u2_frm_wd_in_mbs));
1830
12.9k
        ps_dec->u2_mby =
1831
12.9k
                        (DIV(u2_first_mb_in_slice - 1, ps_seq->u2_frm_wd_in_mbs));
1832
12.9k
        ps_dec->u2_mby <<= ps_cur_slice->u1_mbaff_frame_flag;
1833
12.9k
        ps_dec->i2_prev_slice_mbx = ps_dec->u2_mbx;
1834
12.9k
        ps_dec->i2_prev_slice_mby = ps_dec->u2_mby;
1835
12.9k
    }
1836
1837
    /* RBSP stop bit is used for CABAC decoding*/
1838
0
    ps_bitstrm->u4_max_ofst += ps_dec->ps_cur_pps->u1_entropy_coding_mode;
1839
1840
12.9k
    ps_dec->u1_B = (u1_slice_type == B_SLICE);
1841
12.9k
    ps_dec->u4_next_mb_skip = 0;
1842
1843
12.9k
    ps_dec->ps_parse_cur_slice->u4_first_mb_in_slice =
1844
12.9k
                    ps_dec->ps_cur_slice->u2_first_mb_in_slice;
1845
12.9k
    ps_dec->ps_parse_cur_slice->slice_type =
1846
12.9k
                    ps_dec->ps_cur_slice->u1_slice_type;
1847
1848
1849
12.9k
    ps_dec->u4_start_recon_deblk = 1;
1850
12.9k
    {
1851
12.9k
        WORD32 num_entries;
1852
12.9k
        WORD32 size;
1853
12.9k
        UWORD8 *pu1_buf;
1854
1855
12.9k
        num_entries = MAX_FRAMES;
1856
12.9k
        if((1 >= ps_dec->ps_cur_sps->u1_num_ref_frames) &&
1857
2.88k
            (0 == ps_dec->i4_display_delay))
1858
0
        {
1859
0
            num_entries = 1;
1860
0
        }
1861
12.9k
        num_entries = ((2 * num_entries) + 1);
1862
12.9k
        num_entries *= 2;
1863
1864
1865
12.9k
        size = num_entries * sizeof(void *);
1866
12.9k
        size += PAD_MAP_IDX_POC * sizeof(void *);
1867
1868
12.9k
        pu1_buf = (UWORD8 *)ps_dec->pv_map_ref_idx_to_poc_buf;
1869
12.9k
        pu1_buf += size * ps_dec->u2_cur_slice_num;
1870
12.9k
        ps_dec->ps_parse_cur_slice->ppv_map_ref_idx_to_poc = ( void *)pu1_buf;
1871
12.9k
    }
1872
1873
12.9k
    if(ps_dec->u1_separate_parse)
1874
8.53k
    {
1875
8.53k
        ps_dec->ps_parse_cur_slice->pv_tu_coeff_data_start = ps_dec->pv_parse_tu_coeff_data;
1876
8.53k
    }
1877
4.44k
    else
1878
4.44k
    {
1879
4.44k
        ps_dec->pv_proc_tu_coeff_data = ps_dec->pv_parse_tu_coeff_data;
1880
4.44k
    }
1881
1882
12.9k
    ret = ih264d_fix_error_in_dpb(ps_dec);
1883
12.9k
    if(ret < 0)
1884
0
        return ERROR_DBP_MANAGER_T;
1885
1886
12.9k
    if(u1_slice_type == I_SLICE)
1887
3.68k
    {
1888
3.68k
        ps_dec->ps_cur_pic->u4_pack_slc_typ |= I_SLC_BIT;
1889
1890
3.68k
        ret = ih264d_parse_islice(ps_dec, u2_first_mb_in_slice);
1891
3.68k
        ps_dec->u1_pr_sl_type = u1_slice_type;
1892
3.68k
        if(ps_dec->i4_pic_type != B_SLICE && ps_dec->i4_pic_type != P_SLICE)
1893
3.62k
            ps_dec->i4_pic_type = I_SLICE;
1894
1895
3.68k
    }
1896
9.28k
    else if(u1_slice_type == P_SLICE)
1897
4.50k
    {
1898
4.50k
        ps_dec->ps_cur_pic->u4_pack_slc_typ |= P_SLC_BIT;
1899
4.50k
        ret = ih264d_parse_pslice(ps_dec, u2_first_mb_in_slice);
1900
4.50k
        ps_dec->u1_pr_sl_type = u1_slice_type;
1901
4.50k
        if(ps_dec->i4_pic_type != B_SLICE)
1902
4.03k
            ps_dec->i4_pic_type = P_SLICE;
1903
4.50k
    }
1904
4.78k
    else if(u1_slice_type == B_SLICE)
1905
4.77k
    {
1906
4.77k
        ps_dec->ps_cur_pic->u4_pack_slc_typ |= B_SLC_BIT;
1907
4.77k
        ret = ih264d_parse_bslice(ps_dec, u2_first_mb_in_slice);
1908
4.77k
        ps_dec->u1_pr_sl_type = u1_slice_type;
1909
4.77k
        ps_dec->i4_pic_type = B_SLICE;
1910
4.77k
    }
1911
11
    else
1912
11
        return ERROR_INV_SLC_TYPE_T;
1913
1914
12.9k
    if(ps_dec->u1_slice_header_done)
1915
11.5k
    {
1916
        /* set to zero to indicate a valid slice has been decoded */
1917
11.5k
        ps_dec->u1_first_slice_in_stream = 0;
1918
11.5k
    }
1919
1920
12.9k
    if(ret != OK)
1921
5.48k
        return ret;
1922
1923
7.47k
    if(u1_nal_ref_idc != 0)
1924
5.38k
    {
1925
5.38k
        if(!ps_dec->ps_dpb_cmds->u1_dpb_commands_read)
1926
1.60k
        {
1927
1.60k
            memcpy((void *)ps_dec->ps_dpb_cmds, (void *)(&(ps_dec->s_dpb_cmds_scratch)),
1928
1.60k
                   sizeof(dpb_commands_t));
1929
1.60k
        }
1930
5.38k
    }
1931
1932
    /* storing last Mb X and MbY of the slice */
1933
7.47k
    ps_dec->i2_prev_slice_mbx = ps_dec->u2_mbx;
1934
7.47k
    ps_dec->i2_prev_slice_mby = ps_dec->u2_mby;
1935
1936
    /* End of Picture detection */
1937
1938
7.47k
    if(ps_dec->u4_total_mbs_coded >= (ps_seq->u4_max_mb_addr + 1))
1939
658
    {
1940
658
        ps_dec->u1_pic_decode_done = 1;
1941
1942
658
    }
1943
1944
7.47k
    {
1945
7.47k
        dec_err_status_t * ps_err = ps_dec->ps_dec_err_status;
1946
7.47k
        if((ps_err->u1_err_flag & REJECT_PB_PICS)
1947
0
                        && (ps_err->u1_cur_pic_type == PIC_TYPE_I))
1948
0
        {
1949
0
            ps_err->u1_err_flag = ACCEPT_ALL_PICS;
1950
0
        }
1951
7.47k
    }
1952
1953
7.47k
    PRINT_BIN_BIT_RATIO(ps_dec)
1954
1955
7.47k
    return ret;
1956
12.9k
}