aboutsummaryrefslogtreecommitdiff
path: root/encoder/picture_type.c
blob: 54a23da39ab366a428c02b4f95edcae6f6722864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
/******************************************************************************
 *
 * Copyright (C) 2018 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 *****************************************************************************
 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
*/
/*!
******************************************************************************
* \file picture_type.c
*
* \brief
*    This file contain picture handling struct and functions
*
* \date
*
* \author
*    ittiam
*
******************************************************************************
*/
/*****************************************************************************/
/* File Includes                                                             */
/*****************************************************************************/
/* System include files */
#include <stdio.h>
#include <string.h>
#include <math.h>

/* User include files */
#include "ittiam_datatypes.h"
#include "rc_common.h"
#include "rc_cntrl_param.h"
#include "mem_req_and_acq.h"
#include "picture_type.h"
#include "trace_support.h"

#define MAX_INTER_FRM_INT 10

/* Pic_details */
typedef struct
{
    WORD32 i4_pic_id; /* The id sent by the codec */
    WORD32 i4_pic_disp_order_no; /* The pics come in, in this order  */
    picture_type_e e_pic_type; /* I,P,B */
    WORD32 i4_is_scd;
} pic_details_t;

/********** Pic_handling structure **********/
typedef struct pic_handling_t
{
    /* Inputs from the codec */
    WORD32
    i4_intra_frm_int; /* Number of frames after which an I frame will repeat in display order */
    WORD32 i4_inter_frm_int; /* (num_b_pics_in_subgop + 1) */
    WORD32 i4_idr_period; /* IDR frame interval, HEVC specific implementation*/
    WORD32
    i4_max_inter_frm_int; /* After these many buffered frames, the pics are encoded */
    WORD32 i4_is_gop_closed; /* OPEN or CLOSED */
    WORD32
    i4_num_gop_in_idr_period; /* number of open GOPs between two closed GOP*/
    WORD32
    i4_open_gop_count; /* when open GOP count ==  i4_num_open_gop then insert a closed GOP*/

    /* The pic stack */
    pic_details_t
        as_pic_stack[MAX_INTER_FRM_INT + 2]; /* Stack used to store the input pics in encode order */

    /* Counters */
    WORD32 i4_buf_pic_no; /* Decides whether a B or ref pic */
    WORD32
    i4_pic_disp_order_no; /* Current pic's number in displayed, and gets reset after an I-frm */
    WORD32
    i4_p_count_in_gop; /* Number of P frms that have come, in the current gop, so far */
    WORD32
    i4_b_count_in_gop; /* Number of B frms that have come, in the current gop, so far */
    WORD32
    i4_b_count_in_subgop; /* Number of B frms that have come, in the current subgop, so far */

    /* Indices to the pic stack (Since we store the pics in the encode order, these vars are modified to meet that) */
    WORD32 i4_b_pic_idx; /* B_PIC index */
    WORD32 i4_ref_pic_idx; /* I,P PIC index */

    /* Variables operating on the input pics */
    WORD32
    i4_is_first_gop; /* Flag denoting whether it's the first gop or not */
    WORD32 i4_b_in_incomp_subgop; /* Number of B_PICs in an incomplete subgop */
    WORD32
    i4_extra_p; /* In CLOSED_GOPs, even if inter_frm_int > 1, there can be 2 continous
                                               P_PICs at the GOP end. This takes values of 0 or 1 */
    /* Arrays storing the number of frms in the gop */
    WORD32 i4_frms_in_gop
        [MAX_PIC_TYPE]; /* In the steady state, what's the pic distribution in display order */
    WORD32 i4_frms_in_cur_gop
        [MAX_PIC_TYPE]; /* In case of a change in inter frm int call, the pic distribution in that gop in display order */
    WORD32 i4_actual_frms_in_gop
        [MAX_PIC_TYPE]; /*HEVC_RC: This holds true number of pics in GOP ignoring ref and non ref B pic*/

    /* WORD32 i4_rem_frms_in_gop[MAX_PIC_TYPE];*/ /* This is used to denote the number of frms remaining to be encoded in the current gop */
    WORD32 i4_rem_frms_in_cur_gop;

    /* Variables operating on the output pics */
    WORD32 i4_coded_pic_no; /* Counts the frms encoded in a gop */
    WORD32
    i4_stack_count; /* Counts from the start of stack to the end repeatedly */

    /* Tracking a change in the inputs from the codec */
    WORD32
    i4_change_in_inter_frm_int; /* A flag that is set when the codec calls for a change in inter_frm_int */
    WORD32
    i4_new_inter_frm_int; /* When a change_in_inter_frm_int is called, this stores the new inter_frm_int */
    WORD32
    i4_b_in_incomp_subgop_mix_gop; /* When a change_in_inter_frm_int is called in the middle of a gop,this stores
                                               the B_PICs in the incomplete subgop of the mixed gop */
    WORD32
    i4_extra_p_mix_gop; /* For a CLOSED GOP, when a change_in_inter_frm_int is called in the middle of a gop,
                                               this is a flag denoting if there is an extra P_PIC in the mixed gop */
    WORD32
    i4_change_in_intra_frm_int; /* A flag that is set when the codec calls for a change in intra_frm_int */
    WORD32
    i4_new_intra_frm_int; /* When a change_in_intra_frm_int is called, this stores the new intra_frm_int */

    /* Previous pic_stack_indices & details */
    pic_details_t s_prev_pic_details;
    WORD32 i4_prev_b_pic_idx;

    WORD32 i4_last_frm_in_gop;
    WORD32 i4_first_gop_encoded;

    picture_type_e e_previous_pic_type; /* NITT TBR */
    WORD32 i4_force_I_frame;
    WORD32 i4_sum_remaining_frm_in_gop;
    WORD32 i4_mod_temp_ref_cnt;
    WORD32 i4_frames_in_fif_gop;
    WORD32 i4_prev_intra_frame_interval;
    WORD32 i4_pic_order_cnt_base_offset;
    WORD32 i4_enable_modulo;
    WORD32 i4_change_inter_frm_interval_correction;
    WORD32 i4_non_ref_B_pic_count;
    WORD32 i4_num_active_pic_type;
    WORD32 i4_field_pic;
} pic_handling_t;

static void update_pic_distbn(
    pic_handling_t *ps_pic_handling,
    WORD32 i4_intra_frm_int,
    WORD32 i4_inter_frm_int,
    WORD32 i4_gop_boundary);

static void find_pic_distbn_in_gop(
    WORD32 i4_frms_in_gop[MAX_PIC_TYPE],
    WORD32 i4_actual_frms_in_gop[MAX_PIC_TYPE],
    WORD32 i4_intra_frm_int,
    WORD32 i4_inter_frm_int,
    WORD32 i4_is_gop_closed,
    WORD32 *pi4_b_in_incomp_subgop,
    WORD32 *pi4_extra_p,
    WORD32 i4_num_active_pic_type,
    WORD32 i4_field_pic);

#if NON_STEADSTATE_CODE
WORD32 pic_handling_num_fill_use_free_memtab(
    pic_handling_t **pps_pic_handling, itt_memtab_t *ps_memtab, ITT_FUNC_TYPE_E e_func_type)
{
    WORD32 i4_mem_tab_idx = 0;
    static pic_handling_t s_pic_handling_temp;

    /* Hack for al alloc, during which we dont have any state memory.
      Dereferencing can cause issues */
    if(e_func_type == GET_NUM_MEMTAB || e_func_type == FILL_MEMTAB)
        (*pps_pic_handling) = &s_pic_handling_temp;

    /*for src rate control state structure*/
    if(e_func_type != GET_NUM_MEMTAB)
    {
        fill_memtab(
            &ps_memtab[i4_mem_tab_idx], sizeof(pic_handling_t), MEM_TAB_ALIGNMENT, PERSISTENT, DDR);
        use_or_fill_base(&ps_memtab[0], (void **)pps_pic_handling, e_func_type);
    }
    i4_mem_tab_idx++;

    return (i4_mem_tab_idx);
}

