Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FfmpegContext.cpp « MPCVideoDec « transform « filters « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 965e47b81ce1daa713650e143b0f034f8ed6f212 (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
/*
 * (C) 2007-2013 see Authors.txt
 *
 * This file is part of MPC-HC.
 *
 * MPC-HC is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * MPC-HC is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#include <Windows.h>
#include <WinNT.h>
#include <vfwmsgs.h>
#include <sys/timeb.h>
#if defined(STANDALONE_FILTER) && defined(_WIN64)
#include <time.h> // for the _time64 workaround
#endif

#include "FfmpegContext.h"
#include "../../../DSUtil/SysVersion.h"

#define HAVE_AV_CONFIG_H

extern "C" {
#pragma warning(disable: 4244)
#include "ffmpeg/libavcodec/avcodec.h"
    // This is kind of a hack but it avoids using a C++ keyword as a struct member name
#define class classFFMPEG
#include "ffmpeg/libavcodec/mpegvideo.h"
#undef class

#define new newC    // hack since "h264.h" is using new as a variable
#include "ffmpeg/libavcodec/h264.h"
#undef new
#include "ffmpeg/libavcodec/vc1.h"
#include "ffmpeg/libavcodec/mpeg12.h"
#pragma warning(default: 4244)

    int av_h264_decode_frame(struct AVCodecContext* avctx, int* nOutPOC, int64_t* rtStartTime, uint8_t* buf, int buf_size);
    int av_vc1_decode_frame(AVCodecContext* avctx, uint8_t* buf, int buf_size, int* nFrameSize);
    void av_init_packet(AVPacket* pkt);

    // Hack to use MinGW64 from 2.x branch
    void __mingw_raise_matherr(int typ, const char* name, double a1, double a2, double rslt) {}
}

#if defined(STANDALONE_FILTER)
void* __imp_toupper = toupper;
#if defined(_WIN64)
void* __imp_time64 = _time64;
#endif
#endif

#define CHECK_AVC_L52_SIZE(w, h) ((w) <= 4096 && (h) <= 4096 && (w) * (h) <= 36864 * 16 * 16)

const byte ZZ_SCAN[16]  = {
    0,  1,  4,  8,
    5,  2,  3,  6,
    9, 12, 13, 10,
    7, 11, 14, 15
};

const byte ZZ_SCAN8[64] = {
    0,   1,  8, 16,  9,  2,  3, 10,
    17, 24, 32, 25, 18, 11,  4,  5,
    12, 19, 26, 33, 40, 48, 41, 34,
    27, 20, 13,  6,  7, 14, 21, 28,
    35, 42, 49, 56, 57, 50, 43, 36,
    29, 22, 15, 23, 30, 37, 44, 51,
    58, 59, 52, 45, 38, 31, 39, 46,
    53, 60, 61, 54, 47, 55, 62, 63
};

static const WORD PCID_NVIDIA_VP5[] = {
    // http://us.download.nvidia.com/XFree86/Linux-x86_64/310.19/README/supportedchips.html
    // Nvidia VDPAU Feature Set D
    0x0FC6 , // GeForce GTX 650
    0x0FCE , // GeForce GT 640M LE
    0x0FD1 , // GeForce GT 650M
    0x0FD2 , // GeForce GT 640M
    0x0FD3 , // GeForce GT 640M LE
    0x0FD4 , // GeForce GTX 660M
    0x0FD5 , // GeForce GT 650M
    0x0FD8 , // GeForce GT 640M
    0x0FD9 , // GeForce GT 645M
    0x0FE0 , // GeForce GTX 660M
    0x0FF2 , // VGX K1
    0x0FFB , // Quadro K2000M
    0x0FFC , // Quadro K1000M
    0x0FFD , // NVS 510
    0x0FFF , // Quadro 410
    0x1022 , // Tesla K20c
    0x1028 , // Tesla K20m
    0x1040 , // GeForce GT 520 (not officially supported or typo) (4k tested)
    0x1042 , // GeForce 510
    0x1048 , // GeForce 605
    0x104A , // GeForce GT 610 (fully tested)
    0x1051 , // GeForce GT 520MX
    0x1054 , // GeForce 410M
    0x1055 , // GeForce 410M
    0x1056 , // NVS 4200M
    0x1057 , // NVS 4200M
    0x107D , // NVS 310
    0x1180 , // GeForce GTX 680
    0x1183 , // GeForce GTX 660 Ti (fully tested)
    0x1185 , // GeForce GTX 660
    0x1188 , // GeForce GTX 690
    0x1189 , // GeForce GTX 670
    0x118F , // Tesla K10
    0x11A0 , // GeForce GTX 680M
    0x11A1 , // GeForce GTX 670MX
    0x11A7 , // GeForce GTX 675MX
    0x11BA , // Quadro K5000
    0x11BC , // Quadro K5000M
    0x11BD , // Quadro K4000M
    0x11BE , // Quadro K3000M
    0x11BF , // VGX K2
    0x11C0 , // GeForce GTX 660
    0x11C6 , // GeForce GTX 650 Ti
};

bool CheckPCID(WORD pcid, const WORD* pPCIDs, size_t len)
{
    for (size_t i = 0; i < len; i++) {
        if (pcid == pPCIDs[i]) {
            return true;
        }
    }

    return false;
}

inline MpegEncContext* GetMpegEncContext(struct AVCodecContext* pAVCtx)
{
    Mpeg1Context* s1;
    MpegEncContext* s = NULL;

    switch (pAVCtx->codec_id) {
        case AV_CODEC_ID_VC1:
        case AV_CODEC_ID_H264:
            s = (MpegEncContext*)pAVCtx->priv_data;
            break;
        case AV_CODEC_ID_MPEG2VIDEO:
            s1 = (Mpeg1Context*)pAVCtx->priv_data;
            s  = (MpegEncContext*)&s1->mpeg_enc_ctx;
            break;
    }
    return s;
}

int FFH264DecodeBuffer(struct AVCodecContext* pAVCtx, BYTE* pBuffer, UINT nSize, int* pFramePOC, int* pOutPOC, REFERENCE_TIME* pOutrtStart)
{
    int result = -1;
    if (pBuffer != NULL) {
        H264Context* h = (H264Context*) pAVCtx->priv_data;
        result = av_h264_decode_frame(pAVCtx, pOutPOC, pOutrtStart, pBuffer, nSize);

        if (result != -1 && h->s.current_picture_ptr != NULL && pFramePOC) {
            *pFramePOC = h->s.current_picture_ptr->poc;
        }
    }
    return result;
}

// returns TRUE if version is equal to or higher than A.B.C.D, returns FALSE otherwise
BOOL DriverVersionCheck(LARGE_INTEGER VideoDriverVersion, int A, int B, int C, int D)
{
    if (HIWORD(VideoDriverVersion.HighPart) > A) {
        return TRUE;
    } else if (HIWORD(VideoDriverVersion.HighPart) == A) {
        if (LOWORD(VideoDriverVersion.HighPart) > B) {
            return TRUE;
        } else if (LOWORD(VideoDriverVersion.HighPart) == B) {
            if (HIWORD(VideoDriverVersion.LowPart) > C) {
                return TRUE;
            } else if (HIWORD(VideoDriverVersion.LowPart) == C) {
                if (LOWORD(VideoDriverVersion.LowPart) >= D) {
                    return TRUE;
                }
            }
        }
    }
    return FALSE;
}

int FFH264CheckCompatibility(int nWidth, int nHeight, struct AVCodecContext* pAVCtx, BYTE* pBuffer, UINT nSize, DWORD nPCIVendor, DWORD nPCIDevice, LARGE_INTEGER VideoDriverVersion)
{
    H264Context* pContext = (H264Context*) pAVCtx->priv_data;
    SPS* cur_sps;
    PPS* cur_pps;

    int video_is_level51 = 0;
    int no_level51_support = 1;
    int too_many_ref_frames = 0;
    int profile_higher_than_high = 0;
    int max_ref_frames_dpb41 = min(11, 8388608 / (nWidth * nHeight));

    if (pBuffer != NULL) {
        av_h264_decode_frame(pAVCtx, NULL, NULL, pBuffer, nSize);
    }

    cur_sps = pContext->sps_buffers[0];
    cur_pps = pContext->pps_buffers[0];

    if (cur_sps != NULL) {
        int max_ref_frames = 0;

        if (cur_sps->bit_depth_luma > 8 || cur_sps->chroma_format_idc > 1) {
            return DXVA_HIGH_BIT;
        }

        video_is_level51 = cur_sps->level_idc >= 51 ? 1 : 0;
        profile_higher_than_high = (cur_sps->profile_idc > 100);
        max_ref_frames = max_ref_frames_dpb41; // default value is calculate

        if (nPCIVendor == PCIV_nVidia) {
            // nVidia cards support level 5.1 since drivers v6.14.11.7800 for XP and drivers v7.15.11.7800 for Vista/7
            if (SysVersion::IsVistaOrLater()) {
                if (DriverVersionCheck(VideoDriverVersion, 7, 15, 11, 7800)) {
                    no_level51_support = 0;

                    // max ref frames is 16 for HD and 11 otherwise
                    if (nWidth >= 1280) {
                        max_ref_frames = 16;
                    } else {
                        max_ref_frames = 11;
                    }
                }
            } else {
                if (DriverVersionCheck(VideoDriverVersion, 6, 14, 11, 7800)) {
                    no_level51_support = 0;

                    // max ref frames is 14
                    max_ref_frames = 14;
                }
            }
        } else if (nPCIVendor == PCIV_S3_Graphics) {
            no_level51_support = 0;
        } else if (nPCIVendor == PCIV_ATI) {
            // HD4xxx, HD5xxx, and HD6xxx AMD/ATI cards support level 5.1 since drivers v8.14.1.6105 (Catalyst 10.4)
            if (nPCIDevice > 0x6700) {
                if (DriverVersionCheck(VideoDriverVersion, 8, 14, 1, 6105)) {
                    no_level51_support = 0;
                    max_ref_frames = 16;
                }
            }
        }

        // Check maximum allowed number reference frames
        if (cur_sps->ref_frame_count > max_ref_frames) {
            too_many_ref_frames = 1;
        }
    }

    return (video_is_level51 * no_level51_support * DXVA_UNSUPPORTED_LEVEL) + (too_many_ref_frames * DXVA_TOO_MANY_REF_FRAMES) + (profile_higher_than_high * DXVA_PROFILE_HIGHER_THAN_HIGH);
}

void CopyScalingMatrix(DXVA_Qmatrix_H264* pDest, PPS* pps, DWORD nPCIVendor)
{
    int i, j;
    memset(pDest, 0, sizeof(DXVA_Qmatrix_H264));
    if (nPCIVendor == PCIV_ATI) {
        for (i = 0; i < 6; i++)
            for (j = 0; j < 16; j++) {
                pDest->bScalingLists4x4[i][j] = pps->scaling_matrix4[i][j];
            }

        for (i = 0; i < 64; i++) {
            pDest->bScalingLists8x8[0][i] = pps->scaling_matrix8[0][i];
            pDest->bScalingLists8x8[1][i] = pps->scaling_matrix8[3][i];
        }
    } else {
        for (i = 0; i < 6; i++)
            for (j = 0; j < 16; j++) {
                pDest->bScalingLists4x4[i][j] = pps->scaling_matrix4[i][ZZ_SCAN[j]];
            }

        for (i = 0; i < 64; i++) {
            pDest->bScalingLists8x8[0][i] = pps->scaling_matrix8[0][ZZ_SCAN8[i]];
            pDest->bScalingLists8x8[1][i] = pps->scaling_matrix8[3][ZZ_SCAN8[i]];
        }
    }
}

unsigned short FFH264FindRefFrameIndex(unsigned short num_frame, DXVA_PicParams_H264* pDXVAPicParams)
{
    int i;
    for (i = 0; i < pDXVAPicParams->num_ref_frames; i++) {
        if (pDXVAPicParams->FrameNumList[i] == num_frame) {
            return pDXVAPicParams->RefFrameList[i].Index7Bits;
        }
    }

    return 127;
}

HRESULT FFH264BuildPicParams(DXVA_PicParams_H264* pDXVAPicParams, DXVA_Qmatrix_H264* pDXVAScalingMatrix, int* nFieldType, int* nSliceType, struct AVCodecContext* pAVCtx, DWORD nPCIVendor)
{
    H264Context* h = (H264Context*) pAVCtx->priv_data;
    SPS* cur_sps;
    PPS* cur_pps;
    MpegEncContext* const s = &h->s;
    int field_pic_flag;
    HRESULT hr = E_FAIL;
    const Picture* current_picture = s->current_picture_ptr;

    field_pic_flag = (h->s.picture_structure != PICT_FRAME);

    cur_sps = &h->sps;
    cur_pps = &h->pps;

    if (cur_sps && cur_pps) {
        *nFieldType = h->s.picture_structure;
        if (h->sps.pic_struct_present_flag) {
            switch (h->sei_pic_struct) {
                case SEI_PIC_STRUCT_TOP_FIELD:
                case SEI_PIC_STRUCT_TOP_BOTTOM:
                case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
                    *nFieldType = PICT_TOP_FIELD;
                    break;
                case SEI_PIC_STRUCT_BOTTOM_FIELD:
                case SEI_PIC_STRUCT_BOTTOM_TOP:
                case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
                    *nFieldType = PICT_BOTTOM_FIELD;
                    break;
                case SEI_PIC_STRUCT_FRAME_DOUBLING:
                case SEI_PIC_STRUCT_FRAME_TRIPLING:
                case SEI_PIC_STRUCT_FRAME:
                    *nFieldType = PICT_FRAME;
                    break;
            }
        }

        *nSliceType = h->slice_type;

        if (cur_sps->mb_width == 0 || cur_sps->mb_height == 0) {
            return VFW_E_INVALID_FILE_FORMAT;
        }

        pDXVAPicParams->wFrameWidthInMbsMinus1                  = cur_sps->mb_width  - 1;       // pic_width_in_mbs_minus1;
        pDXVAPicParams->wFrameHeightInMbsMinus1                 = cur_sps->mb_height * (2 - cur_sps->frame_mbs_only_flag) - 1;      // pic_height_in_map_units_minus1;
        pDXVAPicParams->num_ref_frames                          = cur_sps->ref_frame_count;     // num_ref_frames;
        pDXVAPicParams->field_pic_flag                          = field_pic_flag;
        pDXVAPicParams->MbaffFrameFlag                          = (h->sps.mb_aff && (field_pic_flag == 0));
        pDXVAPicParams->residual_colour_transform_flag          = cur_sps->residual_color_transform_flag;
        pDXVAPicParams->sp_for_switch_flag                      = h->sp_for_switch_flag;
        pDXVAPicParams->chroma_format_idc                       = cur_sps->chroma_format_idc;
        pDXVAPicParams->RefPicFlag                              = h->ref_pic_flag;
        pDXVAPicParams->constrained_intra_pred_flag             = cur_pps->constrained_intra_pred;
        pDXVAPicParams->weighted_pred_flag                      = cur_pps->weighted_pred;
        pDXVAPicParams->weighted_bipred_idc                     = cur_pps->weighted_bipred_idc;
        pDXVAPicParams->frame_mbs_only_flag                     = cur_sps->frame_mbs_only_flag;
        pDXVAPicParams->transform_8x8_mode_flag                 = cur_pps->transform_8x8_mode;
        pDXVAPicParams->MinLumaBipredSize8x8Flag                = h->sps.level_idc >= 31;
        pDXVAPicParams->IntraPicFlag                            = (h->slice_type == AV_PICTURE_TYPE_I || h->slice_type == AV_PICTURE_TYPE_SI);

        pDXVAPicParams->bit_depth_luma_minus8                   = cur_sps->bit_depth_luma   - 8;    // bit_depth_luma_minus8
        pDXVAPicParams->bit_depth_chroma_minus8                 = cur_sps->bit_depth_chroma - 8;    // bit_depth_chroma_minus8

        //pDXVAPicParams->StatusReportFeedbackNumber              = SET IN DecodeFrame;
        //pDXVAPicParams->CurrFieldOrderCnt                       = SET IN UpdateRefFramesList;
        //pDXVAPicParams->FieldOrderCntList                       = SET IN UpdateRefFramesList;
        //pDXVAPicParams->FrameNumList                            = SET IN UpdateRefFramesList;
        //pDXVAPicParams->UsedForReferenceFlags                   = SET IN UpdateRefFramesList;
        //pDXVAPicParams->NonExistingFrameFlags

        pDXVAPicParams->frame_num                               = h->frame_num;

        pDXVAPicParams->log2_max_frame_num_minus4               = cur_sps->log2_max_frame_num - 4;                  // log2_max_frame_num_minus4;
        pDXVAPicParams->pic_order_cnt_type                      = cur_sps->poc_type;                                // pic_order_cnt_type;
        if (cur_sps->poc_type == 0) {
            pDXVAPicParams->log2_max_pic_order_cnt_lsb_minus4 = cur_sps->log2_max_poc_lsb - 4;    // log2_max_pic_order_cnt_lsb_minus4;
        } else if (cur_sps->poc_type == 1) {
            pDXVAPicParams->delta_pic_order_always_zero_flag  = cur_sps->delta_pic_order_always_zero_flag;
        }
        pDXVAPicParams->direct_8x8_inference_flag               = cur_sps->direct_8x8_inference_flag;
        pDXVAPicParams->entropy_coding_mode_flag                = cur_pps->cabac;                                   // entropy_coding_mode_flag;
        pDXVAPicParams->pic_order_present_flag                  = cur_pps->pic_order_present;                       // pic_order_present_flag;
        pDXVAPicParams->num_slice_groups_minus1                 = cur_pps->slice_group_count - 1;                   // num_slice_groups_minus1;
        pDXVAPicParams->slice_group_map_type                    = cur_pps->mb_slice_group_map_type;                 // slice_group_map_type;
        pDXVAPicParams->deblocking_filter_control_present_flag  = cur_pps->deblocking_filter_parameters_present;    // deblocking_filter_control_present_flag;
        pDXVAPicParams->redundant_pic_cnt_present_flag          = cur_pps->redundant_pic_cnt_present;               // redundant_pic_cnt_present_flag;

        pDXVAPicParams->chroma_qp_index_offset                  = cur_pps->chroma_qp_index_offset[0];
        pDXVAPicParams->second_chroma_qp_index_offset           = cur_pps->chroma_qp_index_offset[1];
        pDXVAPicParams->num_ref_idx_l0_active_minus1            = cur_pps->ref_count[0] - 1;                        // num_ref_idx_l0_active_minus1;
        pDXVAPicParams->num_ref_idx_l1_active_minus1            = cur_pps->ref_count[1] - 1;                        // num_ref_idx_l1_active_minus1;
        pDXVAPicParams->pic_init_qp_minus26                     = cur_pps->init_qp - 26;
        pDXVAPicParams->pic_init_qs_minus26                     = cur_pps->init_qs - 26;

        pDXVAPicParams->CurrPic.AssociatedFlag = field_pic_flag && (h->s.picture_structure == PICT_BOTTOM_FIELD);
        pDXVAPicParams->CurrFieldOrderCnt[0] = 0;
        if ((h->s.picture_structure & PICT_TOP_FIELD) && current_picture->field_poc[0] != INT_MAX) {
            pDXVAPicParams->CurrFieldOrderCnt[0] = current_picture->field_poc[0];
        }
        pDXVAPicParams->CurrFieldOrderCnt[1] = 0;
        if ((h->s.picture_structure & PICT_BOTTOM_FIELD) && current_picture->field_poc[1] != INT_MAX) {
            pDXVAPicParams->CurrFieldOrderCnt[1] = current_picture->field_poc[1];
        }

        CopyScalingMatrix(pDXVAScalingMatrix, cur_pps, nPCIVendor);
        hr = S_OK;
    }

    return hr;
}

void FFH264SetCurrentPicture(int nIndex, DXVA_PicParams_H264* pDXVAPicParams, struct AVCodecContext* pAVCtx)
{
    H264Context* h = (H264Context*) pAVCtx->priv_data;
    pDXVAPicParams->CurrPic.Index7Bits = nIndex;

    if (h->s.current_picture_ptr) {
        h->s.current_picture_ptr->f.opaque  = (void*)nIndex;
    }
}

void FFH264UpdateRefFramesList(DXVA_PicParams_H264* pDXVAPicParams, struct AVCodecContext* pAVCtx)
{
    H264Context* h = (H264Context*) pAVCtx->priv_data;
    UINT nUsedForReferenceFlags = 0;
    int i, j;
    Picture* pic;
    UCHAR AssociatedFlag;

    for (i = 0, j = 0; i < 16; i++) {
        if (i < h->short_ref_count) {
            // Short list reference frames
            pic = h->short_ref[h->short_ref_count - i - 1];
            AssociatedFlag = pic->long_ref != 0;
        } else {
            // Long list reference frames
            pic = NULL;
            while (!pic && j < h->short_ref_count + 16) {
                pic = h->long_ref[j++ - h->short_ref_count];
            }
            AssociatedFlag = 1;
        }

        if (pic != NULL) {
            pDXVAPicParams->FrameNumList[i] = pic->long_ref ? pic->pic_id : pic->frame_num;
            pDXVAPicParams->FieldOrderCntList[i][0] = 0;
            pDXVAPicParams->FieldOrderCntList[i][1] = 0;

            if (pic->field_poc[0] != INT_MAX) {
                pDXVAPicParams->FieldOrderCntList[i][0] = pic->field_poc [0];
                nUsedForReferenceFlags |= 1 << (i * 2);
            }

            if (pic->field_poc[1] != INT_MAX) {
                pDXVAPicParams->FieldOrderCntList[i][1] = pic->field_poc [1];
                nUsedForReferenceFlags |= 2 << (i * 2);
            }

            pDXVAPicParams->RefFrameList[i].AssociatedFlag = AssociatedFlag;
            pDXVAPicParams->RefFrameList[i].Index7Bits = (UCHAR)pic->f.opaque;
        } else {
            pDXVAPicParams->FrameNumList[i] = 0;
            pDXVAPicParams->FieldOrderCntList[i][0] = 0;
            pDXVAPicParams->FieldOrderCntList[i][1] = 0;
            pDXVAPicParams->RefFrameList[i].AssociatedFlag = 1;
            pDXVAPicParams->RefFrameList[i].Index7Bits = 127;
        }
    }

    pDXVAPicParams->UsedForReferenceFlags = nUsedForReferenceFlags;
}

BOOL FFH264IsRefFrameInUse(int nFrameNum, struct AVCodecContext* pAVCtx)
{
    H264Context* h = (H264Context*) pAVCtx->priv_data;
    int i;

    for (i = 0; i < h->short_ref_count; i++) {
        if ((int)h->short_ref[i]->f.opaque == nFrameNum) {
            return TRUE;
        }
    }

    for (i = 0; i < h->long_ref_count; i++) {
        if ((int)h->long_ref[i]->f.opaque == nFrameNum) {
            return TRUE;
        }
    }

    return FALSE;
}

void FF264UpdateRefFrameSliceLong(DXVA_PicParams_H264* pDXVAPicParams, DXVA_Slice_H264_Long* pSlice, struct AVCodecContext* pAVCtx)
{
    H264Context* h = (H264Context*) pAVCtx->priv_data;
    MpegEncContext* const s = &h->s;
    HRESULT hr = E_FAIL;
    unsigned i, list;

    for (list = 0; list < 2; list++) {
        for (i = 0; i < 32; i++) {
            pSlice->RefPicList[list][i].AssociatedFlag = 1;
            pSlice->RefPicList[list][i].Index7Bits = 127;
            pSlice->RefPicList[list][i].bPicEntry  = 255;
        }
    }

    for (list = 0; list < 2; list++) {
        for (i = 0; i < 32; i++) {
            if (list < h->list_count && i < h->ref_count[list]) {
                const Picture* r = &h->ref_list[list][i];
                pSlice->RefPicList[list][i].Index7Bits     = FFH264FindRefFrameIndex(h->ref_list[list][i].frame_num, pDXVAPicParams);
                pSlice->RefPicList[list][i].AssociatedFlag = r->f.reference == PICT_BOTTOM_FIELD;
            }
        }
    }
}

void FFH264SetDxvaSliceLong(struct AVCodecContext* pAVCtx, void* pSliceLong)
{
    H264Context* h = (H264Context*) pAVCtx->priv_data;
    h->dxva_slice_long = pSliceLong;
}

HRESULT FFVC1UpdatePictureParam(DXVA_PictureParameters* pPicParams, struct AVCodecContext* pAVCtx, int* nFieldType, int* nSliceType, BYTE* pBuffer, UINT nSize, UINT* nFrameSize, BOOL b_SecondField, BOOL* b_repeat_pict)
{
    VC1Context* vc1 = (VC1Context*) pAVCtx->priv_data;
    int out_nFrameSize = 0;

    if (pBuffer && !b_SecondField) {
        av_vc1_decode_frame(pAVCtx, pBuffer, nSize, &out_nFrameSize);
    }

    // WARNING : vc1->interlace is not reliable (always set for progressive video on HD-DVD material)
    if (vc1->fcm == 0) {
        if (nFieldType) {
            *nFieldType = PICT_FRAME;
        }
    } else {    // fcm : 2 or 3 frame or field interlaced
        if (nFieldType) {
            *nFieldType = (vc1->tff ? PICT_TOP_FIELD : PICT_BOTTOM_FIELD);
        }
    }

    if (b_SecondField) {
        vc1->second_field = 1;
        vc1->s.picture_structure = PICT_TOP_FIELD + vc1->tff;
        vc1->s.pict_type = (vc1->fptype & 1) ? AV_PICTURE_TYPE_P : AV_PICTURE_TYPE_I;
        if (vc1->fptype & 4) {
            vc1->s.pict_type = (vc1->fptype & 1) ? AV_PICTURE_TYPE_BI : AV_PICTURE_TYPE_B;
        }
    }

    if (nFrameSize) {
        *nFrameSize = out_nFrameSize;
    }

    if (vc1->profile == PROFILE_ADVANCED) {
        /* It is the cropped width/height -1 of the frame */
        pPicParams->wPicWidthInMBminus1  = pAVCtx->width  - 1;
        pPicParams->wPicHeightInMBminus1 = pAVCtx->height - 1;
    } else {
        /* It is the coded width/height in macroblock -1 of the frame */
        pPicParams->wPicWidthInMBminus1  = vc1->s.mb_width  - 1;
        pPicParams->wPicHeightInMBminus1 = vc1->s.mb_height - 1;
    }

    pPicParams->bSecondField           = (vc1->interlace && vc1->fcm == ILACE_FIELD && vc1->second_field);
    pPicParams->bPicIntra              = vc1->s.pict_type == AV_PICTURE_TYPE_I;
    pPicParams->bPicBackwardPrediction = vc1->s.pict_type == AV_PICTURE_TYPE_B;


    // Init    Init    Init    Todo
    // iWMV9 - i9IRU - iOHIT - iINSO - iWMVA - 0 - 0 - 0        | Section 3.2.5
    pPicParams->bBidirectionalAveragingMode = (pPicParams->bBidirectionalAveragingMode & 0xE0) |    // init in SetExtraData
            ((vc1->lumshift != 0 || vc1->lumscale != 32) ? 0x10 : 0) |  // iINSO
            ((vc1->profile == PROFILE_ADVANCED)   << 3);                // iWMVA

    // Section 3.2.20.3
    pPicParams->bPicSpatialResid8   = (vc1->panscanflag   << 7) | (vc1->refdist_flag << 6) |
                                      (vc1->s.loop_filter << 5) | (vc1->fastuvmc     << 4) |
                                      (vc1->extended_mv   << 3) | (vc1->dquant       << 1) |
                                      (vc1->vstransform);

    // Section 3.2.20.4
    pPicParams->bPicOverflowBlocks  = (vc1->quantizer_mode  << 6) | (vc1->multires << 5) |
                                      (vc1->s.resync_marker << 4) | (vc1->rangered << 3) |
                                      (vc1->s.max_b_frames);

    // Section 3.2.20.2
    pPicParams->bPicDeblockConfined = (vc1->postprocflag << 7) | (vc1->broadcast  << 6) |
                                      (vc1->interlace    << 5) | (vc1->tfcntrflag << 4) |
                                      (vc1->finterpflag  << 3) | // (refpic << 2) set in DecodeFrame !
                                      (vc1->psf << 1)          | vc1->extended_dmv;


    pPicParams->bPicStructure = 0;
    if (vc1->s.picture_structure & PICT_TOP_FIELD) {
        pPicParams->bPicStructure |= 0x01;
    }
    if (vc1->s.picture_structure & PICT_BOTTOM_FIELD) {
        pPicParams->bPicStructure |= 0x02;
    }

    pPicParams->bMVprecisionAndChromaRelation = ((vc1->mv_mode == MV_PMODE_1MV_HPEL_BILIN) << 3) |
            (1 << 2) |
            (0 << 1) |
            (!vc1->s.quarter_sample);

    // Cf page 17 : 2 for interlaced, 0 for progressive
    pPicParams->bPicExtrapolation = (!vc1->interlace || vc1->fcm == PROGRESSIVE) ? 1 : 2;

    if (vc1->s.picture_structure == PICT_FRAME) {
        pPicParams->wBitstreamFcodes      = vc1->lumscale;
        pPicParams->wBitstreamPCEelements = vc1->lumshift;
    } else {
        /* Syntax: (top_field_param << 8) | bottom_field_param */
        pPicParams->wBitstreamFcodes      = (vc1->lumscale << 8) | vc1->lumscale;
        pPicParams->wBitstreamPCEelements = (vc1->lumshift << 8) | vc1->lumshift;
    }

    if (vc1->profile == PROFILE_ADVANCED) {
        pPicParams->bPicOBMC = (vc1->range_mapy_flag  << 7) |
                               (vc1->range_mapy       << 4) |
                               (vc1->range_mapuv_flag << 3) |
                               (vc1->range_mapuv);
    }

    // Section 3.2.16
    if (nSliceType) {
        *nSliceType = vc1->s.pict_type;
    }

    // Cf section 7.1.1.25 in VC1 specification, section 3.2.14.3 in DXVA spec
    pPicParams->bRcontrol = vc1->rnd;

    pPicParams->bPicDeblocked = ((vc1->profile == PROFILE_ADVANCED && vc1->overlap == 1 &&
                                  pPicParams->bPicBackwardPrediction == 0) << 6) |
                                ((vc1->profile != PROFILE_ADVANCED && vc1->rangeredfrm) << 5) |
                                (vc1->s.loop_filter << 1);

    if (vc1->profile == PROFILE_ADVANCED && (vc1->rff || vc1->rptfrm)) {
        *b_repeat_pict = TRUE;
    }

    return S_OK;
}

