ronnie
2022-10-23 68f5ca84d926736535296469a2d3fcbea06ca8a2
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
/******************************************************************************
 *
 * 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
*  ihevce_inter_pred.c
*
* @brief
*  Contains funtions for giving out prediction samples for a given pu
*
* @author
*  Ittiam
*
* @par List of Functions:
*   - ihevc_inter_pred()
*
*
*******************************************************************************
*/
/* System include files */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <stdarg.h>
#include <math.h>
 
/* User include files */
#include "ihevc_typedefs.h"
#include "itt_video_api.h"
#include "ihevce_api.h"
 
#include "rc_cntrl_param.h"
#include "rc_frame_info_collector.h"
#include "rc_look_ahead_params.h"
 
#include "ihevc_debug.h"
#include "ihevc_defs.h"
#include "ihevc_structs.h"
#include "ihevc_platform_macros.h"
#include "ihevc_deblk.h"
#include "ihevc_itrans_recon.h"
#include "ihevc_chroma_itrans_recon.h"
#include "ihevc_chroma_intra_pred.h"
#include "ihevc_intra_pred.h"
#include "ihevc_inter_pred.h"
#include "ihevc_mem_fns.h"
#include "ihevc_padding.h"
#include "ihevc_weighted_pred.h"
#include "ihevc_sao.h"
#include "ihevc_resi_trans.h"
#include "ihevc_quant_iquant_ssd.h"
#include "ihevc_cabac_tables.h"
 
#include "ihevce_defs.h"
#include "ihevce_lap_enc_structs.h"
#include "ihevce_multi_thrd_structs.h"
#include "ihevce_me_common_defs.h"
#include "ihevce_had_satd.h"
#include "ihevce_error_codes.h"
#include "ihevce_bitstream.h"
#include "ihevce_cabac.h"
#include "ihevce_rdoq_macros.h"
#include "ihevce_function_selector.h"
#include "ihevce_enc_structs.h"
#include "ihevce_entropy_structs.h"
#include "ihevce_cmn_utils_instr_set_router.h"
#include "ihevce_enc_loop_structs.h"
#include "ihevce_inter_pred.h"
#include "ihevc_weighted_pred.h"
 
/*****************************************************************************/
/* Global tables                                                             */
/*****************************************************************************/
 
/**
******************************************************************************
* @brief  Table of filter tap coefficients for HEVC luma inter prediction
* input   : sub pel mv position (dx/dy = 0:3)
* output  : filter coeffs to be used for that position
*
* @remarks See section 8.5.2.2.2.1 Luma sample interpolation process of HEVC
******************************************************************************
*/
WORD8 gai1_hevc_luma_filter_taps[4][NTAPS_LUMA] = { { 0, 0, 0, 64, 0, 0, 0, 0 },
                                                    { -1, 4, -10, 58, 17, -5, 1, 0 },
                                                    { -1, 4, -11, 40, 40, -11, 4, -1 },
                                                    { 0, 1, -5, 17, 58, -10, 4, -1 } };
 
/**
******************************************************************************
* @brief  Table of filter tap coefficients for HEVC chroma inter prediction
* input   : chroma sub pel mv position (dx/dy = 0:7)
* output  : filter coeffs to be used for that position
*
* @remarks See section 8.5.2.2.2.2 Chroma sample interpolation process of HEVC
The filter uses only the first four elements in each array
******************************************************************************
*/
WORD8 gai1_hevc_chroma_filter_taps[8][NTAPS_CHROMA] = { { 0, 64, 0, 0 },    { -2, 58, 10, -2 },
                                                        { -4, 54, 16, -2 }, { -6, 46, 28, -4 },
                                                        { -4, 36, 36, -4 }, { -4, 28, 46, -6 },
                                                        { -2, 16, 54, -4 }, { -2, 10, 58, -2 } };
 
/*****************************************************************************/
/* Function Definitions                                                      */
/*****************************************************************************/
 
/**
*******************************************************************************
*
* @brief
*  Performs Luma inter pred based on sub pel position dxdy and store the result
*  in a 16 bit destination buffer
*
* @param[in] pu1_src
*  pointer to the source correspoding to integer pel position of a mv (left and
*  top justified integer position)
*
* @param[out] pi2_dst
*  WORD16 pointer to the destination
*
* @param[in] src_strd
*  source buffer stride
*
* @param[in] dst_strd
*  destination buffer stride
*
* @param[in] pi2_hdst_scratch
*  scratch buffer for intermediate storage of horizontal filter output; used as
*  input for vertical filtering when sub pel components (dx != 0) && (dy != 0)
*
*  Max scratch buffer required is w * (h + 7) * sizeof(WORD16)
*
* @param[in] ht
*  width of the prediction unit
*
* @param[in] wd
*  width of the prediction unit
*
* @param[in] dx
*  qpel position[0:3] of mv in x direction
*
* @param[in] dy
*  qpel position[0:3] of mv in y direction
*
* @returns
*   none
*
* @remarks
*
*******************************************************************************
*/
void ihevce_luma_interpolate_16bit_dxdy(
    UWORD8 *pu1_src,
    WORD16 *pi2_dst,
    WORD32 src_strd,
    WORD32 dst_strd,
    WORD16 *pi2_hdst_scratch,
    WORD32 ht,
    WORD32 wd,
    WORD32 dy,
    WORD32 dx,
    func_selector_t *ps_func_selector)
{
    if((0 == dx) && (0 == dy))
    {
        /*--------- full pel position : copy input by upscaling-------*/
 
        ps_func_selector->ihevc_inter_pred_luma_copy_w16out_fptr(
            pu1_src, pi2_dst, src_strd, dst_strd, &gai1_hevc_luma_filter_taps[0][0], ht, wd);
    }
    else if((0 != dx) && (0 != dy))
    {
        /*----------sub pel in both x and y direction---------*/
 
        UWORD8 *pu1_horz_src = pu1_src - (3 * src_strd);
        WORD32 hdst_buf_stride = wd;
        WORD16 *pi2_vert_src = pi2_hdst_scratch + (3 * hdst_buf_stride);
 
        /* horizontal filtering of source done in a scratch buffer first  */
        ps_func_selector->ihevc_inter_pred_luma_horz_w16out_fptr(
            pu1_horz_src,
            pi2_hdst_scratch,
            src_strd,
            hdst_buf_stride,
            &gai1_hevc_luma_filter_taps[dx][0],
            (ht + NTAPS_LUMA - 1),
            wd);
 
        /* vertical filtering on scratch buffer and stored in desitnation  */
        ps_func_selector->ihevc_inter_pred_luma_vert_w16inp_w16out_fptr(
            pi2_vert_src,
            pi2_dst,
            hdst_buf_stride,
            dst_strd,
            &gai1_hevc_luma_filter_taps[dy][0],
            ht,
            wd);
    }
    else if(0 == dy)
    {
        /*----------sub pel in x direction only ---------*/
 
        ps_func_selector->ihevc_inter_pred_luma_horz_w16out_fptr(
            pu1_src, pi2_dst, src_strd, dst_strd, &gai1_hevc_luma_filter_taps[dx][0], ht, wd);
    }
    else /* if (0 == dx) */
    {
        /*----------sub pel in y direction only ---------*/
 
        ps_func_selector->ihevc_inter_pred_luma_vert_w16out_fptr(
            pu1_src, pi2_dst, src_strd, dst_strd, &gai1_hevc_luma_filter_taps[dy][0], ht, wd);
    }
}
 