/******************************************************************************
  Function Name   : init_pic_handling
  Description     : initializes the pic handling state struct
  Arguments       :
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
void init_pic_handling(
    pic_handling_t *ps_pic_handling,
    WORD32 i4_intra_frm_int,
    WORD32 i4_max_inter_frm_int,
    WORD32 i4_is_gop_closed,
    WORD32 i4_idr_period,
    WORD32 i4_num_active_pic_type,
    WORD32 i4_field_pic)
{
    /* Declarations */
    WORD32 i;

    ps_pic_handling->i4_num_active_pic_type = i4_num_active_pic_type;
    ps_pic_handling->i4_idr_period = i4_idr_period;
    /*Possible only if cdr period is zero*/
    if(i4_intra_frm_int == i4_idr_period)
    {
        ps_pic_handling->i4_num_gop_in_idr_period = 1;
    }
    /*when idr is zero. All GOPs are open GOP*/
    else if(!ps_pic_handling->i4_idr_period)
    {
        ps_pic_handling->i4_num_gop_in_idr_period = 1;
    }
    else if(ps_pic_handling->i4_idr_period > 0)
    {
        ps_pic_handling->i4_num_gop_in_idr_period =
            (ps_pic_handling->i4_idr_period + i4_max_inter_frm_int - 1) / i4_intra_frm_int;
    }
    /* Checks */
    /* Codec Parameters */
    ps_pic_handling->i4_intra_frm_int = i4_intra_frm_int;
    ps_pic_handling->i4_inter_frm_int = i4_max_inter_frm_int;
    ps_pic_handling->i4_max_inter_frm_int = i4_max_inter_frm_int;
    ps_pic_handling->i4_is_gop_closed = i4_is_gop_closed;
    ps_pic_handling->i4_field_pic = i4_field_pic;
    /* Pic_stack */
    memset(ps_pic_handling->as_pic_stack, 0, sizeof(ps_pic_handling->as_pic_stack));
    memset(&ps_pic_handling->s_prev_pic_details, 0, sizeof(ps_pic_handling->s_prev_pic_details));

    /* Counters */
    ps_pic_handling->i4_buf_pic_no = 0;
    ps_pic_handling->i4_pic_disp_order_no = 0;

    /* Indices to the pic_stack */
    ps_pic_handling->i4_ref_pic_idx = 0;
    ps_pic_handling->i4_b_pic_idx = 2;
    ps_pic_handling->i4_prev_b_pic_idx = 2;

    /* Variables working on the input frames */
    ps_pic_handling->i4_is_first_gop = 1;
    ps_pic_handling->i4_p_count_in_gop = 0;
    ps_pic_handling->i4_b_count_in_gop = 0;
    ps_pic_handling->i4_b_count_in_subgop = 0;

    /* Variables working on the output frames */
    ps_pic_handling->i4_coded_pic_no = -1;
    ps_pic_handling->i4_stack_count = -1;

    /* Tracks the changes in the Codec Parameters */
    ps_pic_handling->i4_change_in_inter_frm_int = 0;
    ps_pic_handling->i4_new_inter_frm_int = i4_max_inter_frm_int;

    /* Tracks the changes in the Codec Parameters */
    ps_pic_handling->i4_change_in_intra_frm_int = 0;
    ps_pic_handling->i4_new_intra_frm_int = i4_intra_frm_int;
    ps_pic_handling->i4_open_gop_count = 1;

    /* Variables on which the bit allocation is dependent  */
    /* Get the pic distribution in the gop */
    find_pic_distbn_in_gop(
        ps_pic_handling->i4_frms_in_gop,
        ps_pic_handling->i4_actual_frms_in_gop,
        i4_intra_frm_int,
        i4_max_inter_frm_int,
        i4_is_gop_closed,
        &ps_pic_handling->i4_b_in_incomp_subgop,
        &ps_pic_handling->i4_extra_p,
        ps_pic_handling->i4_num_active_pic_type,
        ps_pic_handling->i4_field_pic);

    ps_pic_handling->i4_rem_frms_in_cur_gop = 0;
    for(i = 0; i < MAX_PIC_TYPE; i++)
    {
        ps_pic_handling->i4_frms_in_cur_gop[i] = ps_pic_handling->i4_frms_in_gop[i];
        ps_pic_handling->i4_rem_frms_in_cur_gop += ps_pic_handling->i4_actual_frms_in_gop[i];
    }
    /*Since first GOP will be closed GOP in all condition make sure end of GOP flag is set before qp query is done for next I frame*/
    /*HEVC_hierarchy*/
    ps_pic_handling->i4_rem_frms_in_cur_gop -= i4_max_inter_frm_int - 1;

    ps_pic_handling->e_previous_pic_type = I_PIC;
    ps_pic_handling->i4_force_I_frame = 0;
    ps_pic_handling->i4_sum_remaining_frm_in_gop = 0;
    ps_pic_handling->i4_mod_temp_ref_cnt = 0;

    ps_pic_handling->i4_b_in_incomp_subgop_mix_gop = ps_pic_handling->i4_b_in_incomp_subgop;
    ps_pic_handling->i4_extra_p_mix_gop = ps_pic_handling->i4_extra_p;

    ps_pic_handling->i4_last_frm_in_gop = 0;
    ps_pic_handling->i4_first_gop_encoded = 0;
    ps_pic_handling->i4_frames_in_fif_gop = 0;
    ps_pic_handling->i4_pic_order_cnt_base_offset = 0;
    ps_pic_handling->i4_enable_modulo = 0;
    ps_pic_handling->i4_change_inter_frm_interval_correction = 0;
    ps_pic_handling->i4_prev_intra_frame_interval = i4_intra_frm_int; /*i_only*/
    ps_pic_handling->i4_non_ref_B_pic_count = 0;
}
#endif /* #if NON_STEADSTATE_CODE */

/* ******************************************************************************/
/**
 * @brief registers the new intra frame interval value
 *
 * @param ps_pic_handling
 * @param i4_intra_frm_int
 */
/* ******************************************************************************/
void pic_handling_register_new_int_frm_interval(
    pic_handling_t *ps_pic_handling, WORD32 i4_intra_frm_int)
{
    ps_pic_handling->i4_change_in_intra_frm_int = 1;
    ps_pic_handling->i4_new_intra_frm_int = i4_intra_frm_int;

    /* The below call was made when a control call changes
     * the intra frame interval before the first frame was getting encoded
     * but i see that it is not required as of now NITT TBR
    ps_pic_handling->i4_change_in_intra_frm_int = 0;
    update_pic_distbn(ps_pic_handling,
            ps_pic_handling->i4_new_intra_frm_int,
            ps_pic_handling->i4_inter_frm_int,
            1); */
}
/******************************************************************************
  Function Name   : pic_handling_register_new_inter_frm_interval
  Description     :
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
void pic_handling_register_new_inter_frm_interval(
    pic_handling_t *ps_pic_handling, WORD32 i4_inter_frm_int)
{
    /* Update the state structure with the latest values */
    ps_pic_handling->i4_change_in_inter_frm_int = 1;
    ps_pic_handling->i4_new_inter_frm_int = i4_inter_frm_int;
}
/******************************************************************************
  Function Name   : start_new_gop
  Description     :
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
static void start_new_gop(pic_handling_t *ps_pic_handling)
{
    WORD32 i;
    WORD32 i4_sum_remaining_frm_in_gop = 0;
    /* Now, the end of gop updates */
    ps_pic_handling->i4_pic_disp_order_no = 0;
    ps_pic_handling->i4_buf_pic_no = 0;
    ps_pic_handling->i4_is_first_gop = 0;
    ps_pic_handling->i4_extra_p_mix_gop = ps_pic_handling->i4_extra_p;

    if(ps_pic_handling->i4_is_gop_closed)
    {
        ps_pic_handling->i4_b_in_incomp_subgop_mix_gop = ps_pic_handling->i4_b_in_incomp_subgop;
    }
    /* Store the number of frames in the gop that is encoded till now [just before Force I frame
    call is made */
    ps_pic_handling->i4_frames_in_fif_gop =
        ps_pic_handling->i4_b_count_in_gop + ps_pic_handling->i4_p_count_in_gop + 1;

    i4_sum_remaining_frm_in_gop = ps_pic_handling->i4_rem_frms_in_cur_gop;

    ps_pic_handling->i4_sum_remaining_frm_in_gop = i4_sum_remaining_frm_in_gop;
    ps_pic_handling->i4_rem_frms_in_cur_gop = 0;
    for(i = 0; i < MAX_PIC_TYPE; i++)
    {
        ps_pic_handling->i4_frms_in_cur_gop[i] = ps_pic_handling->i4_frms_in_gop[i];
        ps_pic_handling->i4_rem_frms_in_cur_gop += ps_pic_handling->i4_frms_in_cur_gop[i];
    }
}

/* ******************************************************************************/
/**
 * @brief Fills the pic_stack with the incoming pics in encode order
 *
 * @param ps_pic_handling
 * @param i4_enc_pic_id
 */