int MPEG2CheckCompatibility(struct AVCodecContext* pAVCtx, struct AVFrame* pFrame)
{
    int got_picture = 0;
    Mpeg1Context* s1  = (Mpeg1Context*)pAVCtx->priv_data;
    MpegEncContext* s = (MpegEncContext*)&s1->mpeg_enc_ctx;
    AVPacket avpkt;

    av_init_packet(&avpkt);
    avpkt.data  = (BYTE*)pAVCtx->extradata;
    avpkt.size  = pAVCtx->extradata_size;
    avpkt.flags = AV_PKT_FLAG_KEY;

    avcodec_decode_video2(pAVCtx, pFrame, &got_picture, &avpkt);

    return (s->chroma_format < 2);
}

HRESULT FFMpeg2DecodeFrame(DXVA_PictureParameters* pPicParams, DXVA_QmatrixData* pQMatrixData, DXVA_SliceInfo* pSliceInfo, int* nSliceCount,
                           struct AVCodecContext* pAVCtx, struct AVFrame* pFrame, int* nNextCodecIndex, int* nFieldType, int* nSliceType, BYTE* pBuffer, UINT nSize)
{
    int i;
    int got_picture = 0;
    Mpeg1Context* s1 = (Mpeg1Context*)pAVCtx->priv_data;
    MpegEncContext* s = (MpegEncContext*)&s1->mpeg_enc_ctx;
    int is_field = 0;
    unsigned mb_count = 0;
    AVPacket avpkt;

