summaryrefslogtreecommitdiff
path: root/gst-libs/gst/vaapi/gstvaapidecoder_mpeg2.c
blob: 6dc9f0cf92bb353044aad9777c1f0b277b636757 (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
/*
 *  gstvaapidecoder_mpeg2.c - MPEG-2 decoder
 *
 *  Copyright (C) 2011-2013 Intel Corporation
 *    Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public License
 *  as published by the Free Software Foundation; either version 2.1
 *  of the License, or (at your option) any later version.
 *
 *  This library 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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free
 *  Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301 USA
 */

/**
 * SECTION:gstvaapidecoder_mpeg2
 * @short_description: MPEG-2 decoder
 */

#include "sysdeps.h"
#include <string.h>
#include <gst/base/gstbitreader.h>
#include <gst/codecparsers/gstmpegvideoparser.h>
#include "gstvaapidecoder_mpeg2.h"
#include "gstvaapidecoder_objects.h"
#include "gstvaapidecoder_dpb.h"
#include "gstvaapidecoder_priv.h"
#include "gstvaapidisplay_priv.h"
#include "gstvaapiobject_priv.h"

#define DEBUG 1
#include "gstvaapidebug.h"

/* ------------------------------------------------------------------------- */
/* --- PTS Generator                                                     --- */
/* ------------------------------------------------------------------------- */

typedef struct _PTSGenerator PTSGenerator;
struct _PTSGenerator {
    GstClockTime        gop_pts; // Current GOP PTS
    GstClockTime        max_pts; // Max picture PTS
    guint               gop_tsn; // Absolute GOP TSN
    guint               max_tsn; // Max picture TSN, relative to last GOP TSN
    guint               ovl_tsn; // How many times TSN overflowed since GOP
    guint               lst_tsn; // Last picture TSN
    guint               fps_n;
    guint               fps_d;
};

static void
pts_init(PTSGenerator *tsg)
{
    tsg->gop_pts = GST_CLOCK_TIME_NONE;
    tsg->max_pts = GST_CLOCK_TIME_NONE;
    tsg->gop_tsn = 0;
    tsg->max_tsn = 0;
    tsg->ovl_tsn = 0;
    tsg->lst_tsn = 0;
    tsg->fps_n   = 0;
    tsg->fps_d   = 0;
}

static inline GstClockTime
pts_get_duration(PTSGenerator *tsg, guint num_frames)
{
    return gst_util_uint64_scale(num_frames,
                                 GST_SECOND * tsg->fps_d, tsg->fps_n);
}

static inline guint
pts_get_poc(PTSGenerator *tsg)
{
    return tsg->gop_tsn + tsg->ovl_tsn * 1024 + tsg->lst_tsn;
}

static void
pts_set_framerate(PTSGenerator *tsg, guint fps_n, guint fps_d)
{
    tsg->fps_n = fps_n;
    tsg->fps_d = fps_d;
}

static void
pts_sync(PTSGenerator *tsg, GstClockTime gop_pts)
{
    guint gop_tsn;

    if (!GST_CLOCK_TIME_IS_VALID(gop_pts) ||
        (GST_CLOCK_TIME_IS_VALID(tsg->max_pts) && tsg->max_pts >= gop_pts)) {
        /* Invalid GOP PTS, interpolate from the last known picture PTS */
        if (GST_CLOCK_TIME_IS_VALID(tsg->max_pts)) {
            gop_pts = tsg->max_pts + pts_get_duration(tsg, 1);
            gop_tsn = tsg->gop_tsn + tsg->ovl_tsn * 1024 + tsg->max_tsn + 1;
        }
        else {
            gop_pts = 0;
            gop_tsn = 0;
        }
    }
    else {
        /* Interpolate GOP TSN from this valid PTS */
        if (GST_CLOCK_TIME_IS_VALID(tsg->gop_pts))
            gop_tsn = tsg->gop_tsn + gst_util_uint64_scale(
                gop_pts - tsg->gop_pts + pts_get_duration(tsg, 1) - 1,
                tsg->fps_n, GST_SECOND * tsg->fps_d);
        else
            gop_tsn = 0;
    }

    tsg->gop_pts = gop_pts;
    tsg->gop_tsn = gop_tsn;
    tsg->max_tsn = 0;
    tsg->ovl_tsn = 0;
    tsg->lst_tsn = 0;
}

static GstClockTime
pts_eval(PTSGenerator *tsg, GstClockTime pic_pts, guint pic_tsn)
{
    GstClockTime pts;

    if (!GST_CLOCK_TIME_IS_VALID(tsg->gop_pts))
        tsg->gop_pts = pts_get_duration(tsg, pic_tsn);

    pts = pic_pts;
    if (!GST_CLOCK_TIME_IS_VALID (pts))
       pts = tsg->gop_pts + pts_get_duration(tsg, tsg->ovl_tsn * 1024 + pic_tsn);
    else if (pts == tsg->gop_pts) {
        /* The picture following the GOP header shall be an I-frame.
           So we can compensate for the GOP start time from here */
        tsg->gop_pts -= pts_get_duration(tsg, pic_tsn);
    }

    if (!GST_CLOCK_TIME_IS_VALID(tsg->max_pts) || tsg->max_pts < pts)
        tsg->max_pts = pts;

    if (tsg->max_tsn < pic_tsn)
        tsg->max_tsn = pic_tsn;
    else if (tsg->max_tsn == 1023 && pic_tsn < tsg->lst_tsn) { /* TSN wrapped */
        tsg->max_tsn = pic_tsn;
        tsg->ovl_tsn++;
    }
    tsg->lst_tsn = pic_tsn;

    return pts;
}

/* ------------------------------------------------------------------------- */
/* --- MPEG-2 Parser Info                                                --- */
/* ------------------------------------------------------------------------- */

typedef struct _GstVaapiParserInfoMpeg2 GstVaapiParserInfoMpeg2;
struct _GstVaapiParserInfoMpeg2 {
    GstVaapiMiniObject  parent_instance;
    GstMpegVideoPacket  packet;
    guint8              extension_type; /* for Extension packets */
    union {
        GstMpegVideoSequenceHdr         seq_hdr;
        GstMpegVideoSequenceExt         seq_ext;
        GstMpegVideoSequenceDisplayExt  seq_display_ext;
        GstMpegVideoSequenceScalableExt seq_scalable_ext;
        GstMpegVideoGop                 gop;
        GstMpegVideoQuantMatrixExt      quant_matrix;
        GstMpegVideoPictureHdr          pic_hdr;
        GstMpegVideoPictureExt          pic_ext;
        GstMpegVideoSliceHdr            slice_hdr;
    }                                   data;
};

static inline const GstVaapiMiniObjectClass *
gst_vaapi_parser_info_mpeg2_class(void)
{
    static const GstVaapiMiniObjectClass GstVaapiParserInfoMpeg2Class = {
        sizeof(GstVaapiParserInfoMpeg2),
        NULL
    };
    return &GstVaapiParserInfoMpeg2Class;
}

static inline GstVaapiParserInfoMpeg2 *
gst_vaapi_parser_info_mpeg2_new(void)
{
    return (GstVaapiParserInfoMpeg2 *)
        gst_vaapi_mini_object_new(gst_vaapi_parser_info_mpeg2_class());
}

static inline GstVaapiParserInfoMpeg2 *
gst_vaapi_parser_info_mpeg2_ensure(GstVaapiParserInfoMpeg2 **pi_ptr)
{
    GstVaapiParserInfoMpeg2 *pi = *pi_ptr;

    if (G_LIKELY(pi != NULL))
        return pi;

    *pi_ptr = pi = gst_vaapi_parser_info_mpeg2_new();
    return pi;
}

#define gst_vaapi_parser_info_mpeg2_ref(pi) \
    gst_vaapi_mini_object_ref(GST_VAAPI_MINI_OBJECT(pi))

#define gst_vaapi_parser_info_mpeg2_unref(pi) \
    gst_vaapi_mini_object_unref(GST_VAAPI_MINI_OBJECT(pi))

#define gst_vaapi_parser_info_mpeg2_replace(old_pi_ptr, new_pi)         \
    gst_vaapi_mini_object_replace((GstVaapiMiniObject **)(old_pi_ptr),  \
        (GstVaapiMiniObject *)(new_pi))

/* ------------------------------------------------------------------------- */
/* --- MPEG-2 Decoder                                                    --- */
/* ------------------------------------------------------------------------- */

#define GST_VAAPI_DECODER_MPEG2_CAST(decoder) \
    ((GstVaapiDecoderMpeg2 *)(decoder))

typedef struct _GstVaapiDecoderMpeg2Private     GstVaapiDecoderMpeg2Private;
typedef struct _GstVaapiDecoderMpeg2Class       GstVaapiDecoderMpeg2Class;

typedef enum {
    GST_MPEG_VIDEO_STATE_GOT_SEQ_HDR    = 1 << 0,
    GST_MPEG_VIDEO_STATE_GOT_SEQ_EXT    = 1 << 1,
    GST_MPEG_VIDEO_STATE_GOT_PIC_HDR    = 1 << 2,
    GST_MPEG_VIDEO_STATE_GOT_PIC_EXT    = 1 << 3,
    GST_MPEG_VIDEO_STATE_GOT_SLICE      = 1 << 4,

    GST_MPEG_VIDEO_STATE_VALID_SEQ_HEADERS = (
        GST_MPEG_VIDEO_STATE_GOT_SEQ_HDR|
        GST_MPEG_VIDEO_STATE_GOT_SEQ_EXT),
    GST_MPEG_VIDEO_STATE_VALID_PIC_HEADERS = (
        GST_MPEG_VIDEO_STATE_GOT_PIC_HDR|
        GST_MPEG_VIDEO_STATE_GOT_PIC_EXT),
    GST_MPEG_VIDEO_STATE_VALID_PICTURE = (
        GST_MPEG_VIDEO_STATE_VALID_SEQ_HEADERS|
        GST_MPEG_VIDEO_STATE_VALID_PIC_HEADERS|
        GST_MPEG_VIDEO_STATE_GOT_SLICE)
} GstMpegVideoState;

struct _GstVaapiDecoderMpeg2Private {
    GstVaapiProfile             profile;
    GstVaapiProfile             hw_profile;
    guint                       width;
    guint                       height;
    guint                       fps_n;
    guint                       fps_d;
    guint                       state;
    GstVaapiRectangle           crop_rect;
    GstVaapiParserInfoMpeg2    *seq_hdr;
    GstVaapiParserInfoMpeg2    *seq_ext;
    GstVaapiParserInfoMpeg2    *seq_display_ext;
    GstVaapiParserInfoMpeg2    *seq_scalable_ext;
    GstVaapiParserInfoMpeg2    *gop;
    GstVaapiParserInfoMpeg2    *pic_hdr;
    GstVaapiParserInfoMpeg2    *pic_ext;
    GstVaapiParserInfoMpeg2    *pic_display_ext;
    GstVaapiParserInfoMpeg2    *quant_matrix;
    GstVaapiParserInfoMpeg2    *slice_hdr;
    GstVaapiPicture            *current_picture;
    GstVaapiDpb                *dpb;
    PTSGenerator                tsg;
    guint                       is_opened               : 1;
    guint                       size_changed            : 1;
    guint                       profile_changed         : 1;
    guint                       quant_matrix_changed    : 1;
    guint                       progressive_sequence    : 1;
    guint                       closed_gop              : 1;
    guint                       broken_link             : 1;
};

/**
 * GstVaapiDecoderMpeg2:
 *
 * A decoder based on Mpeg2.
 */
struct _GstVaapiDecoderMpeg2 {
    /*< private >*/
    GstVaapiDecoder             parent_instance;
    GstVaapiDecoderMpeg2Private priv;
};

/**
 * GstVaapiDecoderMpeg2Class:
 *
 * A decoder class based on Mpeg2.
 */
struct _GstVaapiDecoderMpeg2Class {
    /*< private >*/
    GstVaapiDecoderClass parent_class;
};

static void
gst_vaapi_decoder_mpeg2_close(GstVaapiDecoderMpeg2 *decoder)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    gst_vaapi_picture_replace(&priv->current_picture, NULL);

    gst_vaapi_parser_info_mpeg2_replace(&priv->seq_hdr, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->seq_ext, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->seq_display_ext, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->seq_scalable_ext, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->gop, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->pic_hdr, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->pic_ext, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->pic_display_ext, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->quant_matrix, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->slice_hdr, NULL);

    priv->state = 0;

    gst_vaapi_dpb_replace(&priv->dpb, NULL);
}