/**
*******************************************************************************
*
* @brief
*  Performs Luma inter pred based on sub pel position dxdy and store the result
*  in a 8 bit destination buffer
*
* @param[in] pu1_src
*  pointer to the source correspoding to integer pel position of a mv (left and
*  top justified integer position)
*
* @param[out] pu1_dst
*  UWORD8 pointer to the destination
*
* @param[in] src_strd
*  source buffer stride
*
* @param[in] dst_strd
*  destination buffer stride
*
* @param[in] pi2_hdst_scratch
*  scratch buffer for intermediate storage of horizontal filter output; used as
*  input for vertical filtering when sub pel components (dx != 0) && (dy != 0)
*
*  Max scratch buffer required is w * (h + 7) * sizeof(WORD16)
*
* @param[in] ht
*  width of the prediction unit
*
* @param[in] wd
*  width of the prediction unit
*
* @param[in] dx
*  qpel position[0:3] of mv in x direction
*
* @param[in] dy
*  qpel position[0:3] of mv in y direction
*
* @returns
*   none
*
* @remarks
*
*******************************************************************************
*/
void ihevce_luma_interpolate_8bit_dxdy(
    UWORD8 *pu1_src,
    UWORD8 *pu1_dst,
    WORD32 src_strd,
    WORD32 dst_strd,
    WORD16 *pi2_hdst_scratch,
    WORD32 ht,
    WORD32 wd,
    WORD32 dy,
    WORD32 dx,
    func_selector_t *ps_func_selector)
{
    if((0 == dx) && (0 == dy))
    {
        /*--------- full pel position : copy input as is -------*/
 
        ps_func_selector->ihevc_inter_pred_luma_copy_fptr(
            pu1_src, pu1_dst, src_strd, dst_strd, &gai1_hevc_luma_filter_taps[0][0], ht, wd);
    }
    else if((0 != dx) && (0 != dy))
    {
        /*----------sub pel in both x and y direction---------*/
 
        UWORD8 *pu1_horz_src = pu1_src - (3 * src_strd);
        WORD32 hdst_buf_stride = wd;
        WORD16 *pi2_vert_src = pi2_hdst_scratch + (3 * hdst_buf_stride);
 
        /* horizontal filtering of source done in a scratch buffer first  */
        ps_func_selector->ihevc_inter_pred_luma_horz_w16out_fptr(
            pu1_horz_src,
            pi2_hdst_scratch,
            src_strd,
            hdst_buf_stride,
            &gai1_hevc_luma_filter_taps[dx][0],
            (ht + NTAPS_LUMA - 1),
            wd);
 
        /* vertical filtering on scratch buffer and stored in desitnation  */
        ps_func_selector->ihevc_inter_pred_luma_vert_w16inp_fptr(
            pi2_vert_src,
            pu1_dst,
            hdst_buf_stride,
            dst_strd,
            &gai1_hevc_luma_filter_taps[dy][0],
            ht,
            wd);
    }
    else if(0 == dy)
    {
        /*----------sub pel in x direction only ---------*/
 
        ps_func_selector->ihevc_inter_pred_luma_horz_fptr(
            pu1_src, pu1_dst, src_strd, dst_strd, &gai1_hevc_luma_filter_taps[dx][0], ht, wd);
    }
    else /* if (0 == dx) */
    {
        /*----------sub pel in y direction only ---------*/
 
        ps_func_selector->ihevc_inter_pred_luma_vert_fptr(
            pu1_src, pu1_dst, src_strd, dst_strd, &gai1_hevc_luma_filter_taps[dy][0], ht, wd);
    }
}
 