    if (pBuffer) {
        s1->pSliceInfo = pSliceInfo;

        av_init_packet(&avpkt);
        avpkt.data  = pBuffer;
        avpkt.size  = nSize;
        avpkt.flags = AV_PKT_FLAG_KEY;
        avcodec_decode_video2(pAVCtx, pFrame, &got_picture, &avpkt);

        *nSliceCount = s1->slice_count;
        *nFieldType  = s->progressive_frame ? PICT_FRAME : s->current_picture.f.top_field_first ? PICT_TOP_FIELD : PICT_BOTTOM_FIELD;
        *nSliceType  = s->pict_type;
    }

    // pPicParams->wDecodedPictureIndex;        set in DecodeFrame
    // pPicParams->wDeblockedPictureIndex;      0 for Mpeg2
    // pPicParams->wForwardRefPictureIndex;     set in DecodeFrame
    // pPicParams->wBackwardRefPictureIndex;    set in DecodeFrame

    is_field                                = s->picture_structure != PICT_FRAME;

    pPicParams->wPicWidthInMBminus1         = s->mb_width - 1;
    pPicParams->wPicHeightInMBminus1        = (s->mb_height >> is_field) - 1;

    pPicParams->bMacroblockWidthMinus1      = 15;   // This is equal to "15" for MPEG-1, MPEG-2, H.263, and MPEG-4
    pPicParams->bMacroblockHeightMinus1     = 15;   // This is equal to "15" for MPEG-1, MPEG-2, H.261, H.263, and MPEG-4