/* ******************************************************************************/
void add_pic_to_stack(pic_handling_t *ps_pic_handling, WORD32 i4_enc_pic_id, WORD32 i4_rc_in_pic)
{
    /* Declarations */
    WORD32 i4_inter_frm_int, i4_max_inter_frm_int, i4_intra_frm_int, i4_new_inter_frm_int;
    WORD32 i4_is_gop_closed;
    WORD32 i4_buf_pic_no, i4_pic_disp_order_no;
    WORD32 i4_b_pic_idx, i4_ref_pic_idx;
    WORD32 i4_is_first_gop, i4_b_in_incomp_subgop, i4_p_count_in_gop, i4_b_count_in_gop,
        i4_b_count_in_subgop;
    WORD32 i, i4_p_frms_in_prd, i4_b_frms_in_prd, i4_num_b_in_subgop, i4_extra_p;
    WORD32 i4_condn_for_change_in_inter_frm_int;
    picture_type_e e_previous_pic_type, e_cur_pic_type;
    WORD32 i4_force_I_frame;
    WORD32 i4_is_scd = 0;

    /* Just force an I picture if the input frame is an I frame. Normal I picture will anyway be taken care
       inside add_pic_to_stack(). And inside add_pic_to_stack() let us take care of U(nexpected)I frame
       for resetting the model */
    if(i4_rc_in_pic == I_PIC || i4_rc_in_pic == I_PIC_SCD)
    {
        set_force_I_frame_flag(ps_pic_handling);
    }

    /* Initialize the local vars with the state struct values needed by the change calls */
    i4_intra_frm_int = ps_pic_handling->i4_intra_frm_int;
    i4_inter_frm_int = ps_pic_handling->i4_inter_frm_int;
    i4_max_inter_frm_int = ps_pic_handling->i4_max_inter_frm_int;
    i4_is_gop_closed = ps_pic_handling->i4_is_gop_closed;

    i4_buf_pic_no = ps_pic_handling->i4_buf_pic_no;
    i4_pic_disp_order_no = ps_pic_handling->i4_pic_disp_order_no;
    i4_b_count_in_gop = ps_pic_handling->i4_b_count_in_gop;
    i4_b_frms_in_prd = ps_pic_handling->i4_frms_in_cur_gop[B_PIC];
    i4_is_first_gop = ps_pic_handling->i4_is_first_gop;
    i4_new_inter_frm_int = ps_pic_handling->i4_new_inter_frm_int;
    e_previous_pic_type = ps_pic_handling->e_previous_pic_type;
    i4_force_I_frame = ps_pic_handling->i4_force_I_frame;
    /******************************* Force I frame ******************************/
    /* Two different cases
    1)OPEN_GOP:
       New GOP is started after number of B pictures in the last sub gop of a gop to mimic the
       GOP structure.

    2)Closed GOP:Wait till P frame at input and The frame after a P frame a new GOP is started
      to mimic the GOP structure.
    */
    if(i4_force_I_frame)
    {
        WORD32 i4_temp_is_gop_closed;
        WORD32 i4_codn = 0;
        /* A special case of Open GOP where the it behaves like Closed GOP*/
        if((i4_intra_frm_int % i4_inter_frm_int) == 1)
        {
            i4_temp_is_gop_closed = 1;
        }
        else
        {
            i4_temp_is_gop_closed = i4_is_gop_closed;
        }
        /* Get the current picture type to aid decision to force an I frame*/
        if((i4_buf_pic_no % i4_inter_frm_int) &&
           !(i4_is_gop_closed && (i4_b_count_in_gop == i4_b_frms_in_prd)))
        {
            e_cur_pic_type = B_PIC;
        }
        else
        {
            if(i4_pic_disp_order_no == 0)
            {
                e_cur_pic_type = I_PIC;
            }
            else
            {
                e_cur_pic_type = P_PIC;
            }
        }
        if((i4_intra_frm_int % i4_inter_frm_int) == 0)
        {
            i4_codn = (e_cur_pic_type == P_PIC);
        }
        else
        {
            i4_codn =
                (ps_pic_handling->i4_b_count_in_subgop == ps_pic_handling->i4_b_in_incomp_subgop);
        }
        if(e_cur_pic_type == I_PIC)
        {
            /*Don't do anything. Resetting the force I frame flag since the current picture
            type is already a I frame */
            i4_force_I_frame = 0;
        }
        else if(i4_inter_frm_int == 1)
        {
            /*IPP case , Force I frame immediately*/
            start_new_gop(ps_pic_handling);
        }
        else if((!i4_temp_is_gop_closed) && i4_codn)
        {
            start_new_gop(ps_pic_handling);
            if(ps_pic_handling->i4_b_count_in_subgop)
            {
                ps_pic_handling->i4_b_pic_idx += 1;
                ps_pic_handling->i4_b_pic_idx %= (i4_max_inter_frm_int + 1);
            }
        }
        else if(i4_temp_is_gop_closed && (e_previous_pic_type == P_PIC) && (e_cur_pic_type != P_PIC))
        {
            start_new_gop(ps_pic_handling);
            ps_pic_handling->i4_b_pic_idx++;
            ps_pic_handling->i4_b_pic_idx %= (i4_max_inter_frm_int + 1);
        }
        i4_is_first_gop = ps_pic_handling->i4_is_first_gop;

        /* Check for unexpected I frame and assume its a scene change. If so, reset the model */
        if(((e_cur_pic_type != I_PIC) && (i4_rc_in_pic == I_PIC)) || (i4_rc_in_pic == I_PIC_SCD))
        {
            /* Set the SCD flag */
            i4_is_scd = 1;
        }
    }

    /******************************* CHANGE_INTRA_FRM_INTERVAL ******************************/
    /* Call the update_pic_distbn if
    1)Change in intra frm interval flag is set
    2)It's the first B_PIC of a gop
    */
    if((ps_pic_handling->i4_change_in_intra_frm_int == 1) && ((i4_pic_disp_order_no == 1)))
    {
        update_pic_distbn(
            ps_pic_handling,
            ps_pic_handling->i4_new_intra_frm_int,
            ps_pic_handling->i4_inter_frm_int,
            1);

        ps_pic_handling->i4_change_in_intra_frm_int = 0;

        if(ps_pic_handling->i4_new_intra_frm_int == 1)
        {
            ps_pic_handling->i4_pic_disp_order_no = 0;
        }
    }
    /******************************* CHANGE_INTER_FRM_INTERVAL ******************************/

    /* Call update_pic_distbn if
    1)Change in inter frm interval flag is set
    2)It's the first B_PIC after gop/subgop start, and
    3)The new inter-frm-interval won't cross the intra_frm_interval
    */

    if((ps_pic_handling->i4_change_in_inter_frm_int == 1) &&
       ((i4_buf_pic_no % i4_inter_frm_int == 1) || (i4_pic_disp_order_no == 1) ||
        (i4_inter_frm_int == 1)))
    {
        /* Condn which checks if the new inter_frm_int will cross the intra_frm_int */
        i4_condn_for_change_in_inter_frm_int =
            ((i4_pic_disp_order_no + i4_new_inter_frm_int - 1) < i4_intra_frm_int);

        if(i4_condn_for_change_in_inter_frm_int)
        {
            /* If the inter_frm_int = 1, then the b_pic_idx needs to be modified */
            if(i4_inter_frm_int == 1)
            {
                ps_pic_handling->i4_b_pic_idx =
                    (1 + ps_pic_handling->i4_ref_pic_idx) % (i4_max_inter_frm_int + 1);
            }
            /* Store a correction factor for calculating the picture display order */
            if(i4_inter_frm_int != i4_new_inter_frm_int)
            {
                ps_pic_handling->i4_change_inter_frm_interval_correction =
                    i4_inter_frm_int - i4_new_inter_frm_int;
                /* ps_pic_handling->i4_change_inter_frm_interval_correction = 0; */
            }

            /* Depending on the gop/subgop boundary, call the change_inter_frm_int */
            /* TO DO: make a single call, change the name of the fxn to update_state,
                      where state = frms_in_gop + b_incomp_subgop + extra_p */

            if(i4_pic_disp_order_no == 1) /*GOP boundary*/
            {
                update_pic_distbn(
                    ps_pic_handling,
                    ps_pic_handling->i4_intra_frm_int,
                    ps_pic_handling->i4_new_inter_frm_int,
                    1);
            }
            else /*Subgop boundary*/
            {
                update_pic_distbn(
                    ps_pic_handling,
                    ps_pic_handling->i4_intra_frm_int,
                    ps_pic_handling->i4_new_inter_frm_int,
                    0);
            }

            ps_pic_handling->i4_change_in_inter_frm_int = 0;
            ps_pic_handling->i4_new_inter_frm_int = ps_pic_handling->i4_inter_frm_int;
        }
    }

    /* Initialize the local vars with the state struct values */
    i4_buf_pic_no = ps_pic_handling->i4_buf_pic_no;
    i4_pic_disp_order_no = ps_pic_handling->i4_pic_disp_order_no;
    i4_b_pic_idx = ps_pic_handling->i4_b_pic_idx;
    i4_ref_pic_idx = ps_pic_handling->i4_ref_pic_idx;
    i4_b_in_incomp_subgop = ps_pic_handling->i4_b_in_incomp_subgop_mix_gop;
    i4_p_count_in_gop = ps_pic_handling->i4_p_count_in_gop;
    i4_b_count_in_gop = ps_pic_handling->i4_b_count_in_gop;
    i4_b_count_in_subgop = ps_pic_handling->i4_b_count_in_subgop;
    i4_p_frms_in_prd = ps_pic_handling->i4_frms_in_cur_gop[P_PIC];
    i4_b_frms_in_prd = ps_pic_handling->i4_frms_in_cur_gop[B_PIC];
    i4_extra_p = ps_pic_handling->i4_extra_p_mix_gop;
    i4_inter_frm_int = ps_pic_handling->i4_inter_frm_int;
    i4_intra_frm_int = ps_pic_handling->i4_intra_frm_int;

    /* Initializing the prev_state vars */
    ps_pic_handling->i4_prev_b_pic_idx = ps_pic_handling->i4_b_pic_idx;

    i4_num_b_in_subgop = (i4_inter_frm_int - 1);

    /***************************************** Fill the stack ***************************************/
    /* The next part of the code is organized as

        if(B_PIC conditions satisfied)
        {
            Fill the pic_stack using the b_pic_index
            Update the b_pic_index and the other b_pic related vars for the next B_PIC
        }
        else
        {
            if(I_PIC conditions are satisfied)
            {
                Fill the pic_stack using the ref_pic_index
                Update the ref_pic_index and the other ref_pic related vars for the next I_PIC/P_PIC
            }
            else
            {
                Fill the pic_stack using the ref_pic_index
                Update the ref_pic_index and the other ref_pic related vars for the next I_PIC/P_PIC
            }
        }
    */
    /* Condition for a B_PIC -
    1) Other than the first I_PIC and the periodically appearing P_PICs, after every inter_frm_int,
       rest all pics are B_PICs
    2) In case of CLOSED_GOP, the last frame of the gop has to be a P_PIC */

    if(ps_pic_handling->i4_intra_frm_int ==
       1) /*i only case insert the pic only at first location of stack*/
    {
        i4_ref_pic_idx = 0;
        i4_b_pic_idx = 0;
    }
    if((i4_buf_pic_no % i4_inter_frm_int) &&
       !(i4_is_gop_closed && (i4_b_count_in_gop == i4_b_frms_in_prd))) /**** B_PIC ****/
    {
        /* Fill the pic_stack */
        ps_pic_handling->as_pic_stack[i4_b_pic_idx].i4_pic_id = i4_enc_pic_id;
        ps_pic_handling->as_pic_stack[i4_b_pic_idx].e_pic_type = B_PIC;
        ps_pic_handling->as_pic_stack[i4_b_pic_idx].i4_pic_disp_order_no = i4_pic_disp_order_no;
        ps_pic_handling->as_pic_stack[i4_b_pic_idx].i4_is_scd = 0;

        /* Store Pic type*/
        e_previous_pic_type = B_PIC;

        /* Update the prev_pic_details */
        memcpy(
            &ps_pic_handling->s_prev_pic_details,
            &ps_pic_handling->as_pic_stack[i4_b_pic_idx],
            sizeof(pic_details_t));

        i4_b_count_in_gop++;
        i4_b_count_in_subgop++;

        /* Update the i4_b_pic_idx */
        if(!i4_is_gop_closed)
        {
            /* If this B_PIC features in one of the complete subgops */
            if((i4_b_count_in_subgop < i4_num_b_in_subgop) &&
               !(i4_b_count_in_gop == i4_b_frms_in_prd))
            {
                i4_b_pic_idx++;
            }
            else /* Else if this B_PIC is the last one in a subgop or gop  */
            {
                /* If this is the last B_PIC of a GOP, depending on the number of incomp B_pics in
                   the subgop, there can be either only I or I,P pics between this and the next B_PIC */
                if(i4_b_count_in_gop == i4_b_frms_in_prd)
                {
                    i4_b_pic_idx += (2 + (!i4_b_in_incomp_subgop)); /*Prev*/
                    i4_b_count_in_gop = 0;
                }
                else /* For the last B_PIC of a subgop, there's always a P b/w this & the next B_PIC */
                {
                    i4_b_pic_idx += 2;
                }
                i4_b_count_in_subgop = 0;
            }
        }
        else
        {
            /* For the last B_PIC of a gop
               Normally,there will be 3 pics (P,I,P) between this and the next B_PIC for a CLOSED gop,
               except when
               1)Number of P_pics in the gop = 1
               2)There is an extra P at the end of the gop
               */
            if(i4_b_count_in_gop == i4_b_frms_in_prd)
            {
                i4_b_pic_idx +=
                    (3 + ((i4_b_in_incomp_subgop == 0) && (i4_p_frms_in_prd > 1) &&
                          (i4_pic_disp_order_no != (i4_p_frms_in_prd + i4_b_frms_in_prd - 1))));

                i4_b_count_in_subgop = 0;
            }
            else if(
                i4_b_count_in_subgop <
                i4_num_b_in_subgop) /* For a B_PIC which is not the last one in a subgop */
            {
                i4_b_pic_idx++;
            }
            else /* For the last B_PIC of a subgop */
            {
                i4_b_pic_idx += 2;
                i4_b_count_in_subgop = 0;
            }
        }
        i4_b_pic_idx %= (i4_max_inter_frm_int + 1);
    }
    else /*********** I or P pic *********/
    {
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].i4_pic_id = i4_enc_pic_id;
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].i4_pic_disp_order_no = i4_pic_disp_order_no;
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].i4_is_scd = i4_is_scd;
        /* Store Pic type*/
        e_previous_pic_type = I_PIC;
        if(i4_pic_disp_order_no == 0) /**** I_PIC ****/
        {
            ps_pic_handling->as_pic_stack[i4_ref_pic_idx].e_pic_type = I_PIC;

            /* Update the prev_pic_details */
            memcpy(
                &ps_pic_handling->s_prev_pic_details,
                &ps_pic_handling->as_pic_stack[i4_ref_pic_idx],
                sizeof(pic_details_t));

            /* In case of an I-frame depending on OPEN or CLOSED gop, the ref_pic_idx changes */
            if((!i4_is_gop_closed) && (i4_is_first_gop == 0))
            {
                if((i4_p_frms_in_prd <= 1) && (i4_b_in_incomp_subgop == 0))
                {
                    i4_ref_pic_idx++;
                }
                else /* From the 2nd gop onwards, the I and first P frame are separated by the num_b_in_incomp_subgop */
                {
                    i4_ref_pic_idx += (i4_b_in_incomp_subgop + 1);
                }

                ps_pic_handling->i4_b_in_incomp_subgop_mix_gop =
                    ps_pic_handling->i4_b_in_incomp_subgop;
            }
            else
            {
                i4_ref_pic_idx++;
            }

            i4_b_count_in_gop = 0;
            i4_p_count_in_gop = 0;
            i4_b_count_in_subgop = 0;
        }
        else /**** P_PIC ****/
        {
            ps_pic_handling->as_pic_stack[i4_ref_pic_idx].e_pic_type = P_PIC;
            /* Store Pic type*/
            e_previous_pic_type = P_PIC;

            /* Update the prev_pic_details */
            memcpy(
                &ps_pic_handling->s_prev_pic_details,
                &ps_pic_handling->as_pic_stack[i4_ref_pic_idx],
                sizeof(pic_details_t));

            i4_p_count_in_gop++;
            ps_pic_handling->i4_prev_intra_frame_interval = i4_intra_frm_int;

            /* In case of an P-frame depending on OPEN or CLOSED gop, the ref_pic_idx changes */
            if(i4_is_gop_closed && (i4_p_count_in_gop == i4_p_frms_in_prd))
            {
                /* For the last P_PIC in a gop, if extra_p or incomp_b are present, the
                   number of such pics between this and the next ref_pic is (i4_b_in_incomp_subgop + 1) */
                if((i4_p_count_in_gop > 1) && (i4_b_in_incomp_subgop || i4_extra_p))
                {
                    i4_ref_pic_idx += (i4_b_in_incomp_subgop + 1);
                }
                else
                {
                    i4_ref_pic_idx += i4_inter_frm_int;
                }
            }
            else
            {
                i4_ref_pic_idx += i4_inter_frm_int;
            }
        }

        i4_ref_pic_idx %= (i4_max_inter_frm_int + 1);
    }

    /* Update those variables working on the input frames  */
    i4_pic_disp_order_no++;
    i4_buf_pic_no++;

    /* For any gop */
    if(ps_pic_handling->i4_pic_disp_order_no ==
       (i4_max_inter_frm_int - 1 -
        ((!i4_is_gop_closed) * ps_pic_handling->i4_b_in_incomp_subgop_mix_gop)))
    {
        /* NITT DEBUG : COULD BE REMOVED. Replace i4_rem_frms_in_gop with a single variable thus getting rid of
        the requirement to store rem frms in gop */
        if((!i4_is_gop_closed) && (i4_is_first_gop) &&
           (ps_pic_handling->i4_frms_in_cur_gop[B_PIC] >
            ps_pic_handling->i4_b_in_incomp_subgop_mix_gop))
        {
            ps_pic_handling->i4_rem_frms_in_cur_gop -=
                ps_pic_handling->i4_b_in_incomp_subgop_mix_gop;
        }
    }

    /* End of GOP updates */
    if(i4_pic_disp_order_no == (i4_p_frms_in_prd + i4_b_frms_in_prd + 1))
    {
        /* Now, the end of gop updates */
        i4_pic_disp_order_no = 0;
        i4_buf_pic_no = 0;
        i4_is_first_gop = 0;
        ps_pic_handling->i4_extra_p_mix_gop = ps_pic_handling->i4_extra_p;

        if(i4_is_gop_closed)
        {
            ps_pic_handling->i4_b_in_incomp_subgop_mix_gop = ps_pic_handling->i4_b_in_incomp_subgop;
        }

        for(i = 0; i < MAX_PIC_TYPE; i++)
        {
            ps_pic_handling->i4_frms_in_cur_gop[i] = ps_pic_handling->i4_frms_in_gop[i];
        }
    }

    /* Updating the vars which work on the encoded pics */
    /* For the first gop */
    if(((ps_pic_handling->i4_is_first_gop) &&
        (ps_pic_handling->i4_pic_disp_order_no == (i4_max_inter_frm_int - 1))) ||
       (i4_intra_frm_int == 1))
    {
        ps_pic_handling->i4_coded_pic_no = 0;
        ps_pic_handling->i4_stack_count = 0;
    }

    /* Update the state struct with the modifiable local vars */
    ps_pic_handling->i4_buf_pic_no = i4_buf_pic_no;
    ps_pic_handling->i4_pic_disp_order_no = i4_pic_disp_order_no;
    ps_pic_handling->i4_b_pic_idx = i4_b_pic_idx;
    ps_pic_handling->i4_ref_pic_idx = i4_ref_pic_idx;
    ps_pic_handling->i4_is_first_gop = i4_is_first_gop;
    ps_pic_handling->i4_p_count_in_gop = i4_p_count_in_gop;
    ps_pic_handling->i4_b_count_in_gop = i4_b_count_in_gop;
    ps_pic_handling->i4_b_count_in_subgop = i4_b_count_in_subgop;
    ps_pic_handling->e_previous_pic_type = e_previous_pic_type;
    ps_pic_handling->i4_force_I_frame = i4_force_I_frame;
}