/**
*******************************************************************************
*
* @brief
*  Performs Luma prediction for a inter prediction unit(PU)
*
* @par Description:
*  For a given PU, Inter prediction followed by weighted prediction (if
*  required)
*
* @param[in] ps_inter_pred_ctxt
*  context for inter prediction; contains ref list, weight offsets, ctb offsets
*
* @param[in] ps_pu
*  pointer to PU structure whose inter prediction needs to be done
*
* @param[in] pu1_dst_buf
*  pointer to destination buffer where the inter prediction is done
*
* @param[in] dst_stride
*  pitch of the destination buffer
*
* @returns
*   IV_FAIL for mvs going outside ref frame padded limits
*   IV_SUCCESS after completing mc for given inter pu
*
* @remarks
*
*******************************************************************************
*/
IV_API_CALL_STATUS_T ihevce_luma_inter_pred_pu(
    void *pv_inter_pred_ctxt,
    pu_t *ps_pu,
    void *pv_dst_buf,
    WORD32 dst_stride,
    WORD32 i4_flag_inter_pred_source)
{
    inter_pred_ctxt_t *ps_inter_pred_ctxt = (inter_pred_ctxt_t *)pv_inter_pred_ctxt;
    func_selector_t *ps_func_selector = ps_inter_pred_ctxt->ps_func_selector;
 
    WORD32 inter_pred_idc = ps_pu->b2_pred_mode;
    UWORD8 *pu1_dst_buf = (UWORD8 *)pv_dst_buf;
    WORD32 pu_wd = (ps_pu->b4_wd + 1) << 2;
    WORD32 pu_ht = (ps_pu->b4_ht + 1) << 2;
 
    WORD32 wp_flag = ps_inter_pred_ctxt->i1_weighted_pred_flag ||
                     ps_inter_pred_ctxt->i1_weighted_bipred_flag;
 
    /* 16bit dest required for interpolate if weighted pred is on or bipred */
    WORD32 store_16bit_output;
 
    recon_pic_buf_t *ps_ref_pic_l0, *ps_ref_pic_l1;
    UWORD8 *pu1_ref_pic, *pu1_ref_int_pel;
    WORD32 ref_pic_stride;
 
    /* offset of reference block in integer pel units */
    WORD32 frm_x_ofst, frm_y_ofst;
    WORD32 frm_x_pu, frm_y_pu;
 
    /* scratch 16 bit buffers for interpolation in l0 and l1 direction */
    WORD16 *pi2_scr_buf_l0 = &ps_inter_pred_ctxt->ai2_scratch_buf_l0[0];
    WORD16 *pi2_scr_buf_l1 = &ps_inter_pred_ctxt->ai2_scratch_buf_l1[0];
 
    /* scratch buffer for horizontal interpolation destination */
    WORD16 *pi2_horz_scratch = &ps_inter_pred_ctxt->ai2_horz_scratch[0];
 
    WORD32 wgt0, wgt1, off0, off1, shift, lvl_shift0, lvl_shift1;
 
    /* get PU's frm x and frm y offset */
    frm_x_pu = ps_inter_pred_ctxt->i4_ctb_frm_pos_x + (ps_pu->b4_pos_x << 2);
    frm_y_pu = ps_inter_pred_ctxt->i4_ctb_frm_pos_y + (ps_pu->b4_pos_y << 2);
 
    /* sanity checks */
    ASSERT((wp_flag == 0) || (wp_flag == 1));
    ASSERT(dst_stride >= pu_wd);
    ASSERT(ps_pu->b1_intra_flag == 0);
 
    lvl_shift0 = 0;
    lvl_shift1 = 0;
 
    if(wp_flag)
    {
        UWORD8 u1_is_wgt_pred_L0, u1_is_wgt_pred_L1;
 
        if(inter_pred_idc != PRED_L1)
        {
            ps_ref_pic_l0 = ps_inter_pred_ctxt->ps_ref_list[0][ps_pu->mv.i1_l0_ref_idx];
            u1_is_wgt_pred_L0 = ps_ref_pic_l0->s_weight_offset.u1_luma_weight_enable_flag;
        }
        if(inter_pred_idc != PRED_L0)
        {
            ps_ref_pic_l1 = ps_inter_pred_ctxt->ps_ref_list[1][ps_pu->mv.i1_l1_ref_idx];
            u1_is_wgt_pred_L1 = ps_ref_pic_l1->s_weight_offset.u1_luma_weight_enable_flag;
        }
        if(inter_pred_idc == PRED_BI)
        {
            wp_flag = (u1_is_wgt_pred_L0 || u1_is_wgt_pred_L1);
        }
        else if(inter_pred_idc == PRED_L0)
        {
            wp_flag = u1_is_wgt_pred_L0;
        }
        else if(inter_pred_idc == PRED_L1)
        {
            wp_flag = u1_is_wgt_pred_L1;
        }
        else
        {
            /*other values are not allowed*/
            assert(0);
        }
    }
    store_16bit_output = (inter_pred_idc == PRED_BI) || (wp_flag);
 
    if(inter_pred_idc != PRED_L1)
    {
        /*****************************************************/
        /*              L0 inter prediction                  */
        /*****************************************************/
 
        /* motion vecs in qpel precision                    */
        WORD32 mv_x = ps_pu->mv.s_l0_mv.i2_mvx;
        WORD32 mv_y = ps_pu->mv.s_l0_mv.i2_mvy;
 
        /* sub pel offsets in x and y direction w.r.t integer pel   */
        WORD32 dx = mv_x & 0x3;
        WORD32 dy = mv_y & 0x3;
 
        /* ref idx is currently stored in the lower 4bits           */
        WORD32 ref_idx = (ps_pu->mv.i1_l0_ref_idx);
 
        /*  x and y integer offsets w.r.t frame start               */
        frm_x_ofst = (frm_x_pu + (mv_x >> 2));
        frm_y_ofst = (frm_y_pu + (mv_y >> 2));
 
        ps_ref_pic_l0 = ps_inter_pred_ctxt->ps_ref_list[0][ref_idx];
 
        /* picture buffer start and stride */
        if(i4_flag_inter_pred_source == 1)
        {
            pu1_ref_pic = (UWORD8 *)ps_ref_pic_l0->s_yuv_buf_desc_src.pv_y_buf;
        }
        else
        {
            pu1_ref_pic = (UWORD8 *)ps_ref_pic_l0->s_yuv_buf_desc.pv_y_buf;
        }
        ref_pic_stride = ps_ref_pic_l0->s_yuv_buf_desc.i4_y_strd;
 
        /* Error check for mvs going out of ref frame padded limits */
        {
            WORD32 min_x, max_x = ps_ref_pic_l0->s_yuv_buf_desc.i4_y_wd;
            WORD32 min_y, max_y = ps_ref_pic_l0->s_yuv_buf_desc.i4_y_ht;
 
            min_x =
                -(ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_LEFT]
                      ? (ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_LEFT] - 4)
                      : (PAD_HORZ - 4));
 
            max_x += ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_RIGHT]
                         ? (ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_RIGHT] - 4)
                         : (PAD_HORZ - 4);
 
            min_y =
                -(ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_TOP]
                      ? (ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_TOP] - 4)
                      : (PAD_VERT - 4));
 
            max_y += ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_BOT]
                         ? (ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_BOT] - 4)
                         : (PAD_VERT - 4);
 
            if((frm_x_ofst < min_x) || (frm_x_ofst + pu_wd) > max_x)
                //ASSERT(0);
                return (IV_FAIL);
 
            if((frm_y_ofst < min_y) || (frm_y_ofst + pu_ht) > max_y)
                //ASSERT(0);
                return (IV_FAIL);
        }
 
        /* point to reference start location in ref frame           */
        /* Assuming clipping of mv is not required here as ME would */
        /* take care of mv access not going beyond padded data      */
        pu1_ref_int_pel = pu1_ref_pic + frm_x_ofst + (ref_pic_stride * frm_y_ofst);
 
        /* level shifted for subpel with both x and y componenet being non 0 */
        /* this is because the interpolate function subtract this to contain */
        /* the resulting data in 16 bits                                     */
        lvl_shift0 = (dx != 0) && (dy != 0) ? OFFSET14 : 0;
 
        if(store_16bit_output)
        {
            /* do interpolation in 16bit L0 scratch buffer */
            ihevce_luma_interpolate_16bit_dxdy(
                pu1_ref_int_pel,
                pi2_scr_buf_l0,
                ref_pic_stride,
                pu_wd,
                pi2_horz_scratch,
                pu_ht,
                pu_wd,
                dy,
                dx,
                ps_func_selector);
        }
        else
        {
            /* do interpolation in 8bit destination buffer and return */
            ihevce_luma_interpolate_8bit_dxdy(
                pu1_ref_int_pel,
                pu1_dst_buf,
                ref_pic_stride,
                dst_stride,
                pi2_horz_scratch,
                pu_ht,
                pu_wd,
                dy,
                dx,
                ps_func_selector);
 
            return (IV_SUCCESS);
        }
    }
 
    if(inter_pred_idc != PRED_L0)
    {
        /*****************************************************/
        /*      L1 inter prediction                          */
        /*****************************************************/
 
        /* motion vecs in qpel precision                            */
        WORD32 mv_x = ps_pu->mv.s_l1_mv.i2_mvx;
        WORD32 mv_y = ps_pu->mv.s_l1_mv.i2_mvy;
 
        /* sub pel offsets in x and y direction w.r.t integer pel   */
        WORD32 dx = mv_x & 0x3;
        WORD32 dy = mv_y & 0x3;
 
        /* ref idx is currently stored in the lower 4bits           */
        WORD32 ref_idx = (ps_pu->mv.i1_l1_ref_idx);
 
        /*  x and y integer offsets w.r.t frame start               */
        frm_x_ofst = (frm_x_pu + (mv_x >> 2));
        frm_y_ofst = (frm_y_pu + (mv_y >> 2));
 
        ps_ref_pic_l1 = ps_inter_pred_ctxt->ps_ref_list[1][ref_idx];
 
        /* picture buffer start and stride */
 
        if(i4_flag_inter_pred_source == 1)
        {
            pu1_ref_pic = (UWORD8 *)ps_ref_pic_l1->s_yuv_buf_desc_src.pv_y_buf;
        }
        else
        {
            pu1_ref_pic = (UWORD8 *)ps_ref_pic_l1->s_yuv_buf_desc.pv_y_buf;
        }
        ref_pic_stride = ps_ref_pic_l1->s_yuv_buf_desc.i4_y_strd;
 
        /* Error check for mvs going out of ref frame padded limits */
        {
            WORD32 min_x, max_x = ps_ref_pic_l1->s_yuv_buf_desc.i4_y_wd;
            WORD32 min_y, max_y = ps_ref_pic_l1->s_yuv_buf_desc.i4_y_ht;
 
            min_x =
                -(ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_LEFT]
                      ? (ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_LEFT] - 4)
                      : (PAD_HORZ - 4));
 
            max_x += ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_RIGHT]
                         ? (ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_RIGHT] - 4)
                         : (PAD_HORZ - 4);
 
            min_y =
                -(ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_TOP]
                      ? (ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_TOP] - 4)
                      : (PAD_VERT - 4));
 
            max_y += ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_BOT]
                         ? (ps_inter_pred_ctxt->ai4_tile_xtra_pel[E_BOT] - 4)
                         : (PAD_VERT - 4);
 
            if((frm_x_ofst < min_x) || (frm_x_ofst + pu_wd) > max_x)
                //ASSERT(0);
                return (IV_FAIL);
 
            if((frm_y_ofst < min_y) || (frm_y_ofst + pu_ht) > max_y)
                //ASSERT(0);
                return (IV_FAIL);
        }
 
        /* point to reference start location in ref frame           */
        /* Assuming clipping of mv is not required here as ME would */
        /* take care of mv access not going beyond padded data      */
        pu1_ref_int_pel = pu1_ref_pic + frm_x_ofst + (ref_pic_stride * frm_y_ofst);
 
        /* level shifted for subpel with both x and y componenet being non 0 */
        /* this is because the interpolate function subtract this to contain */
        /* the resulting data in 16 bits                                     */
        lvl_shift1 = (dx != 0) && (dy != 0) ? OFFSET14 : 0;
 
        if(store_16bit_output)
        {
            /* do interpolation in 16bit L1 scratch buffer */
            ihevce_luma_interpolate_16bit_dxdy(
                pu1_ref_int_pel,
                pi2_scr_buf_l1,
                ref_pic_stride,
                pu_wd,
                pi2_horz_scratch,
                pu_ht,
                pu_wd,
                dy,
                dx,
                ps_func_selector);
        }
        else
        {
            /* do interpolation in 8bit destination buffer and return */
            ihevce_luma_interpolate_8bit_dxdy(
                pu1_ref_int_pel,
                pu1_dst_buf,
                ref_pic_stride,
                dst_stride,
                pi2_horz_scratch,
                pu_ht,
                pu_wd,
                dy,
                dx,
                ps_func_selector);
 
            return (IV_SUCCESS);
        }
    }
 
    if((inter_pred_idc != PRED_BI) && wp_flag)
    {
        /*****************************************************/
        /*      unidirection weighted prediction             */
        /*****************************************************/
        ihevce_wght_offst_t *ps_weight_offset;
        WORD16 *pi2_src;
        WORD32 lvl_shift;
 
        /* intialize the weight, offsets and ref based on l0/l1 mode */
        if(inter_pred_idc == PRED_L0)
        {
            pi2_src = pi2_scr_buf_l0;
            ps_weight_offset = &ps_ref_pic_l0->s_weight_offset;
            lvl_shift = lvl_shift0;
        }
        else
        {
            pi2_src = pi2_scr_buf_l1;
            ps_weight_offset = &ps_ref_pic_l1->s_weight_offset;
            lvl_shift = lvl_shift1;
        }
 
        wgt0 = ps_weight_offset->i2_luma_weight;
        off0 = ps_weight_offset->i2_luma_offset;
        shift = ps_inter_pred_ctxt->i4_log2_luma_wght_denom + SHIFT_14_MINUS_BIT_DEPTH;
 
        /* do the uni directional weighted prediction */
        ps_func_selector->ihevc_weighted_pred_uni_fptr(
            pi2_src, pu1_dst_buf, pu_wd, dst_stride, wgt0, off0, shift, lvl_shift, pu_ht, pu_wd);
    }
    else
    {
        /*****************************************************/
        /*              Bipred  prediction                   */
        /*****************************************************/
 
        if(wp_flag)
        {
            /*****************************************************/
            /*      Bi pred  weighted prediction                 */
            /*****************************************************/
            wgt0 = ps_ref_pic_l0->s_weight_offset.i2_luma_weight;
            off0 = ps_ref_pic_l0->s_weight_offset.i2_luma_offset;
 
            wgt1 = ps_ref_pic_l1->s_weight_offset.i2_luma_weight;
            off1 = ps_ref_pic_l1->s_weight_offset.i2_luma_offset;
 
            shift = ps_inter_pred_ctxt->i4_log2_luma_wght_denom + SHIFT_14_MINUS_BIT_DEPTH + 1;
 
            ps_func_selector->ihevc_weighted_pred_bi_fptr(
                pi2_scr_buf_l0,
                pi2_scr_buf_l1,
                pu1_dst_buf,
                pu_wd,
                pu_wd,
                dst_stride,
                wgt0,
                off0,
                wgt1,
                off1,
                shift,
                lvl_shift0,
                lvl_shift1,
                pu_ht,
                pu_wd);
        }
        else
        {
            /*****************************************************/
            /*          Default Bi pred  prediction              */
            /*****************************************************/
            ps_func_selector->ihevc_weighted_pred_bi_default_fptr(
                pi2_scr_buf_l0,
                pi2_scr_buf_l1,
                pu1_dst_buf,
                pu_wd,
                pu_wd,
                dst_stride,
                lvl_shift0,
                lvl_shift1,
                pu_ht,
                pu_wd);
        }
    }
 
    return (IV_SUCCESS);
}
 