    pPicParams->bBlockWidthMinus1           = 7;    // This is equal to "7" for MPEG-1, MPEG-2, H.261, H.263, and MPEG-4
    pPicParams->bBlockHeightMinus1          = 7;    // This is equal to "7" for MPEG-1, MPEG-2, H.261, H.263, and MPEG-4

    pPicParams->bBPPminus1                  = 7;    // It is equal to "7" for MPEG-1, MPEG-2, H.261, and H.263

    pPicParams->bPicStructure               = s->picture_structure;
    pPicParams->bSecondField                = is_field && !s->first_field;
    pPicParams->bPicIntra                   = (s->current_picture.f.pict_type == AV_PICTURE_TYPE_I);
    pPicParams->bPicBackwardPrediction      = (s->current_picture.f.pict_type == AV_PICTURE_TYPE_B);

    pPicParams->bBidirectionalAveragingMode = 0;    // The value "0" indicates MPEG-1 and MPEG-2 rounded averaging (//2),
    //pPicParams->bMVprecisionAndChromaRelation = 0;  // Indicates that luminance motion vectors have half-sample precision and that chrominance motion vectors are derived from luminance motion vectors according to the rules in MPEG-2
    pPicParams->bChromaFormat               = 0x01; // For MPEG-1, MPEG-2 "Main Profile," H.261 and H.263 bitstreams, this value shall always be set to "01", indicating "4:2:0" format

