1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648
|
/*
* Copyright (c) 2009-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.h
//! \brief libva(and its extension) interface head file
//!
#ifndef __MEDIA_LIBVA_H__
#define __MEDIA_LIBVA_H__
#include <va/va.h>
#include <va/va_backend.h>
#include "va/va_dec_vp8.h"
#include <va/va_enc_h264.h>
#include <va/va_enc_mpeg2.h>
#include <va/va_enc_jpeg.h>
#include <va/va_dec_jpeg.h>
#include <va/va_enc_vp8.h>
#include <va/va_dec_vp9.h>
#include <va/va_enc_hevc.h>
#include <va/va_vpp.h>
#include <va/va_backend_vpp.h>
#if VA_CHECK_VERSION(1,11,0)
#include <va/va_backend_prot.h>
#endif
#ifdef ANDROID
#include <va/va_android.h>
#if VA_MAJOR_VERSION < 1
#include "va_internal_android.h"
#endif
#endif // ANDROID
#include <va/va_dec_hevc.h>
#include "codechal.h"
#include "codechal_decoder.h"
#include "codechal_encoder_base.h"
#include "media_libva_common.h"
#include "ddi_codec_def_specific.h"
#define DDI_CODEC_GEN_MAX_PROFILES 31 // the number of va profiles, some profiles in va_private.h
#define DDI_CODEC_GEN_MAX_ENTRYPOINTS 7 // VAEntrypointVLD, VAEntrypointEncSlice, VAEntrypointEncSliceLP, VAEntrypointVideoProc
#define DDI_CODEC_GEN_MAX_IMAGE_FORMATS 2 // NV12 and P010
#define DDI_CODEC_GEN_MAX_SUBPIC_FORMATS 4 // no sub-pic blending support, still set to 4 for further implementation
#if VA_MAJOR_VERSION < 1
#define DDI_MEDIA_GEN_MAX_DISPLAY_ATTRIBUTES 4
#else
#if VA_CHECK_VERSION(1, 15, 0)
#define DDI_MEDIA_GEN_MAX_DISPLAY_ATTRIBUTES 2
#else
#define DDI_MEDIA_GEN_MAX_DISPLAY_ATTRIBUTES 1
#endif
#endif
#define DDI_CODEC_GEN_MAX_ATTRIBS_TYPE 4 //VAConfigAttribRTFormat, VAConfigAttribRateControl, VAConfigAttribDecSliceMode, VAConfigAttribEncPackedHeaders
#define DDI_CODEC_GEN_STR_VENDOR "Intel iHD driver for Intel(R) Gen Graphics - " MEDIA_VERSION " (" MEDIA_VERSION_DETAILS ")"
#define DDI_CODEC_GET_VTABLE(ctx) (ctx->vtable)
#define DDI_CODEC_GET_VTABLE_VPP(ctx) (ctx->vtable_vpp)
#if VA_CHECK_VERSION(1,11,0)
#define DDI_CODEC_GET_VTABLE_PROT(ctx) (ctx->vtable_prot)
#endif
#define DDI_CODEC_GET_VTABLE_TPI(ctx) (ctx->vtable_tpi)
#define DDI_CODEC_BATCH_BUFFER_SIZE 0x80000
/* Number of supported input color formats */
#define DDI_VP_NUM_INPUT_COLOR_STD 6
/* Number of supported output color formats */
#define DDI_VP_NUM_OUT_COLOR_STD 6
#define DDI_CP_ENCRYPT_TYPES_NUM 5 // CP encryption types number
// Enable unlimited output buffer, delete this build option (remove multiple output buffer) when it is verified
#define ENABLE_ENC_UNLIMITED_OUTPUT
// Max timeout for i915 bo_wait
#define DDI_BO_MAX_TIMEOUT (~(0x8000000000000000))
// Negative value for infinite timeout for i915 bo_wait
#define DDI_BO_INFINITE_TIMEOUT (-1)
//!
//! \brief Get Device FD
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [out] pDevicefd
//! device fd
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_GetDeviceFD (
VADriverContextP ctx,
int32_t *pDevicefd
);
//!
//! \brief Load DDI function
//!
//! \param [in] ctx
//! Pointer to VA driver context
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_LoadFuncion (VADriverContextP ctx);
//!
//! \brief Initialize
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [out] major_version
//! Major version
//! \param [out] minor_version
//! Minor version
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia__Initialize (
VADriverContextP ctx,
int32_t *major_version, /* out */
int32_t *minor_version /* out */
);
//!
//! \brief Initialize Media Context
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] devicefd
//! Devoce fd
//! \param [out] major_version
//! Major version
//! \param [out] minor_version
//! Minor version
//! \param [in] apoDdiEnabled
//! If apo ddi enabled
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_InitMediaContext (
VADriverContextP ctx,
int32_t devicefd,
int32_t *major_version, /* out */
int32_t *minor_version, /* out */
bool &apoDdiEnabled
);
//!
//! \brief clean up casp/caps next/complist/hwinfo
//!
//! \param [in] mediaCtx
//! Pointer to media context
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_CleanUp(PDDI_MEDIA_CONTEXT mediaCtx);
//!
//! \brief clean up all library internal resources
//!
//! \param [in] ctx
//! Pointer to VA driver context
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_Terminate(VADriverContextP ctx);
//!
//! \brief Query supported entrypoints for a given profile
//! \details The caller must provide an "entrypoint_list" array that can hold at
//! least vaMaxNumEntrypoints() entries. The actual number of entrypoints
//! returned in "entrypoint_list" is returned in "num_entrypoints".
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] profile
//! VA profile
//! \param [out] entrypoint_list
//! VA entrypoints
//! \param [out] num_entrypoints
//! Number of entrypoints
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryConfigEntrypoints (
VADriverContextP ctx,
VAProfile profile,
VAEntrypoint *entrypoint_list,
int32_t *num_entrypoints
);
//!
//! \brief Query supported profiles
//! \details The caller must provide a "profile_list" array that can hold at
//! least vaMaxNumProfile() entries. The actual number of profiles
//! returned in "profile_list" is returned in "num_profile".
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [out] profile_list
//! VA profiles
//! \param [out] num_profiles
//! Number of profiles
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryConfigProfiles (
VADriverContextP ctx,
VAProfile *profile_list,
int32_t *num_profiles
);
//!
//! \brief Query all attributes for a given configuration
//! \details The profile of the configuration is returned in "profile"
//! The entrypoint of the configuration is returned in "entrypoint"
//! The caller must provide an "attrib_list" array that can hold at least
//! vaMaxNumConfigAttributes() entries. The actual number of attributes
//! returned in "attrib_list" is returned in "num_attribs"
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] config_id
//! VA config id
//! \param [out] profile
//! VA profile of configuration
//! \param [out] entrypoint
//! VA entrypoint of configuration
//! \param [out] attrib_list
//! VA attrib list
//! \param [out] num_attribs
//! Number of attribs
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryConfigAttributes (
VADriverContextP ctx,
VAConfigID config_id,
VAProfile *profile,
VAEntrypoint *entrypoint,
VAConfigAttrib *attrib_list,
int32_t *num_attribs
);
//!
//! \brief Create a configuration for the encode/decode/vp pipeline
//! \details it passes in the attribute list that specifies the attributes it cares
//! about, with the rest taking default values.
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] profile
//! VA profile of configuration
//! \param [in] entrypoint
//! VA entrypoint of configuration
//! \param [out] attrib_list
//! VA attrib list
//! \param [out] num_attribs
//! Number of attribs
//! \param [out] config_id
//! VA config id
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_CreateConfig (
VADriverContextP ctx,
VAProfile profile,
VAEntrypoint entrypoint,
VAConfigAttrib *attrib_list,
int32_t num_attribs,
VAConfigID *config_id
);
//!
//! \brief Free resources associated with a given config
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] config_id
//! VA config id
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_DestroyConfig (
VADriverContextP ctx,
VAConfigID config_id
);
//!
//! \brief Get attributes for a given profile/entrypoint pair
//! \details The caller must provide an "attrib_list" with all attributes to be
//! retrieved. Upon return, the attributes in "attrib_list" have been
//! updated with their value. Unknown attributes or attributes that are
//! not supported for the given profile/entrypoint pair will have their
//! value set to VA_ATTRIB_NOT_SUPPORTED
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] profile
//! VA profile of configuration
//! \param [in] entrypoint
//! VA entrypoint of configuration
//! \param [out] attrib_list
//! VA attrib list
//! \param [in] num_attribs
//! Number of attribs
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_GetConfigAttributes (
VADriverContextP ctx,
VAProfile profile,
VAEntrypoint entrypoint,
VAConfigAttrib *attrib_list,
int32_t num_attribs
);
//!
//! \brief Create surfaces
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] width
//! Surface width
//! \param [in] height
//! Surface height
//! \param [in] format
//! Surface format
//! \param [in] num_surfaces
//! Number of surfaces
//! \param [out] surfaces
//! VA created surfaces
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_CreateSurfaces (
VADriverContextP ctx,
int32_t width,
int32_t height,
int32_t format,
int32_t num_surfaces,
VASurfaceID *surfaces
);
//!
//! \brief Destroy resources associated with surfaces.
//! \details Surfaces can only be destroyed after the context associated has been
//! destroyed
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] surfaces
//! VA array of surfaces to destroy
//! \param [in] num_surfaces
//! Number of surfaces in the array to be destroyed
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_DestroySurfaces (
VADriverContextP ctx,
VASurfaceID *surfaces,
int32_t num_surfaces
);
//!
//! \brief Create surfaces2
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] format
//! Surface format
//! \param [in] width
//! Surface width
//! \param [in] height
//! Surface height
//! \param [out] surfaces
//! VA created surfaces
//! \param [in] num_surfaces
//! Number of surfaces
//! \param [out] attrib_list
//! VA attrib list
//! \param [in] num_attribs
//! Number of attribs
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_CreateSurfaces2 (
VADriverContextP ctx,
uint32_t format,
uint32_t width,
uint32_t height,
VASurfaceID *surfaces,
uint32_t num_surfaces,
VASurfaceAttrib *attrib_list,
uint32_t num_attribs
);
//!
//! \brief Create context
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] config_id
//! VA config id
//! \param [in] picture_width
//! Picture width
//! \param [in] picture_height
//! Picture height
//! \param [out] flag
//! Create flag
//! \param [in] render_targets
//! VA render traget
//! \param [in] num_render_targets
//! Number of render targets
//! \param [out] context
//! VA created context
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_CreateContext (
VADriverContextP ctx,
VAConfigID config_id,
int32_t picture_width,
int32_t picture_height,
int32_t flag,
VASurfaceID *render_targets,
int32_t num_render_targets,
VAContextID *context
);
//!
//! \brief Destroy context
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] context
//! VA context to destroy
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_DestroyContext (
VADriverContextP ctx,
VAContextID context
);
//!
//! \brief Create buffer
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] context
//! VA context id
//! \param [in] type
//! VA buffer type
//! \param [in] size
//! Buffer size
//! \param [out] num_elements
//! Number of elements
//! \param [in] data
//! Buffer data
//! \param [out] bufId
//! VA buffer id
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_CreateBuffer (
VADriverContextP ctx,
VAContextID context,
VABufferType type,
uint32_t size,
uint32_t num_elements,
void *data,
VABufferID *bufId
);
//!
//! \brief Convey to the server how many valid elements are in the buffer
//! \details e.g. if multiple slice parameters are being held in a single buffer,
//! this will communicate to the server the number of slice parameters
//! that are valid in the buffer.
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA buffer id
//! \param [in] num_elements
//! Number of elements in buffer
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_BufferSetNumElements (
VADriverContextP ctx,
VABufferID buf_id,
uint32_t num_elements
);
//! \brief Map buffer
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA buffer ID
//! \param [out] pbuf
//! Pointer to buffer
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_MapBuffer (
VADriverContextP ctx,
VABufferID buf_id,
void **pbuf
);
//! \brief Unmap buffer
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA buffer ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_UnmapBuffer (
VADriverContextP ctx,
VABufferID buf_id
);
//!
//! \brief Destroy buffer
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buffer_id
//! VA buffer ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_DestroyBuffer (
VADriverContextP ctx,
VABufferID buffer_id
);
//!
//! \brief Get ready to decode a picture to a target surface
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] context
//! VA context id
//! \param [in] render_target
//! VA render target surface
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_BeginPicture (
VADriverContextP ctx,
VAContextID context,
VASurfaceID render_target
);
//!
//! \brief Send decode buffers to the server
//! \details Buffers are automatically destroyed afterwards
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] context
//! VA buffer id
//! \param [in] buffer
//! Pointer to VA buffer id
//! \param [in] num_buffers
//! number of buffers
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_RenderPicture (
VADriverContextP ctx,
VAContextID context,
VABufferID *buffers,
int32_t num_buffers
);
//!
//! \brief Make the end of rendering for a picture
//! \details The server should start processing all pending operations for this
//! surface. This call is non-blocking. The client can start another
//! Begin/Render/End sequence on a different render target
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] context
//! VA buffer id
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_EndPicture (
VADriverContextP ctx,
VAContextID context
);
//!
//! \brief Sync surface
//! \details This function blocks until all pending operations on the render target
//! have been completed. Upon return it is safe to use the render target for a
//! different picture
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] render_target
//! VA render target surface id
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_SyncSurface (
VADriverContextP ctx,
VASurfaceID render_target
);
#if VA_CHECK_VERSION(1, 9, 0)
//!
//! \brief Sync surface
//! \details This function blocks until all pending operations on the render target
//! have been completed. Upon return it is safe to use the render target for a
//! different picture
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] surface_id
//! VA render target surface id
//! \param [in] timeout_ns
//! time out period
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_SyncSurface2 (
VADriverContextP ctx,
VASurfaceID surface_id,
uint64_t timeout_ns
);
//!
//! \brief Sync buffer
//! \details This function blocks until all pending operations on the render target
//! have been completed. Upon return it is safe to use the render target for a
//! different picture
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA buffer id
//! \param [in] timeout_ns
//! time out period
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_SyncBuffer (
VADriverContextP ctx,
VABufferID buf_id,
uint64_t timeout_ns
);
#endif
//!
//! \brief Query surface status
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] render_target
//! VA surface ID
//! \param [out] status
//! VA surface status
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QuerySurfaceStatus (
VADriverContextP ctx,
VASurfaceID render_target,
VASurfaceStatus *status
);
//!
//! \brief Report MB error info
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] render_target
//! VA surface ID
//! \param [in] error_status
//! Error status
//! \param [out] error_info
//! Information on error
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QuerySurfaceError (
VADriverContextP ctx,
VASurfaceID render_target,
VAStatus error_status,
void **error_info /*out*/
);
//!
//! \brief Query surface attributes for the supplied config
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] config_id
//! VA config id
//! \param [out] attrib_list
//! VA surface attrib
//! \param [out] num_attribs
//! Number of attribs
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QuerySurfaceAttributes (
VADriverContextP ctx,
VAConfigID config_id,
VASurfaceAttrib *attrib_list,
uint32_t *num_attribs
);
//!
//! \brief Put surface
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] surface
//! VA surface ID
//! \param [in] draw
//! Drawable of window system
//! \param [in] srcx
//! X offset of src image
//! \param [in] srcy
//! Y offset of src image
//! \param [in] srcw
//! Width offset of src image
//! \param [in] srch
//! Height offset of src image
//! \param [in] destx
//! X offset of dst image
//! \param [in] desty
//! Y offset of dst image
//! \param [in] destw
//! Width offset of dst image
//! \param [in] desth
//! Height offset of dst image
//! \param [in] cliprects
//! Client supplied clip list
//! \param [in] number_cliprects
//! Number of clip rects in the clip list
//! \param [in] flags
//! de-interlacing flags
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_PutSurface (
VADriverContextP ctx,
VASurfaceID surface,
void* draw, /* Drawable of window system */
int16_t srcx,
int16_t srcy,
uint16_t srcw,
uint16_t srch,
int16_t destx,
int16_t desty,
uint16_t destw,
uint16_t desth,
VARectangle *cliprects, /* client supplied clip list */
uint32_t number_cliprects, /* number of clip rects in the clip list */
uint32_t flags /* de-interlacing flags */
);
//!
//! \brief Query supported image formats
//! \details The caller must provide a "format_list" array that can hold at
//! least vaMaxNumImageFormats() entries. The actual number of formats
//! returned in "format_list" is returned in "num_formats"
//!
//! \param [in] ctx
//! Driver context
//! \param [out] format_list
//! The format of image
//! \param [out] num_formats
//! The number of the formats
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryImageFormats (
VADriverContextP ctx,
VAImageFormat *format_list,
int32_t *num_formats
);
//!
//! \brief Create an image
//!
//! \param [in] ctx
//! Driver context
//! \param [in] format
//! The format of image
//! \param [in] width
//! The width of the image
//! \param [in] height
//! The height of the image
//! \param [out] image
//! The generated image
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_CreateImage (
VADriverContextP ctx,
VAImageFormat *format,
int32_t width,
int32_t height,
VAImage *image /* out */
);
//!
//! \brief Derive image
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] surface
//! VA surface ID
//! \param [in] image
//! VA image
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_DeriveImage (
VADriverContextP ctx,
VASurfaceID surface,
VAImage *image
);
//!
//! \brief Free allocated surfaceheap elements
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] image
//! VA image ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_DestroyImage (
VADriverContextP ctx,
VAImageID image
);
//!
//! \brief Set image palette
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] image
//! VA image ID
//! \param [in] palette
//! Palette
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED if call success, else fail reason
//!
VAStatus DdiMedia_SetImagePalette (
VADriverContextP ctx,
VAImageID image,
unsigned char *palette
);
//!
//! \brief Retrive surface data into a VAImage
//! \details Image must be in a format supported by the implementation
//!
//! \param [in] ctx
//! Input driver context
//! \param [in] surface
//! Input surface ID of source
//! \param [in] x
//! X offset of the wanted region
//! \param [in] y
//! Y offset of the wanted region
//! \param [in] width
//! Width of the wanted region
//! \param [in] height
//! Height of the wanted region
//! \param [in] image
//! The image ID of the source image
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_GetImage (
VADriverContextP ctx,
VASurfaceID surface,
int32_t x, /* coordinates of the upper left source pixel */
int32_t y,
uint32_t width, /* width and height of the region */
uint32_t height,
VAImageID image
);
//!
//! \brief Copy data from a VAImage to a surface
//! \details Image must be in a format supported by the implementation
//!
//! \param [in] ctx
//! Input driver context
//! \param [in] surface
//! Surface ID of destination
//! \param [in] image
//! The image ID of the destination image
//! \param [in] src_x
//! Source x offset of the image region
//! \param [in] src_y
//! Source y offset of the image region
//! \param [in] src_width
//! Source width offset of the image region
//! \param [in] src_height
//! Source height offset of the image region
//! \param [in] dest_x
//! Destination x offset of the surface region
//! \param [in] dest_y
//! Destination y offset of the surface region
//! \param [in] dest_width
//! Destination width offset of the surface region
//! \param [in] dest_height
//! Destination height offset of the surface region
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_PutImage (
VADriverContextP ctx,
VASurfaceID surface,
VAImageID image,
int32_t src_x,
int32_t src_y,
uint32_t src_width,
uint32_t src_height,
int32_t dest_x,
int32_t dest_y,
uint32_t dest_width,
uint32_t dest_height
);
//!
//! \brief Query subpicture formats
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] format_list
//! VA image format
//! \param [in] flags
//! Flags
//! \param [in] num_formats
//! Number of formats
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QuerySubpictureFormats (
VADriverContextP ctx,
VAImageFormat *format_list,
uint32_t *flags,
uint32_t *num_formats
);
//!
//! \brief Create subpicture
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] image
//! VA image ID
//! \param [out] subpicture
//! VA subpicture ID
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_CreateSubpicture (
VADriverContextP ctx,
VAImageID image,
VASubpictureID *subpicture /* out */
);
//!
//! \brief Destroy subpicture
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] subpicture
//! VA subpicture ID
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_DestroySubpicture (
VADriverContextP ctx,
VASubpictureID subpicture
);
//!
//! \brief Set subpicture image
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] subpicture
//! VA subpicture ID
//! \param [in] image
//! VA image ID
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_SetSubpictureImage (
VADriverContextP ctx,
VASubpictureID subpicture,
VAImageID image
);
//!
//! \brief Set subpicture chrome key
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] subpicture
//! VA subpicture ID
//! \param [in] chromakey_min
//! Minimum chroma key
//! \param [in] chromakey_max
//! Maximum chroma key
//! \param [in] chromakey_mask
//! Chromakey mask
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_SetSubpictureChromakey (
VADriverContextP ctx,
VASubpictureID subpicture,
uint32_t chromakey_min,
uint32_t chromakey_max,
uint32_t chromakey_mask
);
//!
//! \brief set subpicture global alpha
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] subpicture
//! VA subpicture ID
//! \param [in] global_alpha
//! Global alpha
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
VAStatus DdiMedia_SetSubpictureGlobalAlpha (
VADriverContextP ctx,
VASubpictureID subpicture,
float global_alpha
);
//!
//! \brief Associate subpicture
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] subpicture
//! VA subpicture ID
//! \param [in] target_surfaces
//! VA surface ID
//! \param [in] num_surfaces
//! Number of surfaces
//! \param [in] src_x
//! Source x of the region
//! \param [in] src_y
//! Source y of the region
//! \param [in] src_width
//! Source width of the region
//! \param [in] src_height
//! Source height of the region
//! \param [in] dest_x
//! Destination x
//! \param [in] dest_y
//! Destination y
//! \param [in] dest_width
//! Destination width
//! \param [in] dest_height
//! Destination height
//! \param [in] flags
//! Flags
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_AssociateSubpicture (
VADriverContextP ctx,
VASubpictureID subpicture,
VASurfaceID *target_surfaces,
int32_t num_surfaces,
int16_t src_x, /* upper left offset in subpicture */
int16_t src_y,
uint16_t src_width,
uint16_t src_height,
int16_t dest_x, /* upper left offset in surface */
int16_t dest_y,
uint16_t dest_width,
uint16_t dest_height,
/*
* whether to enable chroma-keying or global-alpha
* see VA_SUBPICTURE_XXX values
*/
uint32_t flags
);
//!
//! \brief Deassociate subpicture
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] subpicture
//! VA subpicture ID
//! \param [in] target_surfaces
//! VA surface ID
//! \param [in] num_surfaces
//! Number of surfaces
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_DeassociateSubpicture (
VADriverContextP ctx,
VASubpictureID subpicture,
VASurfaceID *target_surfaces,
int32_t num_surfaces
);
//!
//! \brief Query display attributes
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] attr_list
//! VA display attribute
//! \param [in] num_attributes
//! Number of attributes
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryDisplayAttributes (
VADriverContextP ctx,
VADisplayAttribute *attr_list,
int32_t *num_attributes
);
//!
//! \brief Get display attributes
//! \details This function returns the current attribute values in "attr_list".
//! Only attributes returned with VA_DISPLAY_ATTRIB_GETTABLE set in the "flags" field
//! from vaQueryDisplayAttributes() can have their values retrieved.
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] attr_list
//! VA display attribute
//! \param [in] num_attributes
//! Number of attributes
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_GetDisplayAttributes (
VADriverContextP ctx,
VADisplayAttribute *attr_list,
int32_t num_attributes
);
//!
//! \brief Set display attributes
//! \details Only attributes returned with VA_DISPLAY_ATTRIB_SETTABLE set in the "flags" field
//! from vaQueryDisplayAttributes() can be set. If the attribute is not settable or
//! the value is out of range, the function returns VA_STATUS_ERROR_ATTR_NOT_SUPPORTED
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] attr_list
//! VA display attribute
//! \param [in] num_attributes
//! Number of attributes
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_SetDisplayAttributes (
VADriverContextP ctx,
VADisplayAttribute *attr_list,
int32_t num_attributes
);
//!
//! \brief Query processing rate
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] config_id
//! VA configuration ID
//! \param [in] proc_buf
//! VA processing rate parameter
//! \param [out] processing_rate
//! Processing rate
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryProcessingRate (
VADriverContextP ctx,
VAConfigID config_id,
VAProcessingRateParameter *proc_buf,
uint32_t *processing_rate /* output parameter */
);
#if VA_CHECK_VERSION(1,10,0)
//!
//! \brief media copy
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] dst_obj
//! VA copy object dst.
//! \param [in] src_obj
//! VA copy object src.
//! \param [in] option
//! VA copy option, copy mode.
//! \param [in] sync_handle
//! VA copy sync handle
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_Copy (
VADriverContextP ctx,
VACopyObject *dst_obj,
VACopyObject *src_obj,
VACopyOption option
);
#endif //VA_CHECK_VERSION(1,10,0)
//!
//! \brief Check for buffer info
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA buffer ID
//! \param [out] type
//! VA buffer type
//! \param [out] size
//! Size
//! \param [out] num_elements
//! Number of elements
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_BufferInfo (
VADriverContextP ctx,
VABufferID buf_id,
VABufferType *type,
uint32_t *size,
uint32_t *num_elements
);
//!
//! \brief Lock surface
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] surface
//! VA surface ID
//! \param [out] fourcc
//! FourCC
//! \param [out] luma_stride
//! Luma stride
//! \param [out] chroma_u_stride
//! Chroma U stride
//! \param [out] chroma_v_stride
//! Chroma V stride
//! \param [out] luma_offset
//! Luma offset
//! \param [out] chroma_u_offset
//! Chroma U offset
//! \param [out] chroma_v_offset
//! Chroma V offset
//! \param [out] buffer_name
//! Buffer name
//! \param [out] buffer
//! Buffer
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_LockSurface (
VADriverContextP ctx,
VASurfaceID surface,
uint32_t *fourcc,
uint32_t *luma_stride,
uint32_t *chroma_u_stride,
uint32_t *chroma_v_stride,
uint32_t *luma_offset,
uint32_t *chroma_u_offset,
uint32_t *chroma_v_offset,
uint32_t *buffer_name,
void **buffer
);
//!
//! \brief Unlock surface
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] surface
//! VA surface ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_UnlockSurface (
VADriverContextP ctx,
VASurfaceID surface
);
//!
//! \brief Query video proc filters
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] context
//! VA context ID
//! \param [in] filters
//! VA proc filter type
//! \param [in] num_filters
//! Number of filters
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryVideoProcFilters (
VADriverContextP ctx,
VAContextID context,
VAProcFilterType *filters,
uint32_t *num_filters
);
//!
//! \brief Query video processing filter capabilities.
//! The real implementation is in media_libva_vp.c, since it needs to use some definitions in vphal.h.
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] context
//! VA context ID
//! \param [in] type
//! VA proc filter type
//! \param [inout] filter_caps
//! FIlter caps
//! \param [inout] num_filter_caps
//! Number of filter caps
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryVideoProcFilterCaps (
VADriverContextP ctx,
VAContextID context,
VAProcFilterType type,
void *filter_caps,
uint32_t *num_filter_caps
);
//!
//! \brief Query video proc pipeline caps
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] context
//! VA context ID
//! \param [in] filters
//! VA buffer ID
//! \param [in] num_filters
//! Number of filters
//! \param [in] pipeline_caps
//! VA proc pipeline caps
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_QueryVideoProcPipelineCaps (
VADriverContextP ctx,
VAContextID context,
VABufferID *filters,
uint32_t num_filters,
VAProcPipelineCaps *pipeline_caps
);
//!
//! \brief Get surface attributes for the supplied config
//! \details This function retrieves the surface attributes matching the supplied config.
//!
//! \param [in] ctx
//! VA display
//! \param [in] config
//! Config identifying a codec or a video processing pipeline
//! \param [out] attrib_list
//! List of attributes on output
//! \param [in] num_attributes
//! Number of attributes
//!
//! \return VAStatus
//! VA_STATUS_ERROR_UNIMPLEMENTED
//!
VAStatus DdiMedia_GetSurfaceAttributes (
VADriverContextP ctx,
VAConfigID config,
VASurfaceAttrib *attrib_list,
uint32_t num_attribs
);
//!
//! \brief Aquire buffer handle
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA buffer ID
//! \param [in] buf_info
//! VA buffer Info
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_AcquireBufferHandle (
VADriverContextP ctx,
VABufferID buf_id,
VABufferInfo *buf_info
);
//!
//! \brief Release buffer handle
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] buf_id
//! VA bufferID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_ReleaseBufferHandle (
VADriverContextP ctx,
VABufferID buf_id
);
//!
//! \brief API for export surface handle to other component
//!
//! \param [in] dpy
//! VA display.
//! \param [in] surface_id
//! Surface to export.
//! \param [in] mem_type
//! Memory type to export to.
//! \param [in] flags
//! Combination of flags to apply
//!\param [out] descriptor
//!Pointer to the descriptor structure to fill
//!with the handle details. The type of this structure depends on
//!the value of mem_type.
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_ExportSurfaceHandle (
VADriverContextP ctx,
VASurfaceID surface_id,
uint32_t mem_type,
uint32_t flags,
void *descriptor);
#ifndef ANDROID
//!
//! \brief Create Mfe Context
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [out] mfe_context
//! VA MF context ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_CreateMfeContextInternal (
VADriverContextP ctx,
VAMFContextID *mfe_context
);
//!
//! \brief Add context
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] contexts
//! VA context ID
//! \param [in] mfe_context
//! VA MF context ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_AddContextInternal (
VADriverContextP ctx,
VAContextID context,
VAMFContextID mfe_context
);
//!
//! \brief Release context
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] contexts
//! VA context ID
//! \param [in] mfe_context
//! VA MF context ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_ReleaseContextInternal (
VADriverContextP ctx,
VAContextID context,
VAMFContextID mfe_context
);
#endif // ANDROID
#ifdef __cplusplus
extern "C" {
#endif
//! \brief Hybrid query buffer attributes
//!
//! \param [in] dpy
//! VA display
//! \param [in] context
//! VA context ID
//! \param [in] bufferType
//! VA buffer type
//! \param [out] outputData
//! Output data
//! \param [out] outputDataLen
//! Length of output data
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
MEDIAAPI_EXPORT VAStatus DdiMedia_HybridQueryBufferAttributes(
VADisplay dpy,
VAContextID context,
VABufferType bufferType,
void *outputData,
uint32_t *outputDataLen);
//! \brief Set frame ID
//!
//! \param [in] ctx
//! Pointer to VA driver context
//! \param [in] surface
//! VA surface ID
//! \param [in] frame_id
//! Frame ID
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_SetFrameID(
VADriverContextP ctx,
VASurfaceID surface,
uint32_t frame_id);
#ifdef __cplusplus
}
#endif
#endif // __MEDIA_LIBVA_H__
|