/**
*******************************************************************************
*
* @brief
*  Performs Chroma inter pred based on sub pel position dxdy and store the
*  result in a 16 bit destination buffer
*
* @param[in] pu1_src
*  pointer to the source correspoding to integer pel position of a mv (left and
*  top justified integer position)
*
* @param[out] pi2_dst
*  WORD16 pointer to the destination
*
* @param[in] src_strd
*  source buffer stride
*
* @param[in] dst_strd
*  destination buffer stride
*
* @param[in] pi2_hdst_scratch
*  scratch buffer for intermediate storage of horizontal filter output; used as
*  input for vertical filtering when sub pel components (dx != 0) && (dy != 0)
*
*  Max scratch buffer required is w * (h + 3) * sizeof(WORD16)
*
* @param[in] ht
*  width of the prediction unit
*
* @param[in] wd
*  width of the prediction unit
*
* @param[in] dx
*  1/8th pel position[0:7] of mv in x direction
*
* @param[in] dy
*  1/8th pel position[0:7] of mv in y direction
*
* @returns
*   none
*
* @remarks
*
*******************************************************************************
*/
void ihevce_chroma_interpolate_16bit_dxdy(
    UWORD8 *pu1_src,
    WORD16 *pi2_dst,
    WORD32 src_strd,
    WORD32 dst_strd,
    WORD16 *pi2_hdst_scratch,
    WORD32 ht,
    WORD32 wd,
    WORD32 dy,
    WORD32 dx,
    func_selector_t *ps_func_selector)
{
    if((0 == dx) && (0 == dy))
    {
        /*--------- full pel position : copy input by upscaling-------*/
 
        ps_func_selector->ihevc_inter_pred_chroma_copy_w16out_fptr(
            pu1_src, pi2_dst, src_strd, dst_strd, &gai1_hevc_chroma_filter_taps[0][0], ht, wd);
    }
    else if((0 != dx) && (0 != dy))
    {
        /*----------sub pel in both x and y direction---------*/
 
        UWORD8 *pu1_horz_src = pu1_src - src_strd;
        WORD32 hdst_buf_stride = (wd << 1); /* uv interleave */
        WORD16 *pi2_vert_src = pi2_hdst_scratch + hdst_buf_stride;
 
        /* horizontal filtering of source done in a scratch buffer first  */
        ps_func_selector->ihevc_inter_pred_chroma_horz_w16out_fptr(
            pu1_horz_src,
            pi2_hdst_scratch,
            src_strd,
            hdst_buf_stride,
            &gai1_hevc_chroma_filter_taps[dx][0],
            (ht + NTAPS_CHROMA - 1),
            wd);
 
        /* vertical filtering on scratch buffer and stored in desitnation  */
        ps_func_selector->ihevc_inter_pred_chroma_vert_w16inp_w16out_fptr(
            pi2_vert_src,
            pi2_dst,
            hdst_buf_stride,
            dst_strd,
            &gai1_hevc_chroma_filter_taps[dy][0],
            ht,
            wd);
    }
    else if(0 == dy)
    {
        /*----------sub pel in x direction only ---------*/
 
        ps_func_selector->ihevc_inter_pred_chroma_horz_w16out_fptr(
            pu1_src, pi2_dst, src_strd, dst_strd, &gai1_hevc_chroma_filter_taps[dx][0], ht, wd);
    }
    else /* if (0 == dx) */
    {
        /*----------sub pel in y direction only ---------*/
 
        ps_func_selector->ihevc_inter_pred_chroma_vert_w16out_fptr(
            pu1_src, pi2_dst, src_strd, dst_strd, &gai1_hevc_chroma_filter_taps[dy][0], ht, wd);
    }
}
 