    //pPicParams->bPicScanFixed            = 1;    // set in UpdatePicParams
    //pPicParams->bPicScanMethod           = 1;    // set in UpdatePicParams
    //pPicParams->bPicReadbackRequests;            // ??

    //pPicParams->bRcontrol                = 0;    // It shall be set to "0" for all MPEG-1, and MPEG-2 bitstreams in order to conform with the rounding operator defined by those standards
    //pPicParams->bPicSpatialResid8;               // set in UpdatePicParams
    //pPicParams->bPicOverflowBlocks;              // set in UpdatePicParams
    //pPicParams->bPicExtrapolation;       = 0;    // by H.263 Annex D and MPEG-4

    //pPicParams->bPicDeblocked;           = 0;    // MPEG2_A Restricted Profile
    //pPicParams->bPicDeblockConfined;             // ??
    //pPicParams->bPic4MVallowed;                  // See H.263 Annexes F and J
    //pPicParams->bPicOBMC;                        // H.263 Annex F
    //pPicParams->bPicBinPB;                       // Annexes G and M of H.263
    //pPicParams->bMV_RPS;                         // ???
    //pPicParams->bReservedBits;                   // ??

    pPicParams->wBitstreamFcodes = (s->mpeg_f_code[0][0] << 12) | (s->mpeg_f_code[0][1] << 8) |
                                   (s->mpeg_f_code[1][0] << 4)  | (s->mpeg_f_code[1][1]);