/* ******************************************************************************/
/**
 * @brief Returns the picture type, ip and display order number for the frame to be encoded
 *
 * @param ps_pic_handling
 * @param pi4_pic_id
 * @param pi4_pic_disp_order_no
 * @param pe_pic_type
 */
/* ******************************************************************************/
void get_pic_from_stack(
    pic_handling_t *ps_pic_handling,
    WORD32 *pi4_pic_id,
    WORD32 *pi4_pic_disp_order_no,
    picture_type_e *pe_pic_type,
    WORD32 *pi4_is_scd)
{
    pic_details_t s_pic_details;
    pic_details_t *ps_pic_details = &s_pic_details;

    if(ps_pic_handling->i4_stack_count < 0)
    {
        ps_pic_details->e_pic_type = BUF_PIC;
        ps_pic_details->i4_pic_disp_order_no = -1;
        ps_pic_details->i4_pic_id = -1;
        ps_pic_details->i4_is_scd = 0;
    }
    else
    {
        memcpy(
            ps_pic_details,
            &ps_pic_handling->as_pic_stack[ps_pic_handling->i4_stack_count],
            sizeof(pic_details_t));
        /* Force I frame updations */
        if((ps_pic_handling->i4_force_I_frame == 1) && (ps_pic_details->e_pic_type == I_PIC))
        {
            ps_pic_handling->i4_force_I_frame = 0;
            /* Indicates count for no. of Pictures whose temporal reference has to be modified
               in the new GOP*/
            ps_pic_handling->i4_mod_temp_ref_cnt = ps_pic_handling->i4_b_in_incomp_subgop + 1;
            ps_pic_handling->i4_first_gop_encoded = 1;
        }

        /* In MPEG2, the temporal reference of the first displayed frame in a gop is 0.
           In case of an OPEN_GOP, the B_PICs of the last subgop in a gop,
           maybe coded as a part of the next gop. Hence, in such conditions
           the pic_disp_order needs to be modified so that it gives an indication
           of the temoral reference */
        if((!ps_pic_handling->i4_is_gop_closed) && (ps_pic_handling->i4_first_gop_encoded) &&
           ps_pic_handling->i4_intra_frm_int !=
               1) /*i_only: no change to temporal reference done in case of i only as it is always 0*/
        {
            WORD32 i4_pic_disp_order_no;
            if(s_pic_details.e_pic_type == I_PIC)
            {
                ps_pic_handling->i4_pic_order_cnt_base_offset =
                    ps_pic_handling->i4_b_in_incomp_subgop;
                ps_pic_handling->i4_enable_modulo = 1;
            }
            else if(s_pic_details.e_pic_type == P_PIC)
            {
                ps_pic_handling->i4_enable_modulo = 0;
                ps_pic_handling->i4_change_inter_frm_interval_correction = 0;
            }

            i4_pic_disp_order_no =
                ps_pic_handling->as_pic_stack[ps_pic_handling->i4_stack_count].i4_pic_disp_order_no +
                ps_pic_handling->i4_pic_order_cnt_base_offset;

            if(ps_pic_handling->i4_enable_modulo)
            {
                if(!ps_pic_handling->i4_mod_temp_ref_cnt)
                {
                    i4_pic_disp_order_no =
                        i4_pic_disp_order_no %
                        (ps_pic_handling->i4_prev_intra_frame_interval +
                         ps_pic_handling->i4_change_inter_frm_interval_correction);
                }
                else
                {
                    /* due to force I frame First frame will have only ps_pic_handling->i4_frames_in_fif_gop number of frames*/
                    i4_pic_disp_order_no =
                        i4_pic_disp_order_no % ps_pic_handling->i4_frames_in_fif_gop;
                    ps_pic_handling->i4_mod_temp_ref_cnt--;
                }
            }
            s_pic_details.i4_pic_disp_order_no = i4_pic_disp_order_no;
        }
    }

    /* Giving this to the Codec */
    *pi4_pic_id = s_pic_details.i4_pic_id;
    *pi4_pic_disp_order_no = s_pic_details.i4_pic_disp_order_no;
    *pe_pic_type = s_pic_details.e_pic_type;
    *pi4_is_scd = s_pic_details.i4_is_scd;
}