/**
*******************************************************************************
*
* @brief
*  Performs Chroma inter pred based on sub pel position dxdy and store the
*  result in a 8 bit destination buffer
*
* @param[in] pu1_src
*  pointer to the source correspoding to integer pel position of a mv (left and
*  top justified integer position)
*
* @param[out] pu1_dst
*  UWORD8 pointer to the destination
*
* @param[in] src_strd
*  source buffer stride
*
* @param[in] dst_strd
*  destination buffer stride
*
* @param[in] pi2_hdst_scratch
*  scratch buffer for intermediate storage of horizontal filter output; used as
*  input for vertical filtering when sub pel components (dx != 0) && (dy != 0)
*
*  Max scratch buffer required is w * (h + 3) * sizeof(WORD16)
*
* @param[in] ht
*  width of the prediction unit
*
* @param[in] wd
*  width of the prediction unit
*
* @param[in] dx
*  1/8th pel position[0:7] of mv in x direction
*
* @param[in] dy
*  1/8th pel position[0:7] of mv in y direction
*
* @returns
*   none
*
* @remarks
*
*******************************************************************************
*/
void ihevce_chroma_interpolate_8bit_dxdy(
    UWORD8 *pu1_src,
    UWORD8 *pu1_dst,
    WORD32 src_strd,
    WORD32 dst_strd,
    WORD16 *pi2_hdst_scratch,
    WORD32 ht,
    WORD32 wd,
    WORD32 dy,
    WORD32 dx,
    func_selector_t *ps_func_selector)
{
    if((0 == dx) && (0 == dy))
    {
        /*--------- full pel position : copy input as is -------*/
        ps_func_selector->ihevc_inter_pred_chroma_copy_fptr(
            pu1_src, pu1_dst, src_strd, dst_strd, &gai1_hevc_chroma_filter_taps[0][0], ht, wd);
    }
    else if((0 != dx) && (0 != dy))
    {
        /*----------sub pel in both x and y direction---------*/
        UWORD8 *pu1_horz_src = pu1_src - src_strd;
        WORD32 hdst_buf_stride = (wd << 1); /* uv interleave */
        WORD16 *pi2_vert_src = pi2_hdst_scratch + hdst_buf_stride;
 
        /* horizontal filtering of source done in a scratch buffer first  */
        ps_func_selector->ihevc_inter_pred_chroma_horz_w16out_fptr(
            pu1_horz_src,
            pi2_hdst_scratch,
            src_strd,
            hdst_buf_stride,
            &gai1_hevc_chroma_filter_taps[dx][0],
            (ht + NTAPS_CHROMA - 1),
            wd);
 
        /* vertical filtering on scratch buffer and stored in desitnation  */
        ps_func_selector->ihevc_inter_pred_chroma_vert_w16inp_fptr(
            pi2_vert_src,
            pu1_dst,
            hdst_buf_stride,
            dst_strd,
            &gai1_hevc_chroma_filter_taps[dy][0],
            ht,
            wd);
    }
    else if(0 == dy)
    {
        /*----------sub pel in x direction only ---------*/
        ps_func_selector->ihevc_inter_pred_chroma_horz_fptr(
            pu1_src, pu1_dst, src_strd, dst_strd, &gai1_hevc_chroma_filter_taps[dx][0], ht, wd);
    }
    else /* if (0 == dx) */
    {
        /*----------sub pel in y direction only ---------*/
        ps_func_selector->ihevc_inter_pred_chroma_vert_fptr(
            pu1_src, pu1_dst, src_strd, dst_strd, &gai1_hevc_chroma_filter_taps[dy][0], ht, wd);
    }
}
 