    pPicParams->wBitstreamPCEelements = (s->intra_dc_precision << 14) | (s->picture_structure << 12) |
                                        (s->top_field_first << 11)   | (s->frame_pred_frame_dct << 10) |
                                        (s->concealment_motion_vectors << 9) | (s->q_scale_type << 8) |
                                        (s->intra_vlc_format << 7)   | (s->alternate_scan << 6) |
                                        (s->repeat_first_field << 5) | (s->chroma_420_type << 4) |
                                        (s->progressive_frame << 3);

    pPicParams->bBitstreamConcealmentNeed   = 0;
    pPicParams->bBitstreamConcealmentMethod = 0;

    pQMatrixData->bNewQmatrix[0] = 1;
    pQMatrixData->bNewQmatrix[1] = 1;
    pQMatrixData->bNewQmatrix[2] = 1;
    pQMatrixData->bNewQmatrix[3] = 1;
    for (i = 0; i < 64; i++) {
        int n = s->dsp.idct_permutation[ZZ_SCAN8[i]];
        pQMatrixData->Qmatrix[0][i] = s->intra_matrix[n];
        pQMatrixData->Qmatrix[1][i] = s->inter_matrix[n];
        pQMatrixData->Qmatrix[2][i] = s->chroma_intra_matrix[n];
        pQMatrixData->Qmatrix[3][i] = s->chroma_inter_matrix[n];
    }