static gboolean
gst_vaapi_decoder_mpeg2_open(GstVaapiDecoderMpeg2 *decoder)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    gst_vaapi_decoder_mpeg2_close(decoder);

    priv->dpb = gst_vaapi_dpb_new(2);
    if (!priv->dpb)
        return FALSE;

    pts_init(&priv->tsg);
    return TRUE;
}

static void
gst_vaapi_decoder_mpeg2_destroy(GstVaapiDecoder *base_decoder)
{
    GstVaapiDecoderMpeg2 * const decoder =
        GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);

    gst_vaapi_decoder_mpeg2_close(decoder);
}

static gboolean
gst_vaapi_decoder_mpeg2_create(GstVaapiDecoder *base_decoder)
{
    GstVaapiDecoderMpeg2 * const decoder =
        GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    priv->hw_profile            = GST_VAAPI_PROFILE_UNKNOWN;
    priv->profile               = GST_VAAPI_PROFILE_MPEG2_SIMPLE;
    priv->profile_changed       = TRUE; /* Allow fallbacks to work */
    return TRUE;
}

static inline void
copy_quant_matrix(guint8 dst[64], const guint8 src[64])
{
    memcpy(dst, src, 64);
}

static const char *
get_profile_str(GstVaapiProfile profile)
{
    char *str;

    switch (profile) {
    case GST_VAAPI_PROFILE_MPEG2_SIMPLE:    str = "simple";     break;
    case GST_VAAPI_PROFILE_MPEG2_MAIN:      str = "main";       break;
    case GST_VAAPI_PROFILE_MPEG2_HIGH:      str = "high";       break;
    default:                                str = "<unknown>";  break;
    }
    return str;
}