/* ******************************************************************************/
/**
 * @brief Updates the picture handling state whenever there is changes in input parameter
 *
 * @param ps_pic_handling
 * @param i4_intra_frm_int
 * @param i4_inter_frm_int
 * @param i4_gop_boundary
 */
/* ******************************************************************************/
static void update_pic_distbn(
    pic_handling_t *ps_pic_handling,
    WORD32 i4_intra_frm_int,
    WORD32 i4_inter_frm_int,
    WORD32 i4_gop_boundary)
{
    /* Declarations */
    WORD32 i4_is_gop_closed;
    WORD32 i, i4_prev_inter_frm_int, i4_max_inter_frm_int, i4_pic_disp_order_no;
    WORD32 i4_b_in_incomp_subgop, i4_extra_p, i4_b_in_incomp_subgop_mix_gop, i4_extra_p_mix_gop;
    WORD32 i4_pb_frms_till_prev_p;
    WORD32 ai4_diff_in_frms[MAX_PIC_TYPE];

    /* Initialize the local vars from the state struct */
    i4_is_gop_closed = ps_pic_handling->i4_is_gop_closed;
    i4_prev_inter_frm_int = ps_pic_handling->i4_inter_frm_int;
    i4_max_inter_frm_int = ps_pic_handling->i4_max_inter_frm_int;
    i4_b_in_incomp_subgop = ps_pic_handling->i4_b_in_incomp_subgop;
    i4_extra_p = ps_pic_handling->i4_extra_p;
    i4_b_in_incomp_subgop_mix_gop = ps_pic_handling->i4_b_in_incomp_subgop_mix_gop;
    i4_extra_p_mix_gop = ps_pic_handling->i4_extra_p_mix_gop;
    i4_pic_disp_order_no = ps_pic_handling->i4_pic_disp_order_no;

    i4_pb_frms_till_prev_p = (ps_pic_handling->i4_p_count_in_gop * i4_prev_inter_frm_int);

    /* Check for the validity of the intra_frm_int */
    if(i4_intra_frm_int <= 0)
    {
        i4_intra_frm_int = ps_pic_handling->i4_intra_frm_int;
    }
    /* Check for the validity of the inter_frm_int */
    if((i4_inter_frm_int > i4_max_inter_frm_int) || (i4_inter_frm_int < 0))
    {
        i4_inter_frm_int = ps_pic_handling->i4_inter_frm_int;
    }

    /* Keep a copy of the older frms_in_gop */
    for(i = 0; i < MAX_PIC_TYPE; i++)
    {
        ai4_diff_in_frms[i] = ps_pic_handling->i4_frms_in_cur_gop[i];
    }

    /******* Update all the variables which are calculated from the inter_frm_int *******/

    /* Get the new pic distribution in the gop */
    find_pic_distbn_in_gop(
        ps_pic_handling->i4_frms_in_gop,
        ps_pic_handling->i4_actual_frms_in_gop,
        i4_intra_frm_int,
        i4_inter_frm_int,
        i4_is_gop_closed,
        &i4_b_in_incomp_subgop,
        &i4_extra_p,
        ps_pic_handling->i4_num_active_pic_type,
        ps_pic_handling->i4_field_pic);

    /* Find the other related variables */
    if(i4_gop_boundary == 0)
    {
        /* Since, the inter frame interval has changed between a gop the current gop will
           be a mixed gop. So, we need to find the values of the related varibles */
        find_pic_distbn_in_gop(
            ps_pic_handling->i4_frms_in_cur_gop,
            ps_pic_handling->i4_actual_frms_in_gop,
            (i4_intra_frm_int - i4_pb_frms_till_prev_p),
            i4_inter_frm_int,
            i4_is_gop_closed,
            &i4_b_in_incomp_subgop_mix_gop,
            &i4_extra_p_mix_gop,
            ps_pic_handling->i4_num_active_pic_type,
            ps_pic_handling->i4_field_pic);

        ps_pic_handling->i4_frms_in_cur_gop[P_PIC] += ps_pic_handling->i4_p_count_in_gop;
        ps_pic_handling->i4_frms_in_cur_gop[B_PIC] += ps_pic_handling->i4_b_count_in_gop;
    }
    else
    {
        /*  Since, the inter_frm_interval has changed at a gop boundary, the new gop will have
            all the subgops with the new inter_frm_interval */
        for(i = 0; i < MAX_PIC_TYPE; i++)
        {
            ps_pic_handling->i4_frms_in_cur_gop[i] = ps_pic_handling->i4_frms_in_gop[i];
        }

        i4_b_in_incomp_subgop_mix_gop = i4_b_in_incomp_subgop;
        i4_extra_p_mix_gop = i4_extra_p;
    }

    /* For bit-allocation the rem_frms_in_gop need to be updated */
    /* Checks needed:
    1) If the encoding is happening on the same gop as that of the buffering */
    if(ps_pic_handling->i4_pic_disp_order_no >=
       (i4_max_inter_frm_int - 1 -
        ((!i4_is_gop_closed) * ps_pic_handling->i4_b_in_incomp_subgop_mix_gop)))
    {
        for(i = 0; i < MAX_PIC_TYPE; i++)
        {
            ps_pic_handling->i4_rem_frms_in_cur_gop +=
                (ps_pic_handling->i4_frms_in_cur_gop[i] - ai4_diff_in_frms[i]);
        }
        /* If gop is not closed then the difference in previous to next is to be added */
        if(!i4_is_gop_closed)
            ps_pic_handling->i4_rem_frms_in_cur_gop += (i4_prev_inter_frm_int - i4_inter_frm_int);
    }

    /* Update the vars which will affect the proper filling of the pic_stack */
    if(i4_pic_disp_order_no == 0) /*Check if redundant*/
    {
        ps_pic_handling->i4_buf_pic_no = 0;
    }
    else
    {
        ps_pic_handling->i4_buf_pic_no = 1;
    }

    ps_pic_handling->i4_b_count_in_subgop = 0;

    /* Update the state struct with the new inter_frm_int */
    ps_pic_handling->i4_inter_frm_int = i4_inter_frm_int;
    ps_pic_handling->i4_intra_frm_int = i4_intra_frm_int;
    ps_pic_handling->i4_b_in_incomp_subgop = i4_b_in_incomp_subgop;
    ps_pic_handling->i4_extra_p = i4_extra_p;
    ps_pic_handling->i4_b_in_incomp_subgop_mix_gop = i4_b_in_incomp_subgop_mix_gop;
    ps_pic_handling->i4_extra_p_mix_gop = i4_extra_p_mix_gop;
}