    mb_count = s->mb_width * (s->mb_height >> is_field);
    for (i = 0; i < s1->slice_count; i++) {
        DXVA_SliceInfo* slice = &s1->pSliceInfo[i];

        if (i < s1->slice_count - 1) {
            slice->wNumberMBsInSlice = slice[1].wNumberMBsInSlice - slice[0].wNumberMBsInSlice;
        } else {
            slice->wNumberMBsInSlice = mb_count - slice[0].wNumberMBsInSlice;
        }
    }

    if (got_picture) {
        *nNextCodecIndex = pFrame->coded_picture_number;
    }

    return S_OK;
}

unsigned long FFGetMBNumber(struct AVCodecContext* pAVCtx)
{
    MpegEncContext* s = GetMpegEncContext(pAVCtx);

    return (s != NULL) ? s->mb_num : 0;
}

int FFIsSkipped(struct AVCodecContext* pAVCtx)
{
    VC1Context* vc1 = (VC1Context*) pAVCtx->priv_data;
    return vc1->p_frame_skipped;
}

int FFGetThreadType(enum AVCodecID nCodecId, int nThreadCount)
{
    if (!nThreadCount) {
        return 0;
    }
    switch (nCodecId) {
        case AV_CODEC_ID_H264:
            return FF_THREAD_FRAME | FF_THREAD_SLICE;
            break;
        case AV_CODEC_ID_MPEG1VIDEO:
        case AV_CODEC_ID_DVVIDEO:
        case AV_CODEC_ID_FFV1:
            return FF_THREAD_SLICE;
            break;
        case AV_CODEC_ID_VP3:
        case AV_CODEC_ID_VP8:
        case AV_CODEC_ID_THEORA:
        case AV_CODEC_ID_RV30:
        case AV_CODEC_ID_RV40:
            return FF_THREAD_FRAME;
            break;
        default:
            return 0;
    }
}