static GstVaapiProfile
get_profile(GstVaapiDecoderMpeg2 *decoder, GstVaapiEntrypoint entrypoint)
{
    GstVaapiDisplay * const va_display = GST_VAAPI_DECODER_DISPLAY(decoder);
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstVaapiProfile profile = priv->profile;

    do {
        /* Return immediately if the exact same profile was found */
        if (gst_vaapi_display_has_decoder(va_display, profile, entrypoint))
            break;

        /* Otherwise, try to map to a higher profile */
        switch (profile) {
        case GST_VAAPI_PROFILE_MPEG2_SIMPLE:
            profile = GST_VAAPI_PROFILE_MPEG2_MAIN;
            break;
        case GST_VAAPI_PROFILE_MPEG2_MAIN:
            profile = GST_VAAPI_PROFILE_MPEG2_HIGH;
            break;
        case GST_VAAPI_PROFILE_MPEG2_HIGH:
            // Try to map to main profile if no high profile specific bits used
            if (priv->profile == profile &&
                !priv->seq_scalable_ext &&
                (priv->seq_ext &&
                 priv->seq_ext->data.seq_ext.chroma_format == 1)) {
                profile = GST_VAAPI_PROFILE_MPEG2_MAIN;
                break;
            }
            // fall-through
        default:
            profile = GST_VAAPI_PROFILE_UNKNOWN;
            break;
        }
    } while (profile != GST_VAAPI_PROFILE_UNKNOWN);

    if (profile != priv->profile)
        GST_INFO("forced %s profile to %s profile",
                 get_profile_str(priv->profile), get_profile_str(profile));
    return profile;
}

static GstVaapiDecoderStatus
ensure_context(GstVaapiDecoderMpeg2 *decoder)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstVaapiEntrypoint entrypoint = GST_VAAPI_ENTRYPOINT_VLD;
    gboolean reset_context = FALSE;

    if (priv->profile_changed) {
        GST_DEBUG("profile changed");
        priv->profile_changed = FALSE;
        reset_context         = TRUE;

        priv->hw_profile = get_profile(decoder, entrypoint);
        if (priv->hw_profile == GST_VAAPI_PROFILE_UNKNOWN)
            return GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_PROFILE;
    }

    if (priv->size_changed) {
        GST_DEBUG("size changed");
        priv->size_changed = FALSE;
        reset_context      = TRUE;
    }

    if (reset_context) {
        GstVaapiContextInfo info;

        info.profile    = priv->hw_profile;
        info.entrypoint = entrypoint;
        info.chroma_type = GST_VAAPI_CHROMA_TYPE_YUV420;
        info.width      = priv->width;
        info.height     = priv->height;
        info.ref_frames = 2;
        reset_context   = gst_vaapi_decoder_ensure_context(
            GST_VAAPI_DECODER_CAST(decoder),
            &info
        );
        if (!reset_context)
            return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
    }
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
ensure_quant_matrix(GstVaapiDecoderMpeg2 *decoder, GstVaapiPicture *picture)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceHdr * const seq_hdr = &priv->seq_hdr->data.seq_hdr;
    VAIQMatrixBufferMPEG2 *iq_matrix;
    guint8 *intra_quant_matrix = NULL;
    guint8 *non_intra_quant_matrix = NULL;
    guint8 *chroma_intra_quant_matrix = NULL;
    guint8 *chroma_non_intra_quant_matrix = NULL;

    if (!priv->quant_matrix_changed)
        return GST_VAAPI_DECODER_STATUS_SUCCESS;

    priv->quant_matrix_changed = FALSE;

    picture->iq_matrix = GST_VAAPI_IQ_MATRIX_NEW(MPEG2, decoder);
    if (!picture->iq_matrix) {
        GST_ERROR("failed to allocate IQ matrix");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }
    iq_matrix = picture->iq_matrix->param;

    intra_quant_matrix     = seq_hdr->intra_quantizer_matrix;
    non_intra_quant_matrix = seq_hdr->non_intra_quantizer_matrix;

    if (priv->quant_matrix) {
        GstMpegVideoQuantMatrixExt * const quant_matrix =
            &priv->quant_matrix->data.quant_matrix;
        if (quant_matrix->load_intra_quantiser_matrix)
            intra_quant_matrix = quant_matrix->intra_quantiser_matrix;
        if (quant_matrix->load_non_intra_quantiser_matrix)
            non_intra_quant_matrix = quant_matrix->non_intra_quantiser_matrix;
        if (quant_matrix->load_chroma_intra_quantiser_matrix)
            chroma_intra_quant_matrix = quant_matrix->chroma_intra_quantiser_matrix;
        if (quant_matrix->load_chroma_non_intra_quantiser_matrix)
            chroma_non_intra_quant_matrix = quant_matrix->chroma_non_intra_quantiser_matrix;
    }

    iq_matrix->load_intra_quantiser_matrix = intra_quant_matrix != NULL;
    if (intra_quant_matrix)
        copy_quant_matrix(iq_matrix->intra_quantiser_matrix,
                          intra_quant_matrix);

    iq_matrix->load_non_intra_quantiser_matrix = non_intra_quant_matrix != NULL;
    if (non_intra_quant_matrix)
        copy_quant_matrix(iq_matrix->non_intra_quantiser_matrix,
                          non_intra_quant_matrix);

    iq_matrix->load_chroma_intra_quantiser_matrix = chroma_intra_quant_matrix != NULL;
    if (chroma_intra_quant_matrix)
        copy_quant_matrix(iq_matrix->chroma_intra_quantiser_matrix,
                          chroma_intra_quant_matrix);

    iq_matrix->load_chroma_non_intra_quantiser_matrix = chroma_non_intra_quant_matrix != NULL;
    if (chroma_non_intra_quant_matrix)
        copy_quant_matrix(iq_matrix->chroma_non_intra_quantiser_matrix,
                          chroma_non_intra_quant_matrix);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static inline gboolean
is_valid_state(GstVaapiDecoderMpeg2 *decoder, guint state)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    return (priv->state & state) == state;
}

static GstVaapiDecoderStatus
decode_current_picture(GstVaapiDecoderMpeg2 *decoder)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstVaapiPicture * const picture = priv->current_picture;

    if (!is_valid_state(decoder, GST_MPEG_VIDEO_STATE_VALID_PICTURE))
        goto drop_frame;
    priv->state &= GST_MPEG_VIDEO_STATE_VALID_SEQ_HEADERS;

    if (!picture)
        return GST_VAAPI_DECODER_STATUS_SUCCESS;

    if (!gst_vaapi_picture_decode(picture))
        goto error;
    if (GST_VAAPI_PICTURE_IS_COMPLETE(picture)) {
        if (!gst_vaapi_dpb_add(priv->dpb, picture))
            goto error;
        gst_vaapi_picture_replace(&priv->current_picture, NULL);
    }
    return GST_VAAPI_DECODER_STATUS_SUCCESS;

error:
    /* XXX: fix for cases where first field failed to be decoded */
    gst_vaapi_picture_replace(&priv->current_picture, NULL);
    return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;