/* ******************************************************************************/
/**
 * @brief Distributes the frames as I, P and B based on intra/inter frame interval.
 *  Along with it it fills the number of frames in sub-gop and extra p frame
 *
 * @param i4_frms_in_gop[MAX_PIC_TYPE]
 * @param i4_intra_frm_int
 * @param i4_inter_frm_int
 * @param i4_is_gop_closed
 * @param pi4_b_in_incomp_subgop
 * @param pi4_extra_p
 */
/* ******************************************************************************/
static void find_pic_distbn_in_gop(
    WORD32 i4_frms_in_gop[MAX_PIC_TYPE],
    WORD32 i4_actual_frms_gop[MAX_PIC_TYPE],
    WORD32 i4_intra_frm_int,
    WORD32 i4_inter_frm_int,
    WORD32 i4_is_gop_closed,
    WORD32 *pi4_b_in_incomp_subgop,
    WORD32 *pi4_extra_p,
    WORD32 i4_num_active_pic_type,
    WORD32 i4_field_pic)
{
    /* Checks */
    WORD32 i;
    WORD32 i4_num_b_in_temp_lyr_1 = 0;
    /* Find the pic distribution in the gop depending on the inter and intra frm intervals */

    /*init for all pic type*/
    for(i = 0; i < MAX_PIC_TYPE; i++)
    {
        i4_frms_in_gop[i] = 0;
    }
    /*Atleast 1 in frame in a gop in all conditions possible*/
    i4_frms_in_gop[I_PIC] = 1;

    if(i4_intra_frm_int == 1) /* All I frames */
    {
        i4_frms_in_gop[P_PIC] = 0;
        i4_frms_in_gop[B_PIC] = 0;
        *pi4_b_in_incomp_subgop = 0;
        *pi4_extra_p = 0;
    }
    else
    {
        if(i4_is_gop_closed)
        {
            i4_frms_in_gop[P_PIC] = ((i4_intra_frm_int - 1) / i4_inter_frm_int);
        }
        else
        {
            i4_frms_in_gop[P_PIC] = ((i4_intra_frm_int - 1) / i4_inter_frm_int);
        }

        /*calculate B pic based on temporal hierarchy*/
        if(!i4_is_gop_closed)
        {
            i4_num_b_in_temp_lyr_1 = i4_frms_in_gop[P_PIC] + i4_frms_in_gop[I_PIC];
        }
        else
        {
            i4_num_b_in_temp_lyr_1 = i4_frms_in_gop[P_PIC] - 1 + i4_frms_in_gop[I_PIC];
        }

        if(i4_field_pic == 0)
        {
            /*HEVC_hierarchy*/

            for(i = 2; i < i4_num_active_pic_type; i++)
            {
                i4_frms_in_gop[i] = (WORD32)(i4_num_b_in_temp_lyr_1 * pow(2, (i - 2)));
            }
        }
        if(i4_field_pic == 1)
        {
            i4_frms_in_gop[P1_PIC] = i4_frms_in_gop[P_PIC];
            i4_frms_in_gop[P1_PIC] += 1;
            /* for the first layer initialisation is done*/
            for(i = 2; i < i4_num_active_pic_type; i++)
            {
                i4_frms_in_gop[i] = (WORD32)(i4_num_b_in_temp_lyr_1 * pow(2, (i - 2)));
                i4_frms_in_gop[i + FIELD_OFFSET] = i4_frms_in_gop[i];
            }
        }
    }
    /*store the true number of pictures in GOP before altering it based on number of non ref and ref B pic*/
    for(i = 0; i < MAX_PIC_TYPE; i++)
    {
        i4_actual_frms_gop[i] = i4_frms_in_gop[i];
        trace_printf("PIC TYPES IN GOP of %d type = %d\n", i, i4_frms_in_gop[i]);
    }
}

