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
|
/*
* Copyright (c) 2017-2021, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
//!
//! \file media_libva_caps_g11.cpp
//! \brief This file implements the C++ class/interface for gen11 media capbilities.
//!
#include "codec_def_encode_hevc_g11.h"
#include "media_libva_util.h"
#include "media_libva.h"
#include "media_libva_caps_cp_interface.h"
#include "media_libva_caps_g11.h"
#include "media_libva_caps_factory.h"
#include "media_ddi_decode_const.h"
#include "media_ddi_encode_const.h"
#include "media_ddi_decode_const_g11.h"
#include "media_libva_vp.h"
const VAImageFormat m_supportedImageformatsG11[] =
{
// "VA_LSB_FIRST" is to identify how following bit masks mapped to address instead of char order in VA_FOURCC_RGBA naming.
{VA_FOURCC_BGRA, VA_LSB_FIRST, 32, 32, 0x00ff0000, 0x0000ff00, 0x000000ff, 0xff000000}, /* [31:0] A:R:G:B 8:8:8:8 little endian */
{VA_FOURCC_RGBA, VA_LSB_FIRST, 32, 32, 0x000000ff, 0x0000ff00, 0x00ff0000, 0xff000000}, /* [31:0] A:B:G:R 8:8:8:8 little endian */
{VA_FOURCC_BGRX, VA_LSB_FIRST, 32, 24, 0x00ff0000, 0x0000ff00, 0x000000ff, 0}, /* [31:0] X:R:G:B 8:8:8:8 little endian */
{VA_FOURCC_RGBX, VA_LSB_FIRST, 32, 24, 0x000000ff, 0x0000ff00, 0x00ff0000, 0}, /* [31:0] X:B:G:R 8:8:8:8 little endian */
{VA_FOURCC_A2R10G10B10, VA_LSB_FIRST, 32, 30, 0x3ff00000, 0x000ffc00, 0x000003ff, 0x30000000}, /* [31:0] A:R:G:B 2:10:10:10 little endian */
{VA_FOURCC_A2B10G10R10, VA_LSB_FIRST, 32, 30, 0x000003ff, 0x000ffc00, 0x3ff00000, 0x30000000}, /* [31:0] A:B:G:R 2:10:10:10 little endian */
{VA_FOURCC_X2R10G10B10, VA_LSB_FIRST, 32, 30, 0x3ff00000, 0x000ffc00, 0x000003ff, 0}, /* [31:0] X:R:G:B 2:10:10:10 little endian */
{VA_FOURCC_X2B10G10R10, VA_LSB_FIRST, 32, 30, 0x000003ff, 0x000ffc00, 0x3ff00000, 0}, /* [31:0] X:B:G:R 2:10:10:10 little endian */
{VA_FOURCC_RGB565, VA_LSB_FIRST, 16, 16, 0xf800, 0x07e0, 0x001f, 0}, /* [15:0] R:G:B 5:6:5 little endian */
{VA_FOURCC_AYUV, VA_LSB_FIRST, 32, 0,0,0,0,0},
#if VA_CHECK_VERSION(1, 13, 0)
{VA_FOURCC_XYUV, VA_LSB_FIRST, 32, 0,0,0,0,0},
#endif
{VA_FOURCC_Y800, VA_LSB_FIRST, 8, 0,0,0,0,0},
{VA_FOURCC_NV12, VA_LSB_FIRST, 12, 0,0,0,0,0},
{VA_FOURCC_NV21, VA_LSB_FIRST, 12, 0,0,0,0,0},
{VA_FOURCC_YUY2, VA_LSB_FIRST, 16, 0,0,0,0,0},
{VA_FOURCC_UYVY, VA_LSB_FIRST, 16, 0,0,0,0,0},
{VA_FOURCC_YV12, VA_LSB_FIRST, 12, 0,0,0,0,0},
{VA_FOURCC_I420, VA_LSB_FIRST, 12, 0,0,0,0,0},
{VA_FOURCC_411P, VA_LSB_FIRST, 12, 0,0,0,0,0},
{VA_FOURCC_422H, VA_LSB_FIRST, 16, 0,0,0,0,0},
{VA_FOURCC_422V, VA_LSB_FIRST, 16, 0,0,0,0,0},
{VA_FOURCC_444P, VA_LSB_FIRST, 24, 0,0,0,0,0},
{VA_FOURCC_IMC3, VA_LSB_FIRST, 16, 0,0,0,0,0},
{VA_FOURCC_P010, VA_LSB_FIRST, 24, 0,0,0,0,0},
{VA_FOURCC_Y210, VA_LSB_FIRST, 32, 0,0,0,0,0},
{VA_FOURCC_Y410, VA_LSB_FIRST, 32, 0,0,0,0,0}
};
const VAConfigAttribValEncRateControlExt MediaLibvaCapsG11::m_encVp9RateControlExt =
{
{CODECHAL_ENCODE_VP9_MAX_NUM_TEMPORAL_LAYERS - 1, 1, 0}
};
VAStatus MediaLibvaCapsG11::QueryImageFormats(VAImageFormat *formatList, int32_t *numFormats)
{
DDI_CHK_NULL(formatList, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
DDI_CHK_NULL(numFormats, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
int32_t num = 0;
uint32_t maxNum = GetImageFormatsMaxNum();
memset(formatList, 0, sizeof(m_supportedImageformatsG11));
for (uint32_t idx = 0; idx < maxNum; idx++)
{
formatList[num].fourcc = m_supportedImageformatsG11[idx].fourcc;
formatList[num].byte_order = m_supportedImageformatsG11[idx].byte_order;
formatList[num].bits_per_pixel = m_supportedImageformatsG11[idx].bits_per_pixel;
formatList[num].depth = m_supportedImageformatsG11[idx].depth;
formatList[num].red_mask = m_supportedImageformatsG11[idx].red_mask;
formatList[num].green_mask = m_supportedImageformatsG11[idx].green_mask;
formatList[num].blue_mask = m_supportedImageformatsG11[idx].blue_mask;
formatList[num].alpha_mask = m_supportedImageformatsG11[idx].alpha_mask;
num++;
}
*numFormats = num;
return VA_STATUS_SUCCESS;
}
uint32_t MediaLibvaCapsG11::GetImageFormatsMaxNum()
{
return sizeof(m_supportedImageformatsG11)/sizeof(m_supportedImageformatsG11[0]);
}
bool MediaLibvaCapsG11::IsImageSupported(uint32_t fourcc)
{
uint32_t maxNum = GetImageFormatsMaxNum();
for (int32_t idx = 0; idx < maxNum; idx++)
{
if (m_supportedImageformatsG11[idx].fourcc == fourcc)
{
return true;
}
}
return false;
}
VAStatus MediaLibvaCapsG11::PopulateColorMaskInfo(VAImageFormat *vaImgFmt)
{
uint32_t maxNum = GetImageFormatsMaxNum();
DDI_CHK_NULL(vaImgFmt, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
for (int32_t idx = 0; idx < maxNum; idx++)
{
if (m_supportedImageformatsG11[idx].fourcc == vaImgFmt->fourcc)
{
vaImgFmt->red_mask = m_supportedImageformatsG11[idx].red_mask;
vaImgFmt->green_mask = m_supportedImageformatsG11[idx].green_mask;
vaImgFmt->blue_mask = m_supportedImageformatsG11[idx].blue_mask;
vaImgFmt->alpha_mask = m_supportedImageformatsG11[idx].alpha_mask;
return VA_STATUS_SUCCESS;
}
}
return VA_STATUS_ERROR_INVALID_IMAGE_FORMAT;
}
CODECHAL_MODE MediaLibvaCapsG11::GetEncodeCodecMode(VAProfile profile, VAEntrypoint entrypoint)
{
if (entrypoint == VAEntrypointStats)
{
return CODECHAL_ENCODE_MODE_AVC;
}
switch (profile)
{
case VAProfileH264High:
case VAProfileH264Main:
case VAProfileH264ConstrainedBaseline:
return CODECHAL_ENCODE_MODE_AVC;
case VAProfileMPEG2Main:
case VAProfileMPEG2Simple:
return CODECHAL_ENCODE_MODE_MPEG2;
case VAProfileJPEGBaseline:
return CODECHAL_ENCODE_MODE_JPEG;
case VAProfileVP8Version0_3:
return CODECHAL_ENCODE_MODE_VP8;
case VAProfileVP9Profile0:
case VAProfileVP9Profile1:
case VAProfileVP9Profile2:
case VAProfileVP9Profile3:
return CODECHAL_ENCODE_MODE_VP9;
case VAProfileHEVCMain:
case VAProfileHEVCMain10:
case VAProfileHEVCMain422_10:
case VAProfileHEVCMain444:
case VAProfileHEVCMain444_10:
return CODECHAL_ENCODE_MODE_HEVC;
default:
DDI_ASSERTMESSAGE("Invalid Encode Mode");
return CODECHAL_UNSUPPORTED_MODE;
}
}
std::string MediaLibvaCapsG11::GetDecodeCodecKey(VAProfile profile)
{
switch (profile)
{
case VAProfileH264High:
case VAProfileH264Main:
case VAProfileH264ConstrainedBaseline:
return DECODE_ID_AVC;
case VAProfileMPEG2Main:
case VAProfileMPEG2Simple:
return DECODE_ID_MPEG2;
case VAProfileJPEGBaseline:
return DECODE_ID_JPEG;
case VAProfileVP8Version0_3:
return DECODE_ID_VP8;
case VAProfileVP9Profile0:
case VAProfileVP9Profile1:
case VAProfileVP9Profile2:
case VAProfileVP9Profile3:
return DECODE_ID_VP9;
case VAProfileHEVCMain:
case VAProfileHEVCMain10:
case VAProfileHEVCMain12:
case VAProfileHEVCMain422_10:
case VAProfileHEVCMain422_12:
case VAProfileHEVCMain444:
case VAProfileHEVCMain444_10:
case VAProfileHEVCMain444_12:
return DECODE_ID_HEVC_G11;
case VAProfileVC1Simple:
case VAProfileVC1Main:
case VAProfileVC1Advanced:
return DECODE_ID_VC1;
default:
DDI_ASSERTMESSAGE("Invalid Encode Mode");
return DECODE_ID_NONE;
}
}
std::string MediaLibvaCapsG11::GetEncodeCodecKey(VAProfile profile, VAEntrypoint entrypoint, uint32_t feiFunction)
{
switch (profile)
{
case VAProfileH264High:
case VAProfileH264Main:
case VAProfileH264ConstrainedBaseline:
if (IsEncFei(entrypoint, feiFunction))
{
return ENCODE_ID_AVCFEI;
}
else
{
return ENCODE_ID_AVC;
}
case VAProfileMPEG2Main:
case VAProfileMPEG2Simple:
return ENCODE_ID_MPEG2;
case VAProfileJPEGBaseline:
return ENCODE_ID_JPEG;
case VAProfileVP8Version0_3:
return ENCODE_ID_VP8;
case VAProfileVP9Profile0:
case VAProfileVP9Profile1:
case VAProfileVP9Profile2:
case VAProfileVP9Profile3:
return ENCODE_ID_VP9;
case VAProfileHEVCMain:
case VAProfileHEVCMain10:
case VAProfileHEVCMain422_10:
case VAProfileHEVCMain444:
case VAProfileHEVCMain444_10:
if (IsEncFei(entrypoint, feiFunction))
{
return ENCODE_ID_HEVCFEI;
}
else
{
return ENCODE_ID_HEVC;
}
case VAProfileNone:
if (IsEncFei(entrypoint, feiFunction))
{
return ENCODE_ID_AVCFEI;
}
else
{
return ENCODE_ID_NONE;
}
default:
return ENCODE_ID_NONE;
}
}
VAStatus MediaLibvaCapsG11::GetPlatformSpecificAttrib(VAProfile profile,
VAEntrypoint entrypoint,
VAConfigAttribType type,
uint32_t *value)
{
DDI_CHK_NULL(value, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
VAStatus status = VA_STATUS_SUCCESS;
*value = VA_ATTRIB_NOT_SUPPORTED;
switch ((int)type)
{
case VAConfigAttribEncMaxRefFrames:
{
// just VAConfigAttribEncMaxRefFrames of HEVC VME is different with platforms
if (entrypoint == VAEntrypointEncSlice && IsHevcProfile(profile))
{
*value = ENCODE_DP_HEVC_NUM_MAX_VME_L0_REF_G11 | (ENCODE_DP_HEVC_NUM_MAX_VME_L1_REF_G11 << 16);;
}
else
{
status = VA_STATUS_ERROR_INVALID_PARAMETER;
}
break;
}
case VAConfigAttribDecProcessing:
{
#ifdef _DECODE_PROCESSING_SUPPORTED
if ((IsAvcProfile(profile) || IsHevcProfile(profile)) && !(MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrDisableVDBox2SFC)))
{
*value = VA_DEC_PROCESSING;
}
else
#endif
{
*value = VA_DEC_PROCESSING_NONE;
}
break;
}
case VAConfigAttribEncIntraRefresh:
{
if(IsAvcProfile(profile) || (entrypoint == VAEntrypointEncSliceLP && IsHevcProfile(profile)))
{
*value = VA_ENC_INTRA_REFRESH_ROLLING_COLUMN | VA_ENC_INTRA_REFRESH_ROLLING_ROW;
}
else
{
*value = VA_ENC_INTRA_REFRESH_NONE;
}
break;
}
case VAConfigAttribEncROI:
{
if (entrypoint == VAEntrypointEncSliceLP)
{
status = VA_STATUS_ERROR_INVALID_PARAMETER;
}
else if (IsAvcProfile(profile))
{
VAConfigAttribValEncROI roi_attrib = {0};
roi_attrib.bits.num_roi_regions = ENCODE_DP_AVC_MAX_ROI_NUM_BRC;
roi_attrib.bits.roi_rc_priority_support = 1;
roi_attrib.bits.roi_rc_qp_delta_support = 1;
*value = roi_attrib.value;
}
else if (IsHevcProfile(profile))
{
VAConfigAttribValEncROI roi_attrib = {0};
roi_attrib.bits.num_roi_regions = CODECHAL_ENCODE_HEVC_MAX_NUM_ROI;
roi_attrib.bits.roi_rc_priority_support = 0;
roi_attrib.bits.roi_rc_qp_delta_support = 1;
*value = roi_attrib.value;
}
break;
}
case VAConfigAttribCustomRoundingControl:
{
*value = 1;
break;
}
case VAConfigAttribEncMaxSlices:
{
if (entrypoint == VAEntrypointEncSlice && IsHevcProfile(profile))
{
*value = CODECHAL_HEVC_MAX_NUM_SLICES_LVL_6;
}
else
{
*value =0;
status = VA_STATUS_ERROR_INVALID_PARAMETER;
}
break;
}
case VAConfigAttribMaxPictureWidth:
{
if(profile == VAProfileJPEGBaseline)
{
*value = ENCODE_JPEG_MAX_PIC_WIDTH;
}
else if(IsHevcProfile(profile))
{
*value = CODEC_8K_MAX_PIC_WIDTH;
}
else if(IsAvcProfile(profile) || IsVp8Profile(profile))
{
*value = CODEC_4K_MAX_PIC_WIDTH;
}
else
{
*value = CODEC_MAX_PIC_WIDTH;
}
break;
}
case VAConfigAttribMaxPictureHeight:
{
if(profile == VAProfileJPEGBaseline)
{
*value = ENCODE_JPEG_MAX_PIC_HEIGHT;
}
else if(IsHevcProfile(profile))
{
*value = CODEC_8K_MAX_PIC_HEIGHT;
}
else if(IsAvcProfile(profile) || IsVp8Profile(profile))
{
*value = CODEC_4K_MAX_PIC_HEIGHT;
}
else
{
*value = CODEC_MAX_PIC_HEIGHT;
}
break;
}
case VAConfigAttribPredictionDirection:
{
if(IsHevcProfile(profile) && (entrypoint == VAEntrypointEncSliceLP))
{
*value = VA_PREDICTION_DIRECTION_PREVIOUS | VA_PREDICTION_DIRECTION_BI_NOT_EMPTY;
}
break;
}
#if VA_CHECK_VERSION(1, 12, 0)
case VAConfigAttribEncHEVCFeatures:
{
if ((entrypoint == VAEntrypointEncSlice || entrypoint == VAEntrypointEncSliceLP) && IsHevcProfile(profile))
{
VAConfigAttribValEncHEVCFeatures hevcFeatures = {0};
hevcFeatures.bits.separate_colour_planes = VA_FEATURE_NOT_SUPPORTED;
hevcFeatures.bits.scaling_lists = VA_FEATURE_SUPPORTED;
hevcFeatures.bits.amp = VA_FEATURE_REQUIRED;
hevcFeatures.bits.sao = VA_FEATURE_SUPPORTED;
hevcFeatures.bits.pcm = VA_FEATURE_NOT_SUPPORTED;
hevcFeatures.bits.temporal_mvp = VA_FEATURE_SUPPORTED;
hevcFeatures.bits.strong_intra_smoothing = VA_FEATURE_NOT_SUPPORTED;
hevcFeatures.bits.dependent_slices = VA_FEATURE_NOT_SUPPORTED;
hevcFeatures.bits.sign_data_hiding = VA_FEATURE_NOT_SUPPORTED;
hevcFeatures.bits.constrained_intra_pred = VA_FEATURE_NOT_SUPPORTED;
hevcFeatures.bits.transform_skip = VA_FEATURE_SUPPORTED;
hevcFeatures.bits.cu_qp_delta = VA_FEATURE_REQUIRED;
hevcFeatures.bits.weighted_prediction = VA_FEATURE_SUPPORTED;
hevcFeatures.bits.transquant_bypass = VA_FEATURE_NOT_SUPPORTED;
hevcFeatures.bits.deblocking_filter_disable = VA_FEATURE_NOT_SUPPORTED;
*value = hevcFeatures.value;
}
break;
}
case VAConfigAttribEncHEVCBlockSizes:
{
if (entrypoint == VAEntrypointEncSlice && IsHevcProfile(profile))
{
VAConfigAttribValEncHEVCBlockSizes hevcBlockSize = {0};
hevcBlockSize.bits.log2_max_coding_tree_block_size_minus3 = 2;
hevcBlockSize.bits.log2_min_coding_tree_block_size_minus3 = 1;
hevcBlockSize.bits.log2_min_luma_coding_block_size_minus3 = 0;
hevcBlockSize.bits.log2_max_luma_transform_block_size_minus2 = 3;
hevcBlockSize.bits.log2_min_luma_transform_block_size_minus2 = 0;
hevcBlockSize.bits.max_max_transform_hierarchy_depth_inter = 2;
hevcBlockSize.bits.min_max_transform_hierarchy_depth_inter = 0;
hevcBlockSize.bits.max_max_transform_hierarchy_depth_intra = 2;
hevcBlockSize.bits.min_max_transform_hierarchy_depth_intra = 0;
hevcBlockSize.bits.log2_max_pcm_coding_block_size_minus3 = 0;
hevcBlockSize.bits.log2_min_pcm_coding_block_size_minus3 = 0;
*value = hevcBlockSize.value;
}
if (entrypoint == VAEntrypointEncSliceLP && IsHevcProfile(profile))
{
VAConfigAttribValEncHEVCBlockSizes hevcBlockSize = {0};
hevcBlockSize.bits.log2_max_coding_tree_block_size_minus3 = 3;
hevcBlockSize.bits.log2_min_coding_tree_block_size_minus3 = 3;
hevcBlockSize.bits.log2_min_luma_coding_block_size_minus3 = 0;
hevcBlockSize.bits.log2_max_luma_transform_block_size_minus2 = 3;
hevcBlockSize.bits.log2_min_luma_transform_block_size_minus2 = 0;
hevcBlockSize.bits.max_max_transform_hierarchy_depth_inter = 2;
hevcBlockSize.bits.min_max_transform_hierarchy_depth_inter = 0;
hevcBlockSize.bits.max_max_transform_hierarchy_depth_intra = 2;
hevcBlockSize.bits.min_max_transform_hierarchy_depth_intra = 0;
hevcBlockSize.bits.log2_max_pcm_coding_block_size_minus3 = 0;
hevcBlockSize.bits.log2_min_pcm_coding_block_size_minus3 = 0;
*value = hevcBlockSize.value;
}
break;
}
#endif
default:
status = VA_STATUS_ERROR_INVALID_PARAMETER;
break;
}
return status;
}
VAStatus MediaLibvaCapsG11::LoadHevcEncProfileEntrypoints()
{
VAStatus status = VA_STATUS_SUCCESS;
#ifdef _HEVC_ENCODE_VME_SUPPORTED
status = MediaLibvaCaps::LoadHevcEncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVC))
{
SetAttribute(VAProfileHEVCMain, VAEntrypointEncSlice, VAConfigAttribEncTileSupport, 1);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVC10bit))
{
SetAttribute(VAProfileHEVCMain10, VAEntrypointEncSlice, VAConfigAttribEncTileSupport, 1);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVC12bit))
{
SetAttribute(VAProfileHEVCMain12, VAEntrypointEncSlice, VAConfigAttribEncTileSupport, 1);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVC10bit422))
{
SetAttribute(VAProfileHEVCMain422_10, VAEntrypointEncSlice, VAConfigAttribEncTileSupport, 1);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVC12bit422))
{
SetAttribute(VAProfileHEVCMain422_12, VAEntrypointEncSlice, VAConfigAttribEncTileSupport, 1);
}
#endif
return status;
}
VAStatus MediaLibvaCapsG11::LoadHevcEncLpProfileEntrypoints()
{
VAStatus status = VA_STATUS_SUCCESS;
#ifdef _HEVC_ENCODE_VDENC_SUPPORTED
AttribMap *attributeList = nullptr;
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVCVdencMain)
|| MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVCVdencMain10)
|| MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVCVdencMain444)
|| MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVCVdencMain10bit444))
{
status = CreateEncAttributes(VAProfileHEVCMain, VAEntrypointEncSliceLP, &attributeList);
DDI_CHK_RET(status, "Failed to initialize Caps!");
(*attributeList)[VAConfigAttribEncTileSupport] = 1;
(*attributeList)[VAConfigAttribEncMaxRefFrames] = DDI_CODEC_VDENC_MAX_L0_REF_FRAMES_LDB | (DDI_CODEC_VDENC_MAX_L1_REF_FRAMES_LDB << DDI_CODEC_LEFT_SHIFT_FOR_REFLIST1);
(*attributeList)[VAConfigAttribEncDirtyRect] = CODECHAL_ENCODE_HEVC_MAX_NUM_DIRTYRECT;
(*attributeList)[VAConfigAttribEncParallelRateControl] = 0;
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVCVdencMain))
{
uint32_t configStartIdx = m_encConfigs.size();
AddEncConfig(VA_RC_CQP);
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels))
{
for (int32_t j = 3; j < 7; j++)
{
AddEncConfig(m_encRcMode[j]);
AddEncConfig(m_encRcMode[j] | VA_RC_PARALLEL);
}
}
AddProfileEntry(VAProfileHEVCMain, VAEntrypointEncSliceLP, attributeList,
configStartIdx, m_encConfigs.size() - configStartIdx);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVCVdencMain10))
{
uint32_t configStartIdx = m_encConfigs.size();
AddEncConfig(VA_RC_CQP);
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels))
{
for (int32_t j = 3; j < 7; j++)
{
AddEncConfig(m_encRcMode[j]);
AddEncConfig(m_encRcMode[j] | VA_RC_PARALLEL);
}
}
AddProfileEntry(VAProfileHEVCMain10, VAEntrypointEncSliceLP, attributeList,
configStartIdx, m_encConfigs.size() - configStartIdx);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVCVdencMain444))
{
uint32_t configStartIdx = m_encConfigs.size();
AddEncConfig(VA_RC_CQP);
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels))
{
for (int32_t j = 3; j < 7; j++)
{
AddEncConfig(m_encRcMode[j]);
AddEncConfig(m_encRcMode[j] | VA_RC_PARALLEL);
}
}
AddProfileEntry(VAProfileHEVCMain444, VAEntrypointEncSliceLP, attributeList,
configStartIdx, m_encConfigs.size() - configStartIdx);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeHEVCVdencMain10bit444))
{
uint32_t configStartIdx = m_encConfigs.size();
AddEncConfig(VA_RC_CQP);
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels))
{
for (int32_t j = 3; j < 7; j++)
{
AddEncConfig(m_encRcMode[j]);
AddEncConfig(m_encRcMode[j] | VA_RC_PARALLEL);
}
}
AddProfileEntry(VAProfileHEVCMain444_10, VAEntrypointEncSliceLP, attributeList,
configStartIdx, m_encConfigs.size() - configStartIdx);
}
#endif
return status;
}
VAStatus MediaLibvaCapsG11::LoadVp9EncProfileEntrypoints()
{
VAStatus status = VA_STATUS_SUCCESS;
#ifdef _VP9_ENCODE_VDENC_SUPPORTED
AttribMap *attributeList = nullptr;
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels) &&
(MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeVP9Vdenc) ||
MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeVP9Vdenc8bit444) ||
MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeVP9Vdenc10bit420) ||
MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeVP9Vdenc10bit444)))
{
status = CreateEncAttributes(VAProfileVP9Profile0, VAEntrypointEncSliceLP, &attributeList);
DDI_CHK_RET(status, "Failed to initialize Caps!");
(*attributeList)[VAConfigAttribMaxPictureWidth] = m_maxVp9EncWidth;
(*attributeList)[VAConfigAttribMaxPictureHeight] = m_maxVp9EncHeight;
(*attributeList)[VAConfigAttribEncDynamicScaling] = 1;
(*attributeList)[VAConfigAttribEncTileSupport] = 1;
(*attributeList)[VAConfigAttribEncRateControlExt] = m_encVp9RateControlExt.value;
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeVP9Vdenc) &&
MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels))
{
uint32_t configStartIdx = m_encConfigs.size();
AddEncConfig(VA_RC_CQP);
AddEncConfig(VA_RC_CBR);
AddEncConfig(VA_RC_VBR);
AddProfileEntry(VAProfileVP9Profile0, VAEntrypointEncSliceLP, attributeList,
configStartIdx, m_encConfigs.size() - configStartIdx);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeVP9Vdenc8bit444) &&
MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels))
{
uint32_t configStartIdx = m_encConfigs.size();
AddEncConfig(VA_RC_CQP);
AddEncConfig(VA_RC_CBR);
AddEncConfig(VA_RC_VBR);
AddProfileEntry(VAProfileVP9Profile1, VAEntrypointEncSliceLP, attributeList,
configStartIdx, m_encConfigs.size() - configStartIdx);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeVP9Vdenc10bit420) &&
MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels))
{
uint32_t configStartIdx = m_encConfigs.size();
AddEncConfig(VA_RC_CQP);
AddEncConfig(VA_RC_CBR);
AddEncConfig(VA_RC_VBR);
AddProfileEntry(VAProfileVP9Profile2, VAEntrypointEncSliceLP, attributeList,
configStartIdx, m_encConfigs.size() - configStartIdx);
}
if (MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEncodeVP9Vdenc10bit444) &&
MEDIA_IS_SKU(&(m_mediaCtx->SkuTable), FtrEnableMediaKernels))
{
uint32_t configStartIdx = m_encConfigs.size();
AddEncConfig(VA_RC_CQP);
AddEncConfig(VA_RC_CBR);
AddEncConfig(VA_RC_VBR);
AddProfileEntry(VAProfileVP9Profile3, VAEntrypointEncSliceLP, attributeList,
configStartIdx, m_encConfigs.size() - configStartIdx);
}
#endif
return status;
}
VAStatus MediaLibvaCapsG11::LoadProfileEntrypoints()
{
VAStatus status = VA_STATUS_SUCCESS;
status = LoadAvcDecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadAvcEncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadAvcEncLpProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadMpeg2DecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadMpeg2EncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVc1DecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadJpegDecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadJpegEncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadHevcDecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadHevcEncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadHevcEncLpProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVp8DecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVp8EncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVp9DecProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
status = LoadVp9EncProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
#ifdef ENABLE_KERNELS
status = LoadNoneProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize Caps!");
#endif
status = m_CapsCp->LoadCpProfileEntrypoints();
DDI_CHK_RET(status, "Failed to initialize CP Caps!");
return status;
}
VAStatus MediaLibvaCapsG11::CheckEncodeResolution(
VAProfile profile,
uint32_t width,
uint32_t height)
{
switch (profile)
{
case VAProfileJPEGBaseline:
if (width > m_encJpegMaxWidth
|| width < m_encJpegMinWidth
|| height > m_encJpegMaxHeight
|| height < m_encJpegMinHeight)
{
return VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED;
}
break;
case VAProfileMPEG2Simple:
case VAProfileMPEG2Main:
if( width > CODEC_MAX_PIC_WIDTH
|| width < m_encMinWidth
|| height > CODEC_MAX_PIC_HEIGHT
|| height < m_encMinHeight)
{
return VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED;
}
break;
case VAProfileHEVCMain:
case VAProfileHEVCMain10:
case VAProfileHEVCMain422_10:
case VAProfileHEVCMain444:
case VAProfileHEVCMain444_10:
if (width > m_maxHevcEncWidth
|| width < (m_vdencActive ? m_hevcVDEncMinWidth : m_encMinWidth)
|| height > m_maxHevcEncHeight
|| height < (m_vdencActive ? m_hevcVDEncMinHeight : m_encMinHeight))
{
return VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED;
}
break;
case VAProfileVP9Profile0:
case VAProfileVP9Profile1:
case VAProfileVP9Profile2:
case VAProfileVP9Profile3:
if ((width > m_maxVp9EncWidth) ||
(width < m_minVp9EncWidth) ||
(height > m_maxVp9EncHeight) ||
(height < m_minVp9EncHeight) )
{
return VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED;
}
break;
default:
if (width > m_encMax4kWidth
|| width < m_encMinWidth
|| height > m_encMax4kHeight
|| height < m_encMinHeight)
{
return VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED;
}
break;
}
return VA_STATUS_SUCCESS;
}
VAStatus MediaLibvaCapsG11::CheckDecodeResolution(
int32_t codecMode,
VAProfile profile,
uint32_t width,
uint32_t height)
{
uint32_t maxWidth, maxHeight;
switch (codecMode)
{
case CODECHAL_DECODE_MODE_MPEG2VLD:
maxWidth = m_decMpeg2MaxWidth;
maxHeight = m_decMpeg2MaxHeight;
break;
case CODECHAL_DECODE_MODE_VC1VLD:
maxWidth = m_decVc1MaxWidth;
maxHeight = m_decVc1MaxHeight;
break;
case CODECHAL_DECODE_MODE_JPEG:
maxWidth = m_decJpegMaxWidth;
maxHeight = m_decJpegMaxHeight;
break;
case CODECHAL_DECODE_MODE_HEVCVLD:
maxWidth = m_decHevcMaxWidth;
maxHeight = m_decHevcMaxHeight;
break;
case CODECHAL_DECODE_MODE_VP9VLD:
maxWidth = m_decVp9MaxWidth;
maxHeight = m_decVp9MaxHeight;
break;
default:
maxWidth = m_decDefaultMaxWidth;
maxHeight = m_decDefaultMaxHeight;
break;
}
uint32_t alignedHeight;
if (profile == VAProfileVC1Advanced)
{
alignedHeight = MOS_ALIGN_CEIL(height,32);
}
else
{
alignedHeight = height;
}
if (width > maxWidth || alignedHeight > maxHeight)
{
return VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED;
}
else
{
return VA_STATUS_SUCCESS;
}
}
VAStatus MediaLibvaCapsG11::QueryAVCROIMaxNum(uint32_t rcMode, bool isVdenc, uint32_t *maxNum, bool *isRoiInDeltaQP)
{
DDI_CHK_NULL(maxNum, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
DDI_CHK_NULL(isRoiInDeltaQP, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
if(isVdenc)
{
*maxNum = ENCODE_VDENC_AVC_MAX_ROI_NUMBER;
}
else
{
switch (rcMode)
{
case VA_RC_CQP:
*maxNum = ENCODE_DP_AVC_MAX_ROI_NUMBER;
break;
default:
*maxNum = ENCODE_DP_AVC_MAX_ROI_NUM_BRC;
break;
}
}
*isRoiInDeltaQP = true;
return VA_STATUS_SUCCESS;
}
GMM_RESOURCE_FORMAT MediaLibvaCapsG11::ConvertMediaFmtToGmmFmt(
DDI_MEDIA_FORMAT format)
{
switch (format)
{
case Media_Format_X8R8G8B8 : return GMM_FORMAT_B8G8R8X8_UNORM_TYPE;
case Media_Format_A8R8G8B8 : return GMM_FORMAT_B8G8R8A8_UNORM_TYPE;
case Media_Format_X8B8G8R8 : return GMM_FORMAT_R8G8B8X8_UNORM_TYPE;
case Media_Format_A8B8G8R8 : return GMM_FORMAT_R8G8B8A8_UNORM_TYPE;
case Media_Format_R8G8B8A8 : return GMM_FORMAT_R8G8B8A8_UNORM_TYPE;
case Media_Format_R5G6B5 : return GMM_FORMAT_B5G6R5_UNORM_TYPE;
case Media_Format_R8G8B8 : return GMM_FORMAT_R8G8B8_UNORM;
case Media_Format_RGBP : return GMM_FORMAT_RGBP;
case Media_Format_BGRP : return GMM_FORMAT_BGRP;
case Media_Format_NV12 : return GMM_FORMAT_NV12_TYPE;
case Media_Format_NV21 : return GMM_FORMAT_NV21_TYPE;
case Media_Format_YUY2 : return GMM_FORMAT_YUY2;
case Media_Format_UYVY : return GMM_FORMAT_UYVY;
case Media_Format_YV12 : return GMM_FORMAT_YV12_TYPE;
case Media_Format_IYUV : return GMM_FORMAT_IYUV_TYPE;
case Media_Format_I420 : return GMM_FORMAT_I420_TYPE;
case Media_Format_444P : return GMM_FORMAT_MFX_JPEG_YUV444_TYPE;
case Media_Format_422H : return GMM_FORMAT_MFX_JPEG_YUV422H_TYPE;
case Media_Format_411P : return GMM_FORMAT_MFX_JPEG_YUV411_TYPE;
case Media_Format_422V : return GMM_FORMAT_MFX_JPEG_YUV422V_TYPE;
case Media_Format_IMC3 : return GMM_FORMAT_IMC3_TYPE;
case Media_Format_400P : return GMM_FORMAT_GENERIC_8BIT;
case Media_Format_Buffer : return GMM_FORMAT_RENDER_8BIT;
case Media_Format_P010 : return GMM_FORMAT_P010_TYPE;
case Media_Format_P012 : return GMM_FORMAT_P016_TYPE;
case Media_Format_P016 : return GMM_FORMAT_P016_TYPE;
case Media_Format_R10G10B10A2: return GMM_FORMAT_R10G10B10A2_UNORM_TYPE;
case Media_Format_B10G10R10A2: return GMM_FORMAT_B10G10R10A2_UNORM_TYPE;
case Media_Format_R10G10B10X2: return GMM_FORMAT_R10G10B10A2_UNORM_TYPE;
case Media_Format_B10G10R10X2: return GMM_FORMAT_B10G10R10A2_UNORM_TYPE;
case Media_Format_Y210 : return GMM_FORMAT_Y210_TYPE;
#if VA_CHECK_VERSION(1, 9, 0)
case Media_Format_Y212 : return GMM_FORMAT_Y216_TYPE;
#endif
case Media_Format_Y216 : return GMM_FORMAT_Y216_TYPE;
case Media_Format_AYUV : return GMM_FORMAT_AYUV_TYPE;
#if VA_CHECK_VERSION(1, 13, 0)
case Media_Format_XYUV : return GMM_FORMAT_AYUV_TYPE;
#endif
case Media_Format_Y410 : return GMM_FORMAT_Y410_TYPE;
#if VA_CHECK_VERSION(1, 9, 0)
case Media_Format_Y412 : return GMM_FORMAT_Y416_TYPE;
#endif
case Media_Format_Y416 : return GMM_FORMAT_Y416_TYPE;
default : return GMM_FORMAT_INVALID;
}
}
VAStatus MediaLibvaCapsG11::QuerySurfaceAttributes(
VAConfigID configId,
VASurfaceAttrib *attribList,
uint32_t *numAttribs)
{
DDI_CHK_NULL(numAttribs, "Null num_attribs", VA_STATUS_ERROR_INVALID_PARAMETER);
if (attribList == nullptr)
{
*numAttribs = DDI_CODEC_GEN_MAX_SURFACE_ATTRIBUTES;
return VA_STATUS_SUCCESS;
}
int32_t profileTableIdx = -1;
VAEntrypoint entrypoint;
VAProfile profile;
VAStatus status = GetProfileEntrypointFromConfigId(configId, &profile, &entrypoint, &profileTableIdx);
DDI_CHK_RET(status, "Invalid config_id!");
if (profileTableIdx < 0 || profileTableIdx >= m_profileEntryCount)
{
return VA_STATUS_ERROR_INVALID_CONFIG;
}
VASurfaceAttrib *attribs = (VASurfaceAttrib *)MOS_AllocAndZeroMemory(DDI_CODEC_GEN_MAX_SURFACE_ATTRIBUTES * sizeof(*attribs));
if (attribs == nullptr)
{
return VA_STATUS_ERROR_ALLOCATION_FAILED;
}
int32_t i = 0;
if (entrypoint == VAEntrypointVideoProc) /* vpp */
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC('N', 'V', '1', '2');
i++;
attribs[i].type = VASurfaceAttribMaxWidth;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VP_MAX_PIC_WIDTH;
i++;
attribs[i].type = VASurfaceAttribMaxHeight;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VP_MAX_PIC_HEIGHT;
i++;
attribs[i].type = VASurfaceAttribMinWidth;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VP_MIN_PIC_WIDTH;
i++;
attribs[i].type = VASurfaceAttribMinHeight;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VP_MIN_PIC_HEIGHT;
i++;
for (int32_t j = 0; j < m_numVpSurfaceAttr && m_vpSurfaceAttr[j]; j++)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = m_vpSurfaceAttr[j];
i++;
}
attribs[i].type = VASurfaceAttribMemoryType;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_SURFACE_ATTRIB_MEM_TYPE_VA |
VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR |
VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM |
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME |
#if VA_CHECK_VERSION(1, 21, 0)
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_3 |
#endif
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2;
i++;
attribs[i].type = VASurfaceAttribExternalBufferDescriptor;
attribs[i].value.type = VAGenericValueTypePointer;
attribs[i].flags = VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.p = nullptr; /* ignore */
i++;
}
else if (entrypoint == VAEntrypointVLD) /* vld */
{
if (profile == VAProfileHEVCMain10 || profile == VAProfileVP9Profile2)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_P010;
i++;
if(profile == VAProfileVP9Profile2)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_P012;
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_P016;
i++;
}
}
else if(profile == VAProfileHEVCMain12)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_P012;
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_P016;
i++;
}
else if(profile == VAProfileHEVCMain422_10)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_YUY2;
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y210;
i++;
}
else if(profile == VAProfileHEVCMain422_12)
{
//hevc rext: Y216 12/16bit 422
#if VA_CHECK_VERSION(1, 9, 0)
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y212;
i++;
#endif
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y216;
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_P012;
i++;
}
else if(profile == VAProfileHEVCMain444 || profile == VAProfileVP9Profile1)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_AYUV;
i++;
#if VA_CHECK_VERSION(1, 13, 0)
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_XYUV;
i++;
#endif
}
else if(profile == VAProfileHEVCMain444_10 || profile == VAProfileVP9Profile3)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y410;
i++;
if(profile == VAProfileVP9Profile3)
{
#if VA_CHECK_VERSION(1, 9, 0)
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y412;
i++;
#endif
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y416;
i++;
}
}
else if(profile == VAProfileHEVCMain444_12)
{
#if VA_CHECK_VERSION(1, 9, 0)
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y412;
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y212;
i++;
#endif
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y416;
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_P012;
i++;
}
else if (profile == VAProfileJPEGBaseline)
{
for (int32_t j = 0; j < m_numJpegSurfaceAttr; j++)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = m_jpegSurfaceAttr[j];
i++;
}
}
else
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC('N', 'V', '1', '2');
i++;
}
auto maxWidth = m_decDefaultMaxWidth;
auto maxHeight = m_decDefaultMaxHeight;
if(IsMpeg2Profile(profile))
{
maxWidth = m_decMpeg2MaxWidth;
maxHeight = m_decMpeg2MaxHeight;
}
else if(IsHevcProfile(profile))
{
maxWidth = m_decHevcMaxWidth;
maxHeight = m_decHevcMaxHeight;
}
else if(IsVc1Profile(profile))
{
maxWidth = m_decVc1MaxWidth;
maxHeight = m_decVc1MaxHeight;
}
else if(IsJpegProfile(profile))
{
maxWidth = m_decJpegMaxWidth;
maxHeight = m_decJpegMaxHeight;
}
else if(IsVp9Profile(profile))
{
maxWidth = m_decVp9MaxWidth;
maxHeight = m_decVp9MaxHeight;
}
attribs[i].type = VASurfaceAttribMaxWidth;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE;
attribs[i].value.value.i = maxWidth;
i++;
attribs[i].type = VASurfaceAttribMaxHeight;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE;
attribs[i].value.value.i = maxHeight;
i++;
attribs[i].type = VASurfaceAttribMemoryType;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_SURFACE_ATTRIB_MEM_TYPE_VA |
VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR |
VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM |
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME |
#if VA_CHECK_VERSION(1, 21, 0)
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_3 |
#endif
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2;
i++;
}
else if(entrypoint == VAEntrypointEncSlice || entrypoint == VAEntrypointEncSliceLP || entrypoint == VAEntrypointEncPicture || entrypoint == VAEntrypointFEI)
{
if (profile == VAProfileHEVCMain10 || profile == VAProfileVP9Profile2)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC('P', '0', '1', '0');
i++;
}
else if(profile == VAProfileHEVCMain444)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_AYUV;
i++;
#if VA_CHECK_VERSION(1, 13, 0)
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_XYUV;
i++;
#endif
}
else if(profile == VAProfileHEVCMain444_10)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y410;
i++;
}
else if(profile == VAProfileHEVCMain422_10)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_YUY2;
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC_Y210;
i++;
}
else if (profile == VAProfileVP9Profile1)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC('A', 'Y', 'U', 'V');
i++;
}
else if (profile == VAProfileVP9Profile3)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC('Y', '4', '1', '6');
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC('A', 'R', 'G', 'B');
i++;
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC('A', 'B', 'G', 'R');
i++;
}
else if (profile == VAProfileJPEGBaseline)
{
for (int32_t j = 0; j < m_numJpegEncSurfaceAttr; j++)
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = m_jpegEncSurfaceAttr[j];
i++;
}
}
else
{
attribs[i].type = VASurfaceAttribPixelFormat;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_FOURCC('N', 'V', '1', '2');
i++;
}
attribs[i].type = VASurfaceAttribMaxWidth;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE;
attribs[i].value.value.i = CODEC_MAX_PIC_WIDTH;
if(profile == VAProfileJPEGBaseline)
{
attribs[i].value.value.i = ENCODE_JPEG_MAX_PIC_WIDTH;
}
else if(IsHevcProfile(profile))
{
attribs[i].value.value.i = CODEC_8K_MAX_PIC_WIDTH;
}
else if(IsAvcProfile(profile) || IsVp8Profile(profile))
{
attribs[i].value.value.i = CODEC_4K_MAX_PIC_WIDTH;
}
else if (IsVp9Profile(profile))
{
attribs[i].value.value.i = m_maxVp9EncWidth;
}
i++;
attribs[i].type = VASurfaceAttribMaxHeight;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE;
attribs[i].value.value.i = CODEC_MAX_PIC_HEIGHT;
if(profile == VAProfileJPEGBaseline)
{
attribs[i].value.value.i = ENCODE_JPEG_MAX_PIC_HEIGHT;
}
else if(IsHevcProfile(profile))
{
attribs[i].value.value.i = CODEC_8K_MAX_PIC_HEIGHT;
}
else if(IsAvcProfile(profile) || IsVp8Profile(profile))
{
attribs[i].value.value.i = CODEC_4K_MAX_PIC_HEIGHT;
}
else if (IsVp9Profile(profile))
{
attribs[i].value.value.i = m_maxVp9EncHeight;
}
i++;
attribs[i].type = VASurfaceAttribMinWidth;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE;
attribs[i].value.value.i = m_encMinWidth;
if(IsHevcProfile(profile))
{
attribs[i].value.value.i = m_vdencActive ? m_hevcVDEncMinWidth : m_encMinWidth;
}
else if (IsVp9Profile(profile))
{
attribs[i].value.value.i = m_vdencActive ? m_minVp9EncWidth : m_encMinWidth;
}
else if (profile == VAProfileJPEGBaseline)
{
attribs[i].value.value.i = m_encJpegMinWidth;
}
i++;
attribs[i].type = VASurfaceAttribMinHeight;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE;
attribs[i].value.value.i = m_encMinHeight;
if(IsHevcProfile(profile))
{
attribs[i].value.value.i = m_vdencActive ? m_hevcVDEncMinHeight : m_encMinHeight;
}
else if (IsVp9Profile(profile))
{
attribs[i].value.value.i = m_vdencActive ? m_minVp9EncHeight : m_encMinHeight;
}
else if (profile == VAProfileJPEGBaseline)
{
attribs[i].value.value.i = m_encJpegMinHeight;
}
i++;
attribs[i].type = VASurfaceAttribMemoryType;
attribs[i].value.type = VAGenericValueTypeInteger;
attribs[i].flags = VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE;
attribs[i].value.value.i = VA_SURFACE_ATTRIB_MEM_TYPE_VA |
VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR |
VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM |
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME |
#if VA_CHECK_VERSION(1, 21, 0)
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_3 |
#endif
VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2;
i++;
}
else
{
MOS_FreeMemory(attribs);
return VA_STATUS_ERROR_UNIMPLEMENTED;
}
if (i > *numAttribs)
{
*numAttribs = i;
MOS_FreeMemory(attribs);
return VA_STATUS_ERROR_MAX_NUM_EXCEEDED;
}
*numAttribs = i;
MOS_SecureMemcpy(attribList, i * sizeof(*attribs), attribs, i * sizeof(*attribs));
MOS_FreeMemory(attribs);
return status;
}
VAStatus MediaLibvaCapsG11::CreateEncAttributes(
VAProfile profile,
VAEntrypoint entrypoint,
AttribMap **attributeList)
{
VAStatus status = MediaLibvaCaps::CreateEncAttributes(profile, entrypoint, attributeList);
DDI_CHK_RET(status, "Failed to create base encode attributes");
auto attribList = *attributeList;
DDI_CHK_NULL(attribList, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
#if VA_CHECK_VERSION(1, 12, 0)
if (IsHevcProfile(profile)) {
VAConfigAttrib attrib;
attrib.type = VAConfigAttribEncHEVCFeatures;
GetPlatformSpecificAttrib(profile, entrypoint,
attrib.type, &attrib.value);
(*attribList)[attrib.type] = attrib.value;
attrib.type = VAConfigAttribEncHEVCBlockSizes;
GetPlatformSpecificAttrib(profile, entrypoint,
attrib.type, &attrib.value);
(*attribList)[attrib.type] = attrib.value;
}
#endif
return status;
}
VAStatus MediaLibvaCapsG11::CreateDecAttributes(
VAProfile profile,
VAEntrypoint entrypoint,
AttribMap **attributeList)
{
VAStatus status = MediaLibvaCaps::CreateDecAttributes(profile, entrypoint, attributeList);
DDI_CHK_RET(status, "Failed to initialize Caps!");
auto attribList = *attributeList;
DDI_CHK_NULL(attribList, "Null pointer", VA_STATUS_ERROR_INVALID_PARAMETER);
VAConfigAttrib attrib;
attrib.type = VAConfigAttribRTFormat;
if(profile == VAProfileHEVCMain444)
{
attrib.value = VA_RT_FORMAT_YUV420 | VA_RT_FORMAT_YUV422 | VA_RT_FORMAT_YUV400 | VA_RT_FORMAT_YUV444;
(*attribList)[attrib.type] = attrib.value;
}
else if(profile == VAProfileHEVCMain444_10)
{
attrib.value = VA_RT_FORMAT_YUV420 | VA_RT_FORMAT_YUV422 | VA_RT_FORMAT_YUV400 | VA_RT_FORMAT_YUV444;
attrib.value |= VA_RT_FORMAT_YUV420_10 | VA_RT_FORMAT_YUV422_10 | VA_RT_FORMAT_YUV444_10;
(*attribList)[attrib.type] = attrib.value;
} else if(profile == VAProfileNone)
{
attrib.value = VA_RT_FORMAT_YUV420 | VA_RT_FORMAT_YUV422 | VA_RT_FORMAT_RGB32 | VA_RT_FORMAT_YUV444;
(*attribList)[attrib.type] = attrib.value;
}
return status;
}
extern template class MediaLibvaCapsFactory<MediaLibvaCaps, DDI_MEDIA_CONTEXT>;
static bool iclRegistered = MediaLibvaCapsFactory<MediaLibvaCaps, DDI_MEDIA_CONTEXT>::
RegisterCaps<MediaLibvaCapsG11>((uint32_t)IGFX_ICELAKE);
static bool icllpRegistered = MediaLibvaCapsFactory<MediaLibvaCaps, DDI_MEDIA_CONTEXT>::
RegisterCaps<MediaLibvaCapsG11>((uint32_t)IGFX_ICELAKE_LP);
static bool ehlRegistered = MediaLibvaCapsFactory<MediaLibvaCaps, DDI_MEDIA_CONTEXT>::
RegisterCaps<MediaLibvaCapsG11>((uint32_t)IGFX_ELKHARTLAKE);
|