/**
*******************************************************************************
*
* @brief
*  Performs Chroma prediction for a inter prediction unit(PU)
*
* @par Description:
*  For a given PU, Inter prediction followed by weighted prediction (if
*  required). The reference and destination buffers are uv interleaved
*
* @param[in] ps_inter_pred_ctxt
*  context for inter prediction; contains ref list, weight offsets, ctb offsets
*
* @param[in] ps_pu
*  pointer to PU structure whose inter prediction needs to be done
*
* @param[in] pu1_dst_buf
*  pointer to destination buffer where the inter prediction is done
*
* @param[in] dst_stride
*  pitch of the destination buffer
*
* @returns
*   none
*
* @remarks
*
*******************************************************************************
*/
void ihevce_chroma_inter_pred_pu(
    void *pv_inter_pred_ctxt, pu_t *ps_pu, UWORD8 *pu1_dst_buf, WORD32 dst_stride)
{
    inter_pred_ctxt_t *ps_inter_pred_ctxt = (inter_pred_ctxt_t *)pv_inter_pred_ctxt;
    func_selector_t *ps_func_selector = ps_inter_pred_ctxt->ps_func_selector;
 
    WORD32 inter_pred_idc = ps_pu->b2_pred_mode;
    UWORD8 u1_is_422 = (ps_inter_pred_ctxt->u1_chroma_array_type == 2);
    /* chroma width and height are half of luma width and height */
    WORD32 pu_wd_chroma = (ps_pu->b4_wd + 1) << 1;
    WORD32 pu_ht_chroma = (ps_pu->b4_ht + 1) << (u1_is_422 + 1);
 
    WORD32 wp_flag = ps_inter_pred_ctxt->i1_weighted_pred_flag ||
                     ps_inter_pred_ctxt->i1_weighted_bipred_flag;
 
    /* 16bit dest required for interpolate if weighted pred is on or bipred */
    WORD32 store_16bit_output;
 
    recon_pic_buf_t *ps_ref_pic_l0, *ps_ref_pic_l1;
    UWORD8 *pu1_ref_pic, *pu1_ref_int_pel;
    WORD32 ref_pic_stride;
 
    /* offset of reference block in integer pel units */
    WORD32 frm_x_ofst, frm_y_ofst;
    WORD32 frm_x_pu, frm_y_pu;
 
    /* scratch 16 bit buffers for interpolation in l0 and l1 direction */
    WORD16 *pi2_scr_buf_l0 = &ps_inter_pred_ctxt->ai2_scratch_buf_l0[0];
    WORD16 *pi2_scr_buf_l1 = &ps_inter_pred_ctxt->ai2_scratch_buf_l1[0];
 
    /* scratch buffer for horizontal interpolation destination */
    WORD16 *pi2_horz_scratch = &ps_inter_pred_ctxt->ai2_horz_scratch[0];
 
    /* get PU's frm x and frm y offset : Note uv is interleaved */
    frm_x_pu = ps_inter_pred_ctxt->i4_ctb_frm_pos_x + (ps_pu->b4_pos_x << 2);
    frm_y_pu = (ps_inter_pred_ctxt->i4_ctb_frm_pos_y >> (u1_is_422 == 0)) +
               (ps_pu->b4_pos_y << (u1_is_422 + 1));
 
    /* sanity checks */
    ASSERT((wp_flag == 0) || (wp_flag == 1));
    ASSERT(dst_stride >= (pu_wd_chroma << 1)); /* uv interleaved */
    ASSERT(ps_pu->b1_intra_flag == 0);
 
    if(wp_flag)
    {
        UWORD8 u1_is_wgt_pred_L0, u1_is_wgt_pred_L1;
 
        if(inter_pred_idc != PRED_L1)
        {
            ps_ref_pic_l0 = ps_inter_pred_ctxt->ps_ref_list[0][ps_pu->mv.i1_l0_ref_idx];
            u1_is_wgt_pred_L0 = ps_ref_pic_l0->s_weight_offset.u1_chroma_weight_enable_flag;
        }
        if(inter_pred_idc != PRED_L0)
        {
            ps_ref_pic_l1 = ps_inter_pred_ctxt->ps_ref_list[1][ps_pu->mv.i1_l1_ref_idx];
            u1_is_wgt_pred_L1 = ps_ref_pic_l1->s_weight_offset.u1_chroma_weight_enable_flag;
        }
        if(inter_pred_idc == PRED_BI)
        {
            wp_flag = (u1_is_wgt_pred_L0 || u1_is_wgt_pred_L1);
        }
        else if(inter_pred_idc == PRED_L0)
        {
            wp_flag = u1_is_wgt_pred_L0;
        }
        else if(inter_pred_idc == PRED_L1)
        {
            wp_flag = u1_is_wgt_pred_L1;
        }
        else
        {
            /*other values are not allowed*/
            assert(0);
        }
    }
    store_16bit_output = (inter_pred_idc == PRED_BI) || (wp_flag);
 
    if(inter_pred_idc != PRED_L1)
    {
        /*****************************************************/
        /*              L0 inter prediction(Chroma )         */
        /*****************************************************/
 
        /* motion vecs in qpel precision                    */
        WORD32 mv_x = ps_pu->mv.s_l0_mv.i2_mvx;
        WORD32 mv_y = ps_pu->mv.s_l0_mv.i2_mvy;
 
        /* sub pel offsets in x and y direction w.r.t integer pel   */
        WORD32 dx = mv_x & 0x7;
        WORD32 dy = (mv_y & ((1 << (!u1_is_422 + 2)) - 1)) << u1_is_422;
 
        /* ref idx is currently stored in the lower 4bits           */
        WORD32 ref_idx = (ps_pu->mv.i1_l0_ref_idx);
 
        /*  x and y integer offsets w.r.t frame start               */
 
        frm_x_ofst = (frm_x_pu + ((mv_x >> 3) << 1)); /* uv interleaved */
        frm_y_ofst = (frm_y_pu + ((mv_y >> (3 - u1_is_422))));
 
        ps_ref_pic_l0 = ps_inter_pred_ctxt->ps_ref_list[0][ref_idx];
 
        /* picture buffer start and stride */
        pu1_ref_pic = (UWORD8 *)ps_ref_pic_l0->s_yuv_buf_desc.pv_u_buf;
        ref_pic_stride = ps_ref_pic_l0->s_yuv_buf_desc.i4_uv_strd;
 
        /* point to reference start location in ref frame           */
        /* Assuming clipping of mv is not required here as ME would */
        /* take care of mv access not going beyond padded data      */
        pu1_ref_int_pel = pu1_ref_pic + frm_x_ofst + (ref_pic_stride * frm_y_ofst);
 
        if(store_16bit_output)
        {
            /* do interpolation in 16bit L0 scratch buffer */
            ihevce_chroma_interpolate_16bit_dxdy(
                pu1_ref_int_pel,
                pi2_scr_buf_l0,
                ref_pic_stride,
                (pu_wd_chroma << 1),
                pi2_horz_scratch,
                pu_ht_chroma,
                pu_wd_chroma,
                dy,
                dx,
                ps_func_selector);
        }
        else
        {
            /* do interpolation in 8bit destination buffer and return */
            ihevce_chroma_interpolate_8bit_dxdy(
                pu1_ref_int_pel,
                pu1_dst_buf,
                ref_pic_stride,
                dst_stride,
                pi2_horz_scratch,
                pu_ht_chroma,
                pu_wd_chroma,
                dy,
                dx,
                ps_func_selector);
 
            return;
        }
    }
 
    if(inter_pred_idc != PRED_L0)
    {
        /*****************************************************/
        /*      L1 inter prediction(Chroma)                  */
        /*****************************************************/
 
        /* motion vecs in qpel precision                            */
        WORD32 mv_x = ps_pu->mv.s_l1_mv.i2_mvx;
        WORD32 mv_y = ps_pu->mv.s_l1_mv.i2_mvy;
 
        /* sub pel offsets in x and y direction w.r.t integer pel   */
        WORD32 dx = mv_x & 0x7;
        WORD32 dy = (mv_y & ((1 << (!u1_is_422 + 2)) - 1)) << u1_is_422;
 
        /* ref idx is currently stored in the lower 4bits           */
        WORD32 ref_idx = (ps_pu->mv.i1_l1_ref_idx);
 
        /*  x and y integer offsets w.r.t frame start               */
        frm_x_ofst = (frm_x_pu + ((mv_x >> 3) << 1)); /* uv interleaved */
        frm_y_ofst = (frm_y_pu + ((mv_y >> (3 - u1_is_422))));
 
        ps_ref_pic_l1 = ps_inter_pred_ctxt->ps_ref_list[1][ref_idx];
 
        /* picture buffer start and stride */
        pu1_ref_pic = (UWORD8 *)ps_ref_pic_l1->s_yuv_buf_desc.pv_u_buf;
        ref_pic_stride = ps_ref_pic_l1->s_yuv_buf_desc.i4_uv_strd;
 
        /* point to reference start location in ref frame           */
        /* Assuming clipping of mv is not required here as ME would */
        /* take care of mv access not going beyond padded data      */
        pu1_ref_int_pel = pu1_ref_pic + frm_x_ofst + (ref_pic_stride * frm_y_ofst);
 
        if(store_16bit_output)
        {
            /* do interpolation in 16bit L1 scratch buffer */
            ihevce_chroma_interpolate_16bit_dxdy(
                pu1_ref_int_pel,
                pi2_scr_buf_l1,
                ref_pic_stride,
                (pu_wd_chroma << 1),
                pi2_horz_scratch,
                pu_ht_chroma,
                pu_wd_chroma,
                dy,
                dx,
                ps_func_selector);
        }
        else
        {
            /* do interpolation in 8bit destination buffer and return */
            ihevce_chroma_interpolate_8bit_dxdy(
                pu1_ref_int_pel,
                pu1_dst_buf,
                ref_pic_stride,
                dst_stride,
                pi2_horz_scratch,
                pu_ht_chroma,
                pu_wd_chroma,
                dy,
                dx,
                ps_func_selector);
 
            return;
        }
    }
 
    if((inter_pred_idc != PRED_BI) && wp_flag)
    {
        /*****************************************************/
        /*      unidirection weighted prediction(Chroma)     */
        /*****************************************************/
        ihevce_wght_offst_t *ps_weight_offset;
        WORD16 *pi2_src;
        WORD32 lvl_shift = 0;
        WORD32 wgt_cb, wgt_cr, off_cb, off_cr;
        WORD32 shift;
 
        /* intialize the weight, offsets and ref based on l0/l1 mode */
        if(inter_pred_idc == PRED_L0)
        {
            pi2_src = pi2_scr_buf_l0;
            ps_weight_offset = &ps_ref_pic_l0->s_weight_offset;
        }
        else
        {
            pi2_src = pi2_scr_buf_l1;
            ps_weight_offset = &ps_ref_pic_l1->s_weight_offset;
        }
 
        wgt_cb = ps_weight_offset->i2_cb_weight;
        off_cb = ps_weight_offset->i2_cb_offset;
        wgt_cr = ps_weight_offset->i2_cr_weight;
        off_cr = ps_weight_offset->i2_cr_offset;
 
        shift = ps_inter_pred_ctxt->i4_log2_chroma_wght_denom + SHIFT_14_MINUS_BIT_DEPTH;
 
        /* do the uni directional weighted prediction */
        ps_func_selector->ihevc_weighted_pred_chroma_uni_fptr(
            pi2_src,
            pu1_dst_buf,
            (pu_wd_chroma << 1),
            dst_stride,
            wgt_cb,
            wgt_cr,
            off_cb,
            off_cr,
            shift,
            lvl_shift,
            pu_ht_chroma,
            pu_wd_chroma);
    }
    else
    {
        /*****************************************************/
        /*              Bipred  prediction(Chroma)           */
        /*****************************************************/
        if(wp_flag)
        {
            WORD32 wgt0_cb, wgt1_cb, wgt0_cr, wgt1_cr;
            WORD32 off0_cb, off1_cb, off0_cr, off1_cr;
            WORD32 shift;
 
            /*****************************************************/
            /*      Bi pred  weighted prediction (Chroma)        */
            /*****************************************************/
            wgt0_cb = ps_ref_pic_l0->s_weight_offset.i2_cb_weight;
            off0_cb = ps_ref_pic_l0->s_weight_offset.i2_cb_offset;
 
            wgt0_cr = ps_ref_pic_l0->s_weight_offset.i2_cr_weight;
            off0_cr = ps_ref_pic_l0->s_weight_offset.i2_cr_offset;
 
            wgt1_cb = ps_ref_pic_l1->s_weight_offset.i2_cb_weight;
            off1_cb = ps_ref_pic_l1->s_weight_offset.i2_cb_offset;
 
            wgt1_cr = ps_ref_pic_l1->s_weight_offset.i2_cr_weight;
            off1_cr = ps_ref_pic_l1->s_weight_offset.i2_cr_offset;
 
            shift = ps_inter_pred_ctxt->i4_log2_chroma_wght_denom + SHIFT_14_MINUS_BIT_DEPTH + 1;
 
            ps_func_selector->ihevc_weighted_pred_chroma_bi_fptr(
                pi2_scr_buf_l0,
                pi2_scr_buf_l1,
                pu1_dst_buf,
                (pu_wd_chroma << 1),
                (pu_wd_chroma << 1),
                dst_stride,
                wgt0_cb,
                wgt0_cr,
                off0_cb,
                off0_cr,
                wgt1_cb,
                wgt1_cr,
                off1_cb,
                off1_cr,
                shift,
                0,
                0,
                pu_ht_chroma,
                pu_wd_chroma);
        }
        else
        {
            /*****************************************************/
            /*          Default Bi pred  prediction (Chroma)     */
            /*****************************************************/
            ps_func_selector->ihevc_weighted_pred_chroma_bi_default_fptr(
                pi2_scr_buf_l0,
                pi2_scr_buf_l1,
                pu1_dst_buf,
                (pu_wd_chroma << 1),
                (pu_wd_chroma << 1),
                dst_stride,
                0,
                0,
                pu_ht_chroma,
                pu_wd_chroma);
        }
    }
}