/******************************************************************************
  Function Name   : pic_type_get_intra_frame_interval
  Description     :
  Arguments       :
  Return Values   : intra_frm_int
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
WORD32 pic_type_get_intra_frame_interval(pic_handling_t *ps_pic_handling)
{
    return (ps_pic_handling->i4_intra_frm_int);
}

/******************************************************************************
  Function Name   : pic_type_get_actual_intra_frame_interval
  Description     :
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
WORD32 pic_type_get_actual_intra_frame_interval(pic_handling_t *ps_pic_handling)
{
    WORD32 i4_intra_frame_int = 0, i = 0;
    for(i = 0; i < MAX_PIC_TYPE; i++)
        i4_intra_frame_int += ps_pic_handling->i4_actual_frms_in_gop[i];
    return (i4_intra_frame_int);
}
/******************************************************************************
  Function Name   : pic_type_get_inter_frame_interval
  Description     :
  Arguments       :
  Return Values   : inter_frm_int
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
WORD32 pic_type_get_inter_frame_interval(pic_handling_t *ps_pic_handling)
{
    return (ps_pic_handling->i4_inter_frm_int);
}

/******************************************************************************
  Function Name   : pic_type_get_field_pic
  Description     :
  Arguments       :
  Return Values   : i4_field_pic
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
WORD32 pic_type_get_field_pic(pic_handling_t *ps_pic_handling)
{
    return (ps_pic_handling->i4_field_pic);
}

/******************************************************************************
  Function Name   : pic_type_is_gop_closed
  Description     :
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
WORD32 pic_type_is_gop_closed(pic_handling_t *ps_pic_handling)
{
    return (ps_pic_handling->i4_is_gop_closed);
}

/******************************************************************************
  Function Name   : pic_type_get_rem_frms_in_gop
  Description     :
  Arguments       :
  Return Values   : void
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
WORD32 pic_type_get_rem_frms_in_gop(pic_handling_t *ps_pic_handling)
{
    /* memcpy(ai4_rem_frms_in_gop,ps_pic_handling->i4_rem_frms_in_gop,sizeof(ps_pic_handling->i4_rem_frms_in_gop)); */
    return (ps_pic_handling->i4_rem_frms_in_cur_gop);
}
/******************************************************************************
  Function Name   : pic_type_get_frms_in_gop_force_I_frm
  Description     :
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
WORD32 pic_type_get_frms_in_gop_force_I_frm(pic_handling_t *ps_pic_handling)
{
    return (ps_pic_handling->i4_frames_in_fif_gop);
}
/******************************************************************************
  Function Name   : pic_type_get_frms_in_gop
  Description     :
  Arguments       :
  Return Values   : void
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
void pic_type_get_frms_in_gop(pic_handling_t *ps_pic_handling, WORD32 ai4_frms_in_gop[MAX_PIC_TYPE])
{
    memcpy(
        ai4_frms_in_gop,
        ps_pic_handling->i4_frms_in_cur_gop,
        sizeof(ps_pic_handling->i4_frms_in_cur_gop));
}
/******************************************************************************
  Function Name   : pic_type_get_actual_frms_in_gop
  Description     :
  Arguments       :
  Return Values   : void
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
void pic_type_get_actual_frms_in_gop(
    pic_handling_t *ps_pic_handling, WORD32 ai4_frms_in_gop[MAX_PIC_TYPE])
{
    memcpy(
        ai4_frms_in_gop,
        ps_pic_handling->i4_actual_frms_in_gop,
        sizeof(ps_pic_handling->i4_actual_frms_in_gop));
}

/******************************************************************************
  Function Name   : pic_type_get_frms_in_gop
  Description     :
  Arguments       :
  Return Values   : void
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
WORD32 pic_type_get_disp_order_no(pic_handling_t *ps_pic_handling)
{
    return (ps_pic_handling->i4_pic_disp_order_no);
}

/******************************************************************************
  Function Name   : pic_type_get_frms_in_gop
  Description     :
  Arguments       :
  Return Values   : void
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
void set_force_I_frame_flag(pic_handling_t *ps_pic_handling)
{
    ps_pic_handling->i4_force_I_frame = 1;
}
/******************************************************************************
  Function Name   : get_is_scd
  Description     :
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
WORD32 get_is_scd(pic_handling_t *ps_pic_handling)
{
    return (ps_pic_handling->as_pic_stack[ps_pic_handling->i4_stack_count].i4_is_scd);
}
/******************************************************************************/
/* Functions that work on the encoded frames */
/******************************************************************************/
/******************************************************************************
  Function Name   : update_pic_handling
  Description     : Will be called only for the frames to be encoded
  Arguments       :
  Return Values   : void
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
void update_pic_handling(
    pic_handling_t *ps_pic_handling,
    picture_type_e e_pic_type,
    WORD32 i4_is_non_ref_pic,
    WORD32 i4_is_scd_I_frame)
{
    WORD32 i4_max_inter_frm_int;
    WORD32 i;

    /* Initializing the local vars with that of the state struct */
    i4_max_inter_frm_int = ps_pic_handling->i4_max_inter_frm_int;

    /* Update the variables working on the output frames */
    /* Update the stack count */
    ps_pic_handling->i4_stack_count++;

    /*i_only reset stack count everytime to zero*/
    if(ps_pic_handling->i4_stack_count == (i4_max_inter_frm_int + 1) ||
       ps_pic_handling->i4_intra_frm_int == 1)
    {
        ps_pic_handling->i4_stack_count = 0;
    }
    if(i4_is_non_ref_pic)
    {
        ps_pic_handling->i4_non_ref_B_pic_count++;
    }

    /*if scd frame assume one frame has been encoded and handle*/
    if(i4_is_scd_I_frame || e_pic_type == I_PIC)
    {
        ps_pic_handling->i4_rem_frms_in_cur_gop = 0;
        for(i = 0; i < MAX_PIC_TYPE; i++)
        {
            ps_pic_handling->i4_rem_frms_in_cur_gop += ps_pic_handling->i4_actual_frms_in_gop[i];
        }
    }
    /* Update the rem_frms_in_gop */
    /*HEVC_RC: update rem frms in cur gop counter only once for two reference pic (based on weightage)
     This is assuming non reference pic comes sequentially*/
    //if(!i4_is_non_ref_pic || ps_pic_handling->i4_non_ref_B_pic_count == NUM_NON_REF_B_EQE)
    {
        ps_pic_handling->i4_rem_frms_in_cur_gop--;
        ps_pic_handling->i4_non_ref_B_pic_count = 0;
    }

    /* Assumption : Rem_frms_in_gop needs to be taken care of, for every change in frms */
    ps_pic_handling->i4_last_frm_in_gop = 0;
    if(ps_pic_handling->i4_rem_frms_in_cur_gop == 0)
    {
        /* Copy the cur_frms_in_gop to the rem_frm_in_gop */
        ps_pic_handling->i4_rem_frms_in_cur_gop = 0;
        for(i = 0; i < MAX_PIC_TYPE; i++)
        {
            ps_pic_handling->i4_rem_frms_in_cur_gop += ps_pic_handling->i4_actual_frms_in_gop[i];
            //ASSERT(ps_pic_handling->i4_actual_frms_in_gop[B2_PIC] == 0);
        }

        ps_pic_handling->i4_last_frm_in_gop = 1;
        ps_pic_handling->i4_first_gop_encoded = 1;
    }
}
/******************************************************************************
  Function Name   : is_last_frame_in_gop
  Description     :
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
WORD32 is_last_frame_in_gop(pic_handling_handle ps_pic_handling)
{
    return (ps_pic_handling->i4_last_frm_in_gop);
}

/******************************************************************************
  Function Name   : skip_encoded_frame
  Description     : Needs to go to the current pic in the pic_stack.
                    If it's B_PIC don't do anything
                    If it's a reference picture, push all but the last B_PICs
                    in the current subgop one place down (i.e. just copy their pic_details)
                    and move the last B_PIC in that subgop to the next slot of the
                    skipped picture and convert it's pic_type to that of the reference picture


  Arguments       :
  Return Values   : void
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
void skip_encoded_frame(pic_handling_t *ps_pic_handling, picture_type_e e_pic_type)
{
    pic_details_t s_pic_details;
    WORD32 i4_stack_count, i4_next_ref_pic_idx, i4_pic_idx;
    WORD32 i4_max_inter_frm_int, i4_last_b_pic_idx, i4_first_b_pic_idx;
    WORD32 i4_next_pic_idx;

    /* State variables used to initialize the local vars (Not to be changed) */
    i4_stack_count = ps_pic_handling->i4_stack_count;
    i4_next_ref_pic_idx = ps_pic_handling->i4_ref_pic_idx;
    i4_max_inter_frm_int = ps_pic_handling->i4_max_inter_frm_int;

    i4_next_pic_idx = ((i4_stack_count + 1) % (i4_max_inter_frm_int + 1));

    /* Check what is the encoded frm_type
       Changing a B_PIC to a ref_pic is not reqd if
       there are no B_PICs referring from the skipped ref_pic */
    if(((e_pic_type == P_PIC) || (e_pic_type == I_PIC)) && (i4_next_pic_idx != i4_next_ref_pic_idx))
    {
        /* Go to the last B_PIC before the next_ref_pic */
        if(i4_next_ref_pic_idx == 0)
        {
            i4_last_b_pic_idx = i4_max_inter_frm_int;
        }
        else
        {
            i4_last_b_pic_idx = (i4_next_ref_pic_idx - 1);
        }

        /* Keep a copy of the last B_PIC pic_details */
        memcpy(
            &s_pic_details,
            &ps_pic_handling->as_pic_stack[i4_last_b_pic_idx],
            sizeof(pic_details_t));

        i4_pic_idx = i4_last_b_pic_idx;
        i4_first_b_pic_idx = (i4_stack_count + 1) % (i4_max_inter_frm_int + 1);

        /* All the B_PICs other than the last one, need to be shifted one place in the stack */
        while((i4_pic_idx != i4_stack_count) && (i4_first_b_pic_idx != i4_last_b_pic_idx))
        {
            if(i4_pic_idx == 0)
            {
                i4_pic_idx = i4_max_inter_frm_int;
            }
            else
            {
                i4_pic_idx--;
            }

            memcpy(
                &ps_pic_handling->as_pic_stack[(i4_pic_idx + 1) % (i4_max_inter_frm_int + 1)],
                &ps_pic_handling->as_pic_stack[i4_pic_idx],
                sizeof(pic_details_t));
        }

        /* Check what type of ref_pic it is */
        /*if(ps_pic_handling->i4_p_count_in_gop >= ps_pic_handling->i4_frms_in_cur_gop[P_PIC])
        {
            e_ref_pic_type = I_PIC;
        }
        else
        {
            e_ref_pic_type = P_PIC;
        }*/

        /* Copy the last B_PIC pic_details to the first B_PIC place and change it's pic type to the ref_PIC */
        ps_pic_handling->as_pic_stack[i4_first_b_pic_idx].e_pic_type = P_PIC; /*e_ref_pic_type*/
        ;
        ps_pic_handling->as_pic_stack[i4_first_b_pic_idx].i4_pic_disp_order_no =
            s_pic_details.i4_pic_disp_order_no;
        ps_pic_handling->as_pic_stack[i4_first_b_pic_idx].i4_pic_id = s_pic_details.i4_pic_id;
    }
}

/******************************************************************************
  Function Name   : flush_frame
  Description     : Since when a flush frame is called, there will be no valid
                    frames after it, the last frame cannot be a B_PIC, as there
                    will be no reference frame for it (Input in display order)

                    So,this fxn needs to go to the last added pic in the pic_stack.
                    If it's reference pic don't do anything
                    If it's a B_PIC, copy it's pic_details and put it in the
                    place of the next reference pic, changing the pic_type to
                    P_PIC

  Arguments       :
  Return Values   : void
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
void flush_frame_from_pic_stack(pic_handling_t *ps_pic_handling)
{
    pic_details_t s_prev_pic_details;

    /* Get the last entered pic_details (not to be modified here) */
    WORD32 i4_prev_b_pic_idx = ps_pic_handling->i4_prev_b_pic_idx;
    WORD32 i4_ref_pic_idx = ps_pic_handling->i4_ref_pic_idx;
    WORD32 i4_b_pic_idx = ps_pic_handling->i4_b_pic_idx;

    memcpy(&s_prev_pic_details, &ps_pic_handling->s_prev_pic_details, sizeof(pic_details_t));

    if(s_prev_pic_details.e_pic_type == B_PIC)
    {
        /* Copy the last B_PIC details to the next reference pic in display order */
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].i4_pic_disp_order_no =
            s_prev_pic_details.i4_pic_disp_order_no;
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].i4_pic_id = s_prev_pic_details.i4_pic_id;
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].e_pic_type = P_PIC;

        /* Modify the last B_PIC pic_type, so that codec gets to know when all the buffered frames
           are flushed */
        ps_pic_handling->as_pic_stack[i4_prev_b_pic_idx].e_pic_type = MAX_PIC_TYPE;
        ps_pic_handling->as_pic_stack[i4_prev_b_pic_idx].i4_pic_id = -1;
        ps_pic_handling->as_pic_stack[i4_prev_b_pic_idx].i4_pic_disp_order_no = -1;
    }
    else
    {
        /* Modify the next pic_type details in the stack, so that codec gets to know when all the
           buffered frames are flushed */
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].e_pic_type = MAX_PIC_TYPE;
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].i4_pic_id = -1;
        ps_pic_handling->as_pic_stack[i4_ref_pic_idx].i4_pic_disp_order_no = -1;

        if(ps_pic_handling->i4_inter_frm_int != 1)
        {
            ps_pic_handling->as_pic_stack[i4_b_pic_idx].e_pic_type = MAX_PIC_TYPE;
            ps_pic_handling->as_pic_stack[i4_b_pic_idx].i4_pic_id = -1;
            ps_pic_handling->as_pic_stack[i4_b_pic_idx].i4_pic_disp_order_no = -1;
        }
    }
}