drop_frame:
    priv->state &= GST_MPEG_VIDEO_STATE_VALID_SEQ_HEADERS;
    return (GstVaapiDecoderStatus) GST_VAAPI_DECODER_STATUS_DROP_FRAME;
}

static GstVaapiDecoderStatus
parse_sequence(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceHdr *seq_hdr;

    priv->state = 0;

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->seq_hdr)) {
        GST_ERROR("failed to allocate parser info for sequence header");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    seq_hdr = &priv->seq_hdr->data.seq_hdr;

    if (!gst_mpeg_video_packet_parse_sequence_header(packet, seq_hdr)) {
        GST_ERROR("failed to parse sequence header");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, seq_hdr, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_sequence(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoder * const base_decoder = GST_VAAPI_DECODER_CAST(decoder);
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceHdr * const seq_hdr = unit->parsed_info;

    gst_vaapi_parser_info_mpeg2_replace(&priv->seq_ext, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->seq_display_ext, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->seq_scalable_ext, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->quant_matrix, NULL);
    gst_vaapi_parser_info_mpeg2_replace(&priv->pic_display_ext, NULL);

    priv->fps_n = seq_hdr->fps_n;
    priv->fps_d = seq_hdr->fps_d;
    pts_set_framerate(&priv->tsg, priv->fps_n, priv->fps_d);
    gst_vaapi_decoder_set_framerate(base_decoder, priv->fps_n, priv->fps_d);

    priv->width                 = seq_hdr->width;
    priv->height                = seq_hdr->height;
    priv->size_changed          = TRUE;
    priv->quant_matrix_changed  = TRUE;
    priv->progressive_sequence  = TRUE;

    priv->state |= GST_MPEG_VIDEO_STATE_GOT_SEQ_HDR;
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
parse_sequence_ext(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceExt *seq_ext;

    priv->state &= GST_MPEG_VIDEO_STATE_GOT_SEQ_HDR;

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->seq_ext)) {
        GST_ERROR("failed to allocate parser info for sequence extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    seq_ext = &priv->seq_ext->data.seq_ext;

    if (!gst_mpeg_video_packet_parse_sequence_extension(packet, seq_ext)) {
        GST_ERROR("failed to parse sequence-extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, seq_ext, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_sequence_ext(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoder * const base_decoder = GST_VAAPI_DECODER_CAST(decoder);
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceExt * const seq_ext = unit->parsed_info;
    GstVaapiProfile profile;
    guint width, height;

    if (!is_valid_state(decoder, GST_MPEG_VIDEO_STATE_GOT_SEQ_HDR))
        return GST_VAAPI_DECODER_STATUS_SUCCESS;

    priv->progressive_sequence = seq_ext->progressive;
    gst_vaapi_decoder_set_interlaced(base_decoder, !priv->progressive_sequence);

    width  = (priv->width  & 0x0fff) | ((guint32)seq_ext->horiz_size_ext << 12);
    height = (priv->height & 0x0fff) | ((guint32)seq_ext->vert_size_ext  << 12);
    GST_DEBUG("video resolution %ux%u", width, height);

    if (seq_ext->fps_n_ext && seq_ext->fps_d_ext) {
        priv->fps_n *= seq_ext->fps_n_ext + 1;
        priv->fps_d *= seq_ext->fps_d_ext + 1;
        pts_set_framerate(&priv->tsg, priv->fps_n, priv->fps_d);
        gst_vaapi_decoder_set_framerate(base_decoder, priv->fps_n, priv->fps_d);
    }

    if (priv->width != width) {
        priv->width = width;
        priv->size_changed = TRUE;
    }

    if (priv->height != height) {
        priv->height = height;
        priv->size_changed = TRUE;
    }

    switch (seq_ext->profile) {
    case GST_MPEG_VIDEO_PROFILE_SIMPLE:
        profile = GST_VAAPI_PROFILE_MPEG2_SIMPLE;
        break;
    case GST_MPEG_VIDEO_PROFILE_MAIN:
        profile = GST_VAAPI_PROFILE_MPEG2_MAIN;
        break;
    case GST_MPEG_VIDEO_PROFILE_HIGH:
        profile = GST_VAAPI_PROFILE_MPEG2_HIGH;
        break;
    default:
        GST_ERROR("unsupported profile %d", seq_ext->profile);
        return GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_PROFILE;
    }
    if (priv->profile != profile) {
        priv->profile = profile;
        priv->profile_changed = TRUE;
    }

    priv->state |= GST_MPEG_VIDEO_STATE_GOT_SEQ_EXT;
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
parse_sequence_display_ext(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceDisplayExt *seq_display_ext;

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->seq_display_ext)) {
        GST_ERROR("failed to allocate parser info for sequence display extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    seq_display_ext = &priv->seq_display_ext->data.seq_display_ext;

    if (!gst_mpeg_video_packet_parse_sequence_display_extension(packet,
            seq_display_ext)) {
        GST_ERROR("failed to parse sequence-display-extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, seq_display_ext, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_sequence_display_ext(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceDisplayExt *seq_display_ext;

    seq_display_ext = priv->seq_display_ext ?
        &priv->seq_display_ext->data.seq_display_ext : NULL;

    /* Update cropping rectangle */
    if (seq_display_ext) {
        GstVaapiRectangle * const crop_rect = &priv->crop_rect;
        crop_rect->x = 0;
        crop_rect->y = 0;
        crop_rect->width = seq_display_ext->display_horizontal_size;
        crop_rect->height = seq_display_ext->display_vertical_size;
    }

    /* XXX: handle color primaries */
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
parse_sequence_scalable_ext(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceScalableExt *seq_scalable_ext;

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->seq_scalable_ext)) {
        GST_ERROR("failed to allocate parser info for sequence scalable extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    seq_scalable_ext = &priv->seq_scalable_ext->data.seq_scalable_ext;

    if (!gst_mpeg_video_packet_parse_sequence_scalable_extension(packet,
            seq_scalable_ext)) {
        GST_ERROR("failed to parse sequence-scalable-extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, seq_scalable_ext, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_sequence_scalable_ext(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit)
{
    /* XXX: unsupported header -- ignore */
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_sequence_end(GstVaapiDecoderMpeg2 *decoder)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    if (priv->dpb)
        gst_vaapi_dpb_flush(priv->dpb);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
parse_quant_matrix_ext(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoQuantMatrixExt *quant_matrix;

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->quant_matrix)) {
        GST_ERROR("failed to allocate parser info for quantization matrix");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    quant_matrix = &priv->quant_matrix->data.quant_matrix;

    if (!gst_mpeg_video_packet_parse_quant_matrix_extension(packet,
            quant_matrix)) {
        GST_ERROR("failed to parse quant-matrix-extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, quant_matrix, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_quant_matrix_ext(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    priv->quant_matrix_changed = TRUE;
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
parse_gop(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoGop *gop;

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->gop)) {
        GST_ERROR("failed to allocate parser info for GOP");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    gop = &priv->gop->data.gop;

    if (!gst_mpeg_video_packet_parse_gop(packet, gop)) {
        GST_ERROR("failed to parse GOP");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, gop, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_gop(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoGop * const gop = unit->parsed_info;

    priv->closed_gop  = gop->closed_gop;
    priv->broken_link = gop->broken_link;

    GST_DEBUG("GOP %02u:%02u:%02u:%02u (closed_gop %d, broken_link %d)",
              gop->hour, gop->minute, gop->second, gop->frame,
              priv->closed_gop, priv->broken_link);

    pts_sync(&priv->tsg, GST_VAAPI_DECODER_CODEC_FRAME(decoder)->pts);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
parse_picture(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoPictureHdr *pic_hdr;

    priv->state &= (GST_MPEG_VIDEO_STATE_GOT_SEQ_HDR|
                    GST_MPEG_VIDEO_STATE_GOT_SEQ_EXT);

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->pic_hdr)) {
        GST_ERROR("failed to allocate parser info for picture header");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    pic_hdr = &priv->pic_hdr->data.pic_hdr;

    if (!gst_mpeg_video_packet_parse_picture_header(packet, pic_hdr)) {
        GST_ERROR("failed to parse picture header");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, pic_hdr, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_picture(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    if (!is_valid_state(decoder, GST_MPEG_VIDEO_STATE_VALID_SEQ_HEADERS))
        return GST_VAAPI_DECODER_STATUS_SUCCESS;

    gst_vaapi_parser_info_mpeg2_replace(&priv->pic_ext, NULL);

    priv->state |= GST_MPEG_VIDEO_STATE_GOT_PIC_HDR;
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
parse_picture_ext(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoPictureExt *pic_ext;

    priv->state &= (GST_MPEG_VIDEO_STATE_GOT_SEQ_HDR|
                    GST_MPEG_VIDEO_STATE_GOT_SEQ_EXT|
                    GST_MPEG_VIDEO_STATE_GOT_PIC_HDR);

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->pic_ext)) {
        GST_ERROR("failed to allocate parser info for picture extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    pic_ext = &priv->pic_ext->data.pic_ext;

    if (!gst_mpeg_video_packet_parse_picture_extension(packet, pic_ext)) {
        GST_ERROR("failed to parse picture-extension");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, pic_ext, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_picture_ext(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoPictureExt * const pic_ext = unit->parsed_info;

    if (!is_valid_state(decoder, GST_MPEG_VIDEO_STATE_GOT_PIC_HDR))
        return GST_VAAPI_DECODER_STATUS_SUCCESS;

    if (priv->progressive_sequence && !pic_ext->progressive_frame) {
        GST_WARNING("invalid interlaced frame in progressive sequence, fixing");
        pic_ext->progressive_frame = 1;
    }

    if (pic_ext->picture_structure == 0 ||
        (pic_ext->progressive_frame &&
         pic_ext->picture_structure != GST_MPEG_VIDEO_PICTURE_STRUCTURE_FRAME)) {
        GST_WARNING("invalid picture_structure %d, replacing with \"frame\"",
                    pic_ext->picture_structure);
        pic_ext->picture_structure = GST_MPEG_VIDEO_PICTURE_STRUCTURE_FRAME;
    }

    priv->state |= GST_MPEG_VIDEO_STATE_GOT_PIC_EXT;
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static inline guint32
pack_f_code(guint8 f_code[2][2])
{
    return (((guint32)f_code[0][0] << 12) |
            ((guint32)f_code[0][1] <<  8) |
            ((guint32)f_code[1][0] <<  4) |
            (         f_code[1][1]      ));
}

static GstVaapiDecoderStatus
init_picture(GstVaapiDecoderMpeg2 *decoder, GstVaapiPicture *picture)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoPictureHdr * const pic_hdr = &priv->pic_hdr->data.pic_hdr;
    GstMpegVideoPictureExt * const pic_ext = &priv->pic_ext->data.pic_ext;

    switch (pic_hdr->pic_type) {
    case GST_MPEG_VIDEO_PICTURE_TYPE_I:
        GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_REFERENCE);
        picture->type = GST_VAAPI_PICTURE_TYPE_I;
        break;
    case GST_MPEG_VIDEO_PICTURE_TYPE_P:
        GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_REFERENCE);
        picture->type = GST_VAAPI_PICTURE_TYPE_P;
        break;
    case GST_MPEG_VIDEO_PICTURE_TYPE_B:
        picture->type = GST_VAAPI_PICTURE_TYPE_B;
        break;
    default:
        GST_ERROR("unsupported picture type %d", pic_hdr->pic_type);
        return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
    }

    if (!priv->progressive_sequence && !pic_ext->progressive_frame) {
        GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_INTERLACED);
        if (pic_ext->top_field_first)
            GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_TFF);
    }

    switch (pic_ext->picture_structure) {
    case GST_MPEG_VIDEO_PICTURE_STRUCTURE_TOP_FIELD:
        picture->structure = GST_VAAPI_PICTURE_STRUCTURE_TOP_FIELD;
        break;
    case GST_MPEG_VIDEO_PICTURE_STRUCTURE_BOTTOM_FIELD:
        picture->structure = GST_VAAPI_PICTURE_STRUCTURE_BOTTOM_FIELD;
        break;
    case GST_MPEG_VIDEO_PICTURE_STRUCTURE_FRAME:
        picture->structure = GST_VAAPI_PICTURE_STRUCTURE_FRAME;
        break;
    }

    /* Allocate dummy picture for first field based I-frame */
    if (picture->type == GST_VAAPI_PICTURE_TYPE_I &&
        !GST_VAAPI_PICTURE_IS_FRAME(picture) &&
        gst_vaapi_dpb_size(priv->dpb) == 0) {
        GstVaapiPicture *dummy_picture;
        gboolean success;

        dummy_picture = GST_VAAPI_PICTURE_NEW(MPEG2, decoder);
        if (!dummy_picture) {
            GST_ERROR("failed to allocate dummy picture");
            return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
        }

        dummy_picture->type      = GST_VAAPI_PICTURE_TYPE_I;
        dummy_picture->pts       = GST_CLOCK_TIME_NONE;
        dummy_picture->poc       = -1;
        dummy_picture->structure = GST_VAAPI_PICTURE_STRUCTURE_FRAME;

        GST_VAAPI_PICTURE_FLAG_SET(
            dummy_picture,
            (GST_VAAPI_PICTURE_FLAG_SKIPPED |
             GST_VAAPI_PICTURE_FLAG_OUTPUT  |
             GST_VAAPI_PICTURE_FLAG_REFERENCE)
        );

        success = gst_vaapi_dpb_add(priv->dpb, dummy_picture);
        gst_vaapi_picture_unref(dummy_picture);
        if (!success) {
            GST_ERROR("failed to add dummy picture into DPB");
            return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
        }
        GST_INFO("allocated dummy picture for first field based I-frame");
    }

    /* Update presentation time */
    picture->pts = pts_eval(&priv->tsg,
        GST_VAAPI_DECODER_CODEC_FRAME(decoder)->pts, pic_hdr->tsn);
    picture->poc = pts_get_poc(&priv->tsg);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static void
fill_picture(GstVaapiDecoderMpeg2 *decoder, GstVaapiPicture *picture)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    VAPictureParameterBufferMPEG2 * const pic_param = picture->param;
    GstMpegVideoPictureHdr * const pic_hdr = &priv->pic_hdr->data.pic_hdr;
    GstMpegVideoPictureExt * const pic_ext = &priv->pic_ext->data.pic_ext;
    GstVaapiPicture *prev_picture, *next_picture;

    /* Fill in VAPictureParameterBufferMPEG2 */
    pic_param->horizontal_size            = priv->width;
    pic_param->vertical_size              = priv->height;
    pic_param->forward_reference_picture  = VA_INVALID_ID;
    pic_param->backward_reference_picture = VA_INVALID_ID;
    pic_param->picture_coding_type        = pic_hdr->pic_type;
    pic_param->f_code                     = pack_f_code(pic_ext->f_code);

#define COPY_FIELD(a, b, f) \
    pic_param->a.b.f = pic_ext->f
    pic_param->picture_coding_extension.value = 0;
    pic_param->picture_coding_extension.bits.is_first_field =
        GST_VAAPI_PICTURE_IS_FIRST_FIELD(picture);
    COPY_FIELD(picture_coding_extension, bits, intra_dc_precision);
    COPY_FIELD(picture_coding_extension, bits, picture_structure);
    COPY_FIELD(picture_coding_extension, bits, top_field_first);
    COPY_FIELD(picture_coding_extension, bits, frame_pred_frame_dct);
    COPY_FIELD(picture_coding_extension, bits, concealment_motion_vectors);
    COPY_FIELD(picture_coding_extension, bits, q_scale_type);
    COPY_FIELD(picture_coding_extension, bits, intra_vlc_format);
    COPY_FIELD(picture_coding_extension, bits, alternate_scan);
    COPY_FIELD(picture_coding_extension, bits, repeat_first_field);
    COPY_FIELD(picture_coding_extension, bits, progressive_frame);

    gst_vaapi_dpb_get_neighbours(priv->dpb, picture,
        &prev_picture, &next_picture);

    switch (pic_hdr->pic_type) {
    case GST_MPEG_VIDEO_PICTURE_TYPE_B:
        if (next_picture)
            pic_param->backward_reference_picture = next_picture->surface_id;
        if (prev_picture)
            pic_param->forward_reference_picture = prev_picture->surface_id;
        else if (!priv->closed_gop)
            GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_SKIPPED);
        break;
    case GST_MPEG_VIDEO_PICTURE_TYPE_P:
        if (prev_picture)
            pic_param->forward_reference_picture = prev_picture->surface_id;
        break;
    }
}

static GstVaapiDecoderStatus
parse_slice(GstVaapiDecoderMpeg2 *decoder,
    GstVaapiDecoderUnit *unit, const GstMpegVideoPacket *packet)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSliceHdr *slice_hdr;
    GstMpegVideoSequenceHdr *seq_hdr;
    GstMpegVideoSequenceScalableExt *seq_scalable_ext;

    priv->state &= (GST_MPEG_VIDEO_STATE_GOT_SEQ_HDR|
                    GST_MPEG_VIDEO_STATE_GOT_SEQ_EXT|
                    GST_MPEG_VIDEO_STATE_GOT_PIC_HDR|
                    GST_MPEG_VIDEO_STATE_GOT_PIC_EXT);

    if (!is_valid_state(decoder, GST_MPEG_VIDEO_STATE_VALID_PIC_HEADERS))
        return GST_VAAPI_DECODER_STATUS_SUCCESS;

    if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->slice_hdr)) {
        GST_ERROR("failed to allocate parser info for slice header");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }

    slice_hdr = &priv->slice_hdr->data.slice_hdr;
    seq_hdr = &priv->seq_hdr->data.seq_hdr;
    seq_scalable_ext = priv->seq_scalable_ext ?
        &priv->seq_scalable_ext->data.seq_scalable_ext : NULL;

    if (!gst_mpeg_video_packet_parse_slice_header(packet, slice_hdr,
            seq_hdr, seq_scalable_ext)) {
        GST_ERROR("failed to parse slice header");
        return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
    }

    gst_vaapi_decoder_unit_set_parsed_info(unit, slice_hdr, NULL);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
decode_slice(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstVaapiPicture * const picture = priv->current_picture;
    GstVaapiSlice *slice;
    VASliceParameterBufferMPEG2 *slice_param;
    GstMpegVideoSliceHdr * const slice_hdr = unit->parsed_info;
    GstBuffer * const buffer =
        GST_VAAPI_DECODER_CODEC_FRAME(decoder)->input_buffer;
    GstMapInfo map_info;

    if (!is_valid_state(decoder, GST_MPEG_VIDEO_STATE_VALID_PIC_HEADERS))
        return GST_VAAPI_DECODER_STATUS_SUCCESS;

    if (!gst_buffer_map(buffer, &map_info, GST_MAP_READ)) {
        GST_ERROR("failed to map buffer");
        return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
    }

    GST_DEBUG("slice %d (%u bytes)", slice_hdr->mb_row, unit->size);

    slice = GST_VAAPI_SLICE_NEW(MPEG2, decoder,
        (map_info.data + unit->offset), unit->size);
    gst_buffer_unmap(buffer, &map_info);
    if (!slice) {
        GST_ERROR("failed to allocate slice");
        return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
    }
    gst_vaapi_picture_add_slice(picture, slice);

    /* Fill in VASliceParameterBufferMPEG2 */
    slice_param                            = slice->param;
    slice_param->macroblock_offset         = slice_hdr->header_size + 32;
    slice_param->slice_horizontal_position = slice_hdr->mb_column;
    slice_param->slice_vertical_position   = slice_hdr->mb_row;
    slice_param->quantiser_scale_code      = slice_hdr->quantiser_scale_code;
    slice_param->intra_slice_flag          = slice_hdr->intra_slice;

    priv->state |= GST_MPEG_VIDEO_STATE_GOT_SLICE;
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static inline gint
scan_for_start_code(const guchar *buf, guint buf_size,
    GstMpegVideoPacketTypeCode *type_ptr)
{
    guint i = 0;

    while (i <= (buf_size - 4)) {
        if (buf[i + 2] > 1)
            i += 3;
        else if (buf[i + 1])
            i += 2;
        else if (buf[i] || buf[i + 2] != 1)
            i++;
        else
            break;
    }

    if (i <= (buf_size - 4)) {
        if (type_ptr)
            *type_ptr = buf[i + 3];
        return i;
    }
    return -1;
}

static GstVaapiDecoderStatus
parse_unit(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit,
    GstMpegVideoPacket *packet)
{
    GstMpegVideoPacketTypeCode type;
    GstMpegVideoPacketExtensionCode ext_type;
    GstVaapiDecoderStatus status;

    type = packet->type;
    switch (type) {
    case GST_MPEG_VIDEO_PACKET_PICTURE:
        status = parse_picture(decoder, unit, packet);
        break;
    case GST_MPEG_VIDEO_PACKET_SEQUENCE:
        status = parse_sequence(decoder, unit, packet);
        break;
    case GST_MPEG_VIDEO_PACKET_EXTENSION:
        ext_type = packet->data[4] >> 4;
        switch (ext_type) {
        case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE:
            status = parse_sequence_ext(decoder, unit, packet);
            break;
        case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE_DISPLAY:
            status = parse_sequence_display_ext(decoder, unit, packet);
            break;
        case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE_SCALABLE:
            status = parse_sequence_scalable_ext(decoder, unit, packet);
            break;
        case GST_MPEG_VIDEO_PACKET_EXT_QUANT_MATRIX:
            status = parse_quant_matrix_ext(decoder, unit, packet);
            break;
        case GST_MPEG_VIDEO_PACKET_EXT_PICTURE:
            status = parse_picture_ext(decoder, unit, packet);
            break;
        default:
            status = GST_VAAPI_DECODER_STATUS_SUCCESS;
            break;
        }
        break;
    case GST_MPEG_VIDEO_PACKET_GOP:
        status = parse_gop(decoder, unit, packet);
        break;
    default:
        if (type >= GST_MPEG_VIDEO_PACKET_SLICE_MIN &&
            type <= GST_MPEG_VIDEO_PACKET_SLICE_MAX) {
            status = parse_slice(decoder, unit, packet);
            break;
        }
        status = GST_VAAPI_DECODER_STATUS_SUCCESS;
        break;
    }
    return status;
}

static GstVaapiDecoderStatus
decode_unit(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit,
    GstMpegVideoPacket *packet)
{
    GstMpegVideoPacketTypeCode type;
    GstMpegVideoPacketExtensionCode ext_type;
    GstVaapiDecoderStatus status;

    type = packet->type;
    switch (type) {
    case GST_MPEG_VIDEO_PACKET_PICTURE:
        status = decode_picture(decoder, unit);
        break;
    case GST_MPEG_VIDEO_PACKET_SEQUENCE:
        status = decode_sequence(decoder, unit);
        break;
    case GST_MPEG_VIDEO_PACKET_EXTENSION:
        ext_type = packet->data[4] >> 4;
        switch (ext_type) {
        case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE:
            status = decode_sequence_ext(decoder, unit);
            break;
        case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE_DISPLAY:
            status = decode_sequence_display_ext(decoder, unit);
            break;
        case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE_SCALABLE:
            status = decode_sequence_scalable_ext(decoder, unit);
            break;
        case GST_MPEG_VIDEO_PACKET_EXT_QUANT_MATRIX:
            status = decode_quant_matrix_ext(decoder, unit);
            break;
        case GST_MPEG_VIDEO_PACKET_EXT_PICTURE:
            status = decode_picture_ext(decoder, unit);
            break;
        default:
            // Ignore unknown start-code extensions
            GST_WARNING("unsupported packet extension type 0x%02x", ext_type);
            status = GST_VAAPI_DECODER_STATUS_SUCCESS;
            break;
        }
        break;
    case GST_MPEG_VIDEO_PACKET_SEQUENCE_END:
        status = decode_sequence_end(decoder);
        break;
    case GST_MPEG_VIDEO_PACKET_GOP:
        status = decode_gop(decoder, unit);
        break;
    default:
        if (type >= GST_MPEG_VIDEO_PACKET_SLICE_MIN &&
            type <= GST_MPEG_VIDEO_PACKET_SLICE_MAX) {
            status = decode_slice(decoder, unit);
            break;
        }
        GST_WARNING("unsupported packet type 0x%02x", type);
        status = GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
        break;
    }
    return status;
}

static GstVaapiDecoderStatus
ensure_decoder(GstVaapiDecoderMpeg2 *decoder)
{
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    if (!priv->is_opened) {
        priv->is_opened = gst_vaapi_decoder_mpeg2_open(decoder);
        if (!priv->is_opened)
            return GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_CODEC;
    }
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
gst_vaapi_decoder_mpeg2_parse(GstVaapiDecoder *base_decoder,
    GstAdapter *adapter, gboolean at_eos, GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoderMpeg2 * const decoder =
        GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
    GstVaapiParserState * const ps = GST_VAAPI_PARSER_STATE(base_decoder);
    GstVaapiDecoderStatus status;
    GstMpegVideoPacketTypeCode type, type2 = GST_MPEG_VIDEO_PACKET_NONE;
    const guchar *buf;
    guint buf_size, flags;
    gint ofs, ofs1, ofs2;

    status = ensure_decoder(decoder);
    if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
        return status;

    buf_size = gst_adapter_available(adapter);
    if (buf_size < 4)
        return GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA;

    buf = gst_adapter_map(adapter, buf_size);
    if (!buf)
        return GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA;

    ofs = scan_for_start_code(buf, buf_size, &type);
    if (ofs < 0)
        return GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA;
    ofs1 = ofs;

    ofs2 = ps->input_offset2 - 4;
    if (ofs2 < ofs1 + 4)
        ofs2 = ofs1 + 4;

    ofs = G_UNLIKELY(buf_size < ofs2 + 4) ? -1 :
        scan_for_start_code(&buf[ofs2], buf_size - ofs2, &type2);
    if (ofs < 0) {
        // Assume the whole packet is present if end-of-stream
        if (!at_eos) {
            ps->input_offset2 = buf_size;
            return GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA;
        }
        ofs = buf_size - ofs2;
    }
    ofs2 += ofs;

    unit->size = ofs2 - ofs1;
    gst_adapter_flush(adapter, ofs1);
    ps->input_offset2 = 4;

    /* Check for start of new picture */
    flags = 0;
    switch (type) {
    case GST_MPEG_VIDEO_PACKET_SEQUENCE_END:
        flags |= GST_VAAPI_DECODER_UNIT_FLAG_FRAME_END;
        flags |= GST_VAAPI_DECODER_UNIT_FLAG_STREAM_END;
        break;
    case GST_MPEG_VIDEO_PACKET_USER_DATA:
        flags |= GST_VAAPI_DECODER_UNIT_FLAG_SKIP;
        /* fall-through */
    case GST_MPEG_VIDEO_PACKET_SEQUENCE:
    case GST_MPEG_VIDEO_PACKET_GOP:
    case GST_MPEG_VIDEO_PACKET_PICTURE:
        flags |= GST_VAAPI_DECODER_UNIT_FLAG_FRAME_START;
        break;
    case GST_MPEG_VIDEO_PACKET_EXTENSION:
        if (G_UNLIKELY(unit->size < 5))
            return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
        break;
    default:
        if (type >= GST_MPEG_VIDEO_PACKET_SLICE_MIN &&
            type <= GST_MPEG_VIDEO_PACKET_SLICE_MAX) {
            flags |= GST_VAAPI_DECODER_UNIT_FLAG_SLICE;
            switch (type2) {
            case GST_MPEG_VIDEO_PACKET_USER_DATA:
            case GST_MPEG_VIDEO_PACKET_SEQUENCE:
            case GST_MPEG_VIDEO_PACKET_GOP:
            case GST_MPEG_VIDEO_PACKET_PICTURE:
                flags |= GST_VAAPI_DECODER_UNIT_FLAG_FRAME_END;
                break;
            default:
                break;
            }
        }

        // Ignore system start codes (PES headers)
        else if (type >= 0xb9 && type <= 0xff)
            flags |= GST_VAAPI_DECODER_UNIT_FLAG_SKIP;
        break;
    }
    GST_VAAPI_DECODER_UNIT_FLAG_SET(unit, flags);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
gst_vaapi_decoder_mpeg2_decode(GstVaapiDecoder *base_decoder,
    GstVaapiDecoderUnit *unit)
{
    GstVaapiDecoderMpeg2 * const decoder =
        GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
    GstVaapiDecoderStatus status;
    GstMpegVideoPacket packet;
    GstBuffer * const buffer =
        GST_VAAPI_DECODER_CODEC_FRAME(decoder)->input_buffer;
    GstMapInfo map_info;

    status = ensure_decoder(decoder);
    if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
        return status;

    if (!gst_buffer_map(buffer, &map_info, GST_MAP_READ)) {
        GST_ERROR("failed to map buffer");
        return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
    }

    packet.data = map_info.data + unit->offset;
    packet.size = unit->size;
    packet.type = packet.data[3];
    packet.offset = 4;

    status = parse_unit(decoder, unit, &packet);
    gst_buffer_unmap(buffer, &map_info);
    if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
        return status;
    return decode_unit(decoder, unit, &packet);
}

static GstVaapiDecoderStatus
gst_vaapi_decoder_mpeg2_start_frame(GstVaapiDecoder *base_decoder,
    GstVaapiDecoderUnit *base_unit)
{
    GstVaapiDecoderMpeg2 * const decoder =
        GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;
    GstMpegVideoSequenceHdr *seq_hdr;
    GstMpegVideoSequenceExt *seq_ext;
    GstMpegVideoSequenceDisplayExt *seq_display_ext;
    GstVaapiPicture *picture;
    GstVaapiDecoderStatus status;

    if (!is_valid_state(decoder, GST_MPEG_VIDEO_STATE_VALID_PIC_HEADERS))
        return GST_VAAPI_DECODER_STATUS_SUCCESS;
    priv->state &= ~GST_MPEG_VIDEO_STATE_VALID_PIC_HEADERS;

    seq_hdr = &priv->seq_hdr->data.seq_hdr;
    seq_ext = priv->seq_ext ? &priv->seq_ext->data.seq_ext : NULL;
    seq_display_ext = priv->seq_display_ext ?
        &priv->seq_display_ext->data.seq_display_ext : NULL;
    if (gst_mpeg_video_finalise_mpeg2_sequence_header(seq_hdr, seq_ext,
            seq_display_ext))
        gst_vaapi_decoder_set_pixel_aspect_ratio(base_decoder,
            seq_hdr->par_w, seq_hdr->par_h);

    status = ensure_context(decoder);
    if (status != GST_VAAPI_DECODER_STATUS_SUCCESS) {
        GST_ERROR("failed to reset context");
        return status;
    }

    if (priv->current_picture) {
        /* Re-use current picture where the first field was decoded */
        picture = gst_vaapi_picture_new_field(priv->current_picture);
        if (!picture) {
            GST_ERROR("failed to allocate field picture");
            return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
        }
    }
    else {
        /* Create new picture */
        picture = GST_VAAPI_PICTURE_NEW(MPEG2, decoder);
        if (!picture) {
            GST_ERROR("failed to allocate picture");
            return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
        }
    }
    gst_vaapi_picture_replace(&priv->current_picture, picture);
    gst_vaapi_picture_unref(picture);

    /* Update cropping rectangle */
    /* XXX: handle picture_display_extension() */
    if (seq_display_ext && priv->pic_display_ext) {
        GstVaapiRectangle * const crop_rect = &priv->crop_rect;
        if (crop_rect->x + crop_rect->width <= priv->width &&
            crop_rect->y + crop_rect->height <= priv->height)
            gst_vaapi_picture_set_crop_rect(picture, crop_rect);
    }

    status = ensure_quant_matrix(decoder, picture);
    if (status != GST_VAAPI_DECODER_STATUS_SUCCESS) {
        GST_ERROR("failed to reset quantizer matrix");
        return status;
    }

    status = init_picture(decoder, picture);
    if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
        return status;

    fill_picture(decoder, picture);

    priv->state |= GST_MPEG_VIDEO_STATE_VALID_PIC_HEADERS;
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static GstVaapiDecoderStatus
gst_vaapi_decoder_mpeg2_end_frame(GstVaapiDecoder *base_decoder)
{
    GstVaapiDecoderMpeg2 * const decoder =
        GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);

    return decode_current_picture(decoder);
}

static GstVaapiDecoderStatus
gst_vaapi_decoder_mpeg2_flush(GstVaapiDecoder *base_decoder)
{
    GstVaapiDecoderMpeg2 * const decoder =
        GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
    GstVaapiDecoderMpeg2Private * const priv = &decoder->priv;

    if (priv->dpb)
      gst_vaapi_dpb_flush(priv->dpb);
    return GST_VAAPI_DECODER_STATUS_SUCCESS;
}

static void
gst_vaapi_decoder_mpeg2_class_init(GstVaapiDecoderMpeg2Class *klass)
{
    GstVaapiMiniObjectClass * const object_class =
        GST_VAAPI_MINI_OBJECT_CLASS(klass);
    GstVaapiDecoderClass * const decoder_class = GST_VAAPI_DECODER_CLASS(klass);

    object_class->size          = sizeof(GstVaapiDecoderMpeg2);
    object_class->finalize      = (GDestroyNotify)gst_vaapi_decoder_finalize;

    decoder_class->create       = gst_vaapi_decoder_mpeg2_create;
    decoder_class->destroy      = gst_vaapi_decoder_mpeg2_destroy;
    decoder_class->parse        = gst_vaapi_decoder_mpeg2_parse;
    decoder_class->decode       = gst_vaapi_decoder_mpeg2_decode;
    decoder_class->start_frame  = gst_vaapi_decoder_mpeg2_start_frame;
    decoder_class->end_frame    = gst_vaapi_decoder_mpeg2_end_frame;
    decoder_class->flush        = gst_vaapi_decoder_mpeg2_flush;
}

static inline const GstVaapiDecoderClass *
gst_vaapi_decoder_mpeg2_class(void)
{
    static GstVaapiDecoderMpeg2Class g_class;
    static gsize g_class_init = FALSE;

    if (g_once_init_enter(&g_class_init)) {
        gst_vaapi_decoder_mpeg2_class_init(&g_class);
        g_once_init_leave(&g_class_init, TRUE);
    }
    return GST_VAAPI_DECODER_CLASS(&g_class);
}

/**
 * gst_vaapi_decoder_mpeg2_new:
 * @display: a #GstVaapiDisplay
 * @caps: a #GstCaps holding codec information
 *
 * Creates a new #GstVaapiDecoder for MPEG-2 decoding.  The @caps can
 * hold extra information like codec-data and pictured coded size.
 *
 * Return value: the newly allocated #GstVaapiDecoder object
 */
GstVaapiDecoder *
gst_vaapi_decoder_mpeg2_new(GstVaapiDisplay *display, GstCaps *caps)
{
    return gst_vaapi_decoder_new(gst_vaapi_decoder_mpeg2_class(),
        display, caps);
}