void FFSetThreadNumber(struct AVCodecContext* pAVCtx, enum AVCodecID nCodecId, int nThreadCount)
{
    pAVCtx->thread_count = nThreadCount;
    pAVCtx->thread_type  = FFGetThreadType(nCodecId, nThreadCount);
}

BOOL FFSoftwareCheckCompatibility(struct AVCodecContext* pAVCtx)
{
    if (pAVCtx->codec_id == AV_CODEC_ID_VC1) {
        VC1Context* vc1 = (VC1Context*) pAVCtx->priv_data;
        return !vc1->interlace;
    } else {
        return TRUE;
    }
}

int FFGetCodedPicture(struct AVCodecContext* pAVCtx)
{
    MpegEncContext* s = GetMpegEncContext(pAVCtx);

    return (s != NULL) ? s->current_picture.f.coded_picture_number : 0;
}

BOOL FFGetAlternateScan(struct AVCodecContext* pAVCtx)
{
    MpegEncContext* s = GetMpegEncContext(pAVCtx);

    return (s != NULL) ? s->alternate_scan : 0;
}

BOOL DXVACheckFramesize(int width, int height, DWORD nPCIVendor, DWORD nPCIDevice)
{
    width  = (width  + 15) & ~15; // (width  + 15) / 16 * 16;
    height = (height + 15) & ~15; // (height + 15) / 16 * 16;

    if (nPCIVendor == PCIV_nVidia) {
        if (CheckPCID((WORD)nPCIDevice, PCID_NVIDIA_VP5, _countof(PCID_NVIDIA_VP5)) && width <= 4096 && height <= 4096 && width * height <= 4080 * 4080) {
            // tested H.264 on VP5 (GT 610, GTX 660 Ti)
            // 4080x4080 = 65025 macroblocks
            return TRUE;
        } else if (width <= 2032 && height <= 2032 && width * height <= 8190 * 16 * 16) {
            // tested H.264, VC-1 and MPEG-2 on VP4 (feature set C) (G210M, GT220)
            return TRUE;
        }
    } else if (nPCIVendor == PCIV_ATI) {
        if (width <= 2048 && height <= 2304 && width * height <= 2048 * 2048) {
            // tested H.264 on UVD 2.2 (HD5670, HD5770, HD5850)
            // it may also work if width = 2064, but unstable
            return TRUE;
        }
    } else if (nPCIVendor == PCIV_Intel && nPCIDevice == PCID_Intel_HD4000) {
        //if (width <= 4096 && height <= 4096 && width * height <= 56672 * 16 * 16) {
        if (width <= 4096 && height <= 4096) { // driver v.9.17.10.2867
            // complete test was performed
            return TRUE;
        }
    } else if (nPCIVendor == PCIV_Intel && nPCIDevice == PCID_Intel_HD2500) {
        if (CHECK_AVC_L52_SIZE(width, height)) {
            // tested some media files with AVC Livel 5.1
            // complete test was NOT performed
            return TRUE;
        }
    } else if (width <= 1920 && height <= 1088) {
        return TRUE;
    }

    return FALSE;
}