/********************************************************************************************/
/******************************************************************************
  Function Name   : add_pic_to_stack_re_enc
  Description     : In case of a re-enc, we can assume the pictures to be coming
                    in the encode order.
                    In case of re-encoder basically, there are 2 problematic cases.
                    1)Inter_frm_int is not known to start with
                    2)Inter_frm_int can keep changing
                    3)Intra_frm_int set by the application and that actually in the
                      decoded bitstream may be different

  Arguments       :
  Return Values   : WORD32
  Revision History:
                    Creation

Assumptions -

Checks      -
*****************************************************************************/
WORD32 add_pic_to_stack_re_enc(
    pic_handling_t *ps_pic_handling, WORD32 i4_enc_pic_id, picture_type_e e_pic_type)
{
    WORD32 i4_b_count_in_subgop;
    WORD32 i4_max_inter_frm_int, i4_inter_frm_int, i4_intra_frm_int;
    WORD32 i4_pic_disp_order_no;
    WORD32 i4_is_gop_closed;
    picture_type_e e_out_pic_type;
    WORD32 i4_b_in_incomp_subgop;

    /* Check if a change in intra_frm_int call has been made */
    if(ps_pic_handling->i4_change_in_intra_frm_int == 1)
    {
        update_pic_distbn(
            ps_pic_handling,
            ps_pic_handling->i4_new_intra_frm_int,
            ps_pic_handling->i4_inter_frm_int,
            1);
        ps_pic_handling->i4_change_in_intra_frm_int = 0;
    }

    /* Check if a change in inter_frm_int call has been made */
    if(ps_pic_handling->i4_change_in_inter_frm_int == 1)
    {
        update_pic_distbn(
            ps_pic_handling,
            ps_pic_handling->i4_intra_frm_int,
            ps_pic_handling->i4_new_inter_frm_int,
            1);

        ps_pic_handling->i4_change_in_inter_frm_int = 0;
    }

    /* Initialize the local vars with the state vars */
    i4_b_count_in_subgop = ps_pic_handling->i4_b_count_in_subgop;
    i4_max_inter_frm_int = ps_pic_handling->i4_max_inter_frm_int;
    i4_inter_frm_int = ps_pic_handling->i4_inter_frm_int;
    i4_intra_frm_int = ps_pic_handling->i4_intra_frm_int;
    i4_pic_disp_order_no = ps_pic_handling->i4_pic_disp_order_no;
    i4_is_gop_closed = ps_pic_handling->i4_is_gop_closed;
    i4_b_in_incomp_subgop = ps_pic_handling->i4_b_in_incomp_subgop;

    e_out_pic_type = e_pic_type;

    /* Initially the rate_control assumes an IPP sequence */
    if(e_pic_type == B_PIC)
    {
        /* Update the number of B_PICs in a subgop */
        i4_b_count_in_subgop++;

        if(i4_b_count_in_subgop > i4_max_inter_frm_int)
        {
            return (-1);
        }

        /* If the number of B_PICs exceed the set inter_frm_int then
           change the inter_frm_int */
        if(i4_b_count_in_subgop > (i4_inter_frm_int - 1))
        {
            i4_inter_frm_int = (i4_b_count_in_subgop + 1);

            update_pic_distbn(ps_pic_handling, i4_intra_frm_int, i4_inter_frm_int, 0);
        }
    }
    else if((e_pic_type == I_PIC) || (e_pic_type == P_PIC))
    {
        /* If the B_PICs in the prev subgop were fewer than the current (inter_frm_int-1)
           and none of these conditions occur, it'll mean the decrease in the inter_frm_int
           1)End of a GOP
           2)Beginning of an OPEN_GOP
        */
        if((i4_b_count_in_subgop < (i4_inter_frm_int - 1)) &&
           !((!i4_is_gop_closed) && (i4_b_count_in_subgop >= i4_b_in_incomp_subgop)) &&
           !((i4_pic_disp_order_no + (i4_inter_frm_int - 1 - i4_b_count_in_subgop)) >
             i4_intra_frm_int))
        {
            i4_inter_frm_int = (i4_b_count_in_subgop + 1);

            update_pic_distbn(ps_pic_handling, i4_intra_frm_int, i4_inter_frm_int, 0);
        }

        /* Reset the number of B_PICs in a subgop */
        i4_b_count_in_subgop = 0;
    }

    /* Updation of the frame level vars */
    i4_pic_disp_order_no++;

    /* End of gop condition
       Two cases can arise :
       1) The intra_frm_int set by the application is greater than the actual bitstream intra_frm_int
          (i.e. we will get an I frame before pic_disp_order_no goes to intra_frm_int)
       2) The intra_frm_int set by the application is smaller than the actual bitstream intra_frm_int
          (i.e. we won't get an I_PIC even if pic_disp_order_no goes to intra_frm_int)
       Constraints :
       1) I_PIC cannot be changed to B_PIC
       2) B_PIC cannot be changed to I_PIC */
    if(i4_pic_disp_order_no >= i4_intra_frm_int)
    {
        if(e_pic_type != B_PIC)
        {
            e_out_pic_type = I_PIC;
        }
        else
        {
            e_out_pic_type = B_PIC;
            ps_pic_handling->i4_rem_frms_in_cur_gop++;
            ps_pic_handling->i4_frms_in_cur_gop[B_PIC]++;
            ps_pic_handling->i4_frms_in_gop[B_PIC]++;
        }
    }
    else
    {
        if((e_pic_type == I_PIC) && (!ps_pic_handling->i4_is_first_gop))
        {
            e_out_pic_type = P_PIC;
            ps_pic_handling->i4_rem_frms_in_cur_gop++;
            ps_pic_handling->i4_frms_in_cur_gop[P_PIC]++;
            ps_pic_handling->i4_frms_in_gop[P_PIC]++;
        }
        else
        {
            e_out_pic_type = e_pic_type;
        }
    }

    /* Update the frm_vars at the end of the gop */
    if(i4_pic_disp_order_no == (ps_pic_handling->i4_frms_in_cur_gop[P_PIC] +
                                ps_pic_handling->i4_frms_in_cur_gop[B_PIC] + 1))
    {
        i4_pic_disp_order_no = 0;
        ps_pic_handling->i4_is_first_gop = 0;
    }

    /* Update the vars working on the encoded pics */
    if((ps_pic_handling->i4_is_first_gop) && (ps_pic_handling->i4_stack_count == -1))
    {
        ps_pic_handling->i4_coded_pic_no = 0;
        ps_pic_handling->i4_stack_count = 0;
    }

    /* Add the pic_details to the pic_stack */
    ps_pic_handling->as_pic_stack[ps_pic_handling->i4_stack_count].e_pic_type = e_out_pic_type;
    ps_pic_handling->as_pic_stack[ps_pic_handling->i4_stack_count].i4_pic_disp_order_no =
        ps_pic_handling->i4_pic_disp_order_no;
    ps_pic_handling->as_pic_stack[ps_pic_handling->i4_stack_count].i4_pic_id = i4_enc_pic_id;

    /* Writing back those values which need to be updated */
    ps_pic_handling->i4_inter_frm_int = i4_inter_frm_int;
    ps_pic_handling->i4_pic_disp_order_no = i4_pic_disp_order_no;
    ps_pic_handling->i4_b_count_in_subgop = i4_b_count_in_subgop;

    return (0);
}

/******************************************************************************
  Function Name   : pic_type_update_frms_in_gop
  Description     : Update current gop from lap data
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/

void pic_type_update_frms_in_gop(
    pic_handling_t *ps_pic_handling, WORD32 ai4_frms_in_gop[MAX_PIC_TYPE])
{
    memmove(
        ps_pic_handling->i4_frms_in_cur_gop,
        ai4_frms_in_gop,
        sizeof(ps_pic_handling->i4_frms_in_cur_gop));
    memmove(
        ps_pic_handling->i4_actual_frms_in_gop,
        ai4_frms_in_gop,
        sizeof(ps_pic_handling->i4_actual_frms_in_gop));
}
/******************************************************************************
  Function Name   : get_default_intra_period
  Description     :
  Arguments       : ps_pic_handling
  Return Values   : void
  Revision History:
                    Creation
*****************************************************************************/
WORD32 get_default_intra_period(pic_handling_t *ps_pic_handling)
{
    return (ps_pic_handling->i4_intra_frm_int);
}