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
|
/******************************************************************************\
Copyright (c) 2005-2019, Intel Corporation
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This sample was distributed or derived from the Intel's Media Samples package.
The original version of this sample may be obtained from https://software.intel.com/en-us/intel-media-server-studio
or https://software.intel.com/en-us/media-client-solutions-support.
\**********************************************************************************/
#ifndef __SAMPLE_FEI_ENC_TASK_H__
#define __SAMPLE_FEI_ENC_TASK_H__
#include <mfxfei.h>
#include "sample_fei_defs.h"
#ifndef MFX_VERSION
#error MFX_VERSION not defined
#endif
// for ext buffers management
struct setElem
{
mfxExtBuffer * getBufById(mfxU32 id, mfxU32 fieldId)
{
if (!buffers.empty())
{
for (mfxU16 i = 0; i < buffers.size() - fieldId; i++)
{
if (buffers[i]->BufferId == id)
{
return (buffers[i + fieldId] && buffers[i + fieldId]->BufferId == id) ? buffers[i + fieldId] : NULL;
}
}
}
return NULL;
}
void ResetMBnum(mfxU32 new_numMB, mfxU16 increment)
{
for (mfxU16 i = 0; i < buffers.size(); i += increment)
{
switch (buffers[i]->BufferId)
{
/* Input buffers */
case MFX_EXTBUFF_FEI_PREENC_MV_PRED:
{
mfxExtFeiPreEncMVPredictors* mvPreds = reinterpret_cast<mfxExtFeiPreEncMVPredictors*>(buffers[i]);
mvPreds->NumMBAlloc = new_numMB;
}
break;
case MFX_EXTBUFF_FEI_ENC_MV_PRED:
{
mfxExtFeiEncMVPredictors* pMvPredBuf = reinterpret_cast<mfxExtFeiEncMVPredictors*>(buffers[i]);
pMvPredBuf->NumMBAlloc = new_numMB;
}
break;
case MFX_EXTBUFF_FEI_ENC_MB:
{
mfxExtFeiEncMBCtrl* pMbEncCtrl = reinterpret_cast<mfxExtFeiEncMBCtrl*>(buffers[i]);
pMbEncCtrl->NumMBAlloc = new_numMB;
}
break;
case MFX_EXTBUFF_FEI_ENC_QP:
{
mfxExtFeiEncQP* pMbQP = reinterpret_cast<mfxExtFeiEncQP*>(buffers[i]);
#if MFX_VERSION >= 1023
pMbQP->NumMBAlloc = new_numMB;
#else
pMbQP->NumQPAlloc = new_numMB;
#endif
}
break;
/* Output buffers */
case MFX_EXTBUFF_FEI_PREENC_MV:
{
mfxExtFeiPreEncMV* mvs = reinterpret_cast<mfxExtFeiPreEncMV*>(buffers[i]);
mvs->NumMBAlloc = new_numMB;
}
break;
case MFX_EXTBUFF_FEI_PREENC_MB:
{
mfxExtFeiPreEncMBStat* mbdata = reinterpret_cast<mfxExtFeiPreEncMBStat*>(buffers[i]);
mbdata->NumMBAlloc = new_numMB;
}
break;
case MFX_EXTBUFF_FEI_ENC_MV:
{
mfxExtFeiEncMV* mvBuf = reinterpret_cast<mfxExtFeiEncMV*>(buffers[i]);
mvBuf->NumMBAlloc = new_numMB;
}
break;
case MFX_EXTBUFF_FEI_ENC_MB_STAT:
{
mfxExtFeiEncMBStat* mbstatBuf = reinterpret_cast<mfxExtFeiEncMBStat*>(buffers[i]);
mbstatBuf->NumMBAlloc = new_numMB;
}
break;
case MFX_EXTBUFF_FEI_PAK_CTRL:
{
mfxExtFeiPakMBCtrl* mbcodeBuf = reinterpret_cast<mfxExtFeiPakMBCtrl*>(buffers[i]);
mbcodeBuf->NumMBAlloc = new_numMB;
}
break;
} // switch (ExtParam[i]->BufferId)
} // for (mfxU16 i = 0; i < NumExtParam; i += increment)
}
void ResetSlices(mfxU16 widthMB, mfxU16 heightMB)
{
for (mfxU16 i = 0; i < buffers.size(); ++i)
{
switch (buffers[i]->BufferId)
{
case MFX_EXTBUFF_FEI_SLICE:
{
mfxExtFeiSliceHeader* feiSliceHeader = reinterpret_cast<mfxExtFeiSliceHeader*>(buffers[i]);
if (feiSliceHeader && feiSliceHeader->Slice)
{
// TODO: Improve slice divider
mfxU16 nMBrows = (heightMB + feiSliceHeader->NumSlice - 1) / feiSliceHeader->NumSlice,
nMBremain = heightMB;
for (mfxU16 numSlice = 0; numSlice < feiSliceHeader->NumSlice; ++numSlice)
{
feiSliceHeader->Slice[numSlice].MBAddress = numSlice*(nMBrows*widthMB);
feiSliceHeader->Slice[numSlice].NumMBs = (std::min)(nMBrows, nMBremain)*widthMB;
nMBremain -= nMBrows;
}
}
}
break;
}
}
}
void Destroy(mfxU16 num_of_fields)
{
for (mfxU16 i = 0; i < buffers.size(); /*i++*/)
{
switch (buffers[i]->BufferId)
{
case MFX_EXTBUFF_FEI_PREENC_CTRL:
{
mfxExtFeiPreEncCtrl* preENCCtr = reinterpret_cast<mfxExtFeiPreEncCtrl*>(buffers[i]);
MSDK_SAFE_DELETE_ARRAY(preENCCtr);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_REPACK_CTRL:
{
mfxExtFeiRepackCtrl* feiRepack = reinterpret_cast<mfxExtFeiRepackCtrl*>(buffers[i]);
MSDK_SAFE_DELETE_ARRAY(feiRepack);
i += num_of_fields;
}
break;
#if (MFX_VERSION >= 1025)
case MFX_EXTBUFF_FEI_REPACK_STAT:
{
mfxExtFeiRepackStat* feiRepackStat = reinterpret_cast<mfxExtFeiRepackStat*>
(buffers[i]);
MSDK_SAFE_DELETE_ARRAY(feiRepackStat);
i += num_of_fields;
}
break;
#endif
case MFX_EXTBUFF_FEI_PREENC_MV_PRED:
{
mfxExtFeiPreEncMVPredictors* mvPreds = reinterpret_cast<mfxExtFeiPreEncMVPredictors*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(mvPreds[fieldId].MB);
}
MSDK_SAFE_DELETE_ARRAY(mvPreds);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_ENC_QP:
{
mfxExtFeiEncQP* qps = reinterpret_cast<mfxExtFeiEncQP*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
#if MFX_VERSION >= 1023
MSDK_SAFE_DELETE_ARRAY(qps[fieldId].MB);
#else
MSDK_SAFE_DELETE_ARRAY(qps[fieldId].QP);
#endif
}
MSDK_SAFE_DELETE_ARRAY(qps);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_ENC_CTRL:
{
mfxExtFeiEncFrameCtrl* feiEncCtrl = reinterpret_cast<mfxExtFeiEncFrameCtrl*>(buffers[i]);
MSDK_SAFE_DELETE_ARRAY(feiEncCtrl);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_SPS:
{
mfxExtFeiSPS* feiSPS = reinterpret_cast<mfxExtFeiSPS*>(buffers[i]);
MSDK_SAFE_DELETE(feiSPS);
i++;
}
break;
case MFX_EXTBUFF_FEI_PPS:
{
mfxExtFeiPPS* feiPPS = reinterpret_cast<mfxExtFeiPPS*>(buffers[i]);
MSDK_SAFE_DELETE_ARRAY(feiPPS);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_SLICE:
{
mfxExtFeiSliceHeader* feiSliceHeader = reinterpret_cast<mfxExtFeiSliceHeader*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(feiSliceHeader[fieldId].Slice);
}
MSDK_SAFE_DELETE_ARRAY(feiSliceHeader);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_ENC_MV_PRED:
{
mfxExtFeiEncMVPredictors* feiEncMVPredictors = reinterpret_cast<mfxExtFeiEncMVPredictors*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(feiEncMVPredictors[fieldId].MB);
}
MSDK_SAFE_DELETE_ARRAY(feiEncMVPredictors);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_ENC_MB:
{
mfxExtFeiEncMBCtrl* feiEncMBCtrl = reinterpret_cast<mfxExtFeiEncMBCtrl*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(feiEncMBCtrl[fieldId].MB);
}
MSDK_SAFE_DELETE_ARRAY(feiEncMBCtrl);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_PREENC_MV:
{
mfxExtFeiPreEncMV* mvs = reinterpret_cast<mfxExtFeiPreEncMV*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(mvs[fieldId].MB);
}
MSDK_SAFE_DELETE_ARRAY(mvs);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_PREENC_MB:
{
mfxExtFeiPreEncMBStat* mbdata = reinterpret_cast<mfxExtFeiPreEncMBStat*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(mbdata[fieldId].MB);
}
MSDK_SAFE_DELETE_ARRAY(mbdata);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_ENC_MB_STAT:
{
mfxExtFeiEncMBStat* feiEncMbStat = reinterpret_cast<mfxExtFeiEncMBStat*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(feiEncMbStat[fieldId].MB);
}
MSDK_SAFE_DELETE_ARRAY(feiEncMbStat);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_ENC_MV:
{
mfxExtFeiEncMV* feiEncMV = reinterpret_cast<mfxExtFeiEncMV*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(feiEncMV[fieldId].MB);
}
MSDK_SAFE_DELETE_ARRAY(feiEncMV);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_FEI_PAK_CTRL:
{
mfxExtFeiPakMBCtrl* feiEncMBCode = reinterpret_cast<mfxExtFeiPakMBCtrl*>(buffers[i]);
for (mfxU32 fieldId = 0; fieldId < num_of_fields; fieldId++){
MSDK_SAFE_DELETE_ARRAY(feiEncMBCode[fieldId].MB);
}
MSDK_SAFE_DELETE_ARRAY(feiEncMBCode);
i += num_of_fields;
}
break;
case MFX_EXTBUFF_PRED_WEIGHT_TABLE:
{
mfxExtPredWeightTable* feiWeightTable = reinterpret_cast<mfxExtPredWeightTable*>(buffers[i]);
MSDK_SAFE_DELETE_ARRAY(feiWeightTable);
i += num_of_fields;
}
break;
default:
++i;
break;
} // switch ((*it)->PB_bufs.in.ExtParam[i]->BufferId)
} // for (int i = 0; i < (*it)->PB_bufs.in.NumExtParam; )
buffers.clear();
}
void Release()
{
buffers.clear();
}
mfxU16 NumExtParam()
{
return mfxU16(buffers.size());
}
mfxExtBuffer **ExtParam()
{
return buffers.empty()? NULL : &buffers[0];
}
void Add(mfxExtBuffer* buf)
{
buffers.push_back(buf);
}
std::vector<mfxExtBuffer *> buffers;
};
struct IObuffs
{
setElem in;
setElem out;
// Those fields are used to store per-field buffers sets in single-field mode
std::vector<mfxExtBuffer*> enc_per_field_buffers_in[2];
std::vector<mfxExtBuffer*> enc_per_field_buffers_out[2];
std::vector<mfxExtBuffer*> pak_per_field_buffers_in[2];
void Destroy(mfxU16 n_fields)
{
in.Destroy(n_fields);
out.Destroy(n_fields);
}
void Release()
{
in.Release();
out.Release();
}
void ResetMBnum(mfxU32 new_numMB, mfxU16 increment)
{
in.ResetMBnum(new_numMB, increment);
out.ResetMBnum(new_numMB, increment);
}
void ResetSlices(mfxU16 widthMB, mfxU16 heightMB)
{
in.ResetSlices(widthMB, heightMB);
out.ResetSlices(widthMB, heightMB);
}
};
/* This structure holds sets of input and output extension buffers
required for frame processing by one of the FEI interfaces */
struct bufSet
{
bool vacant;
mfxU16 num_fields;
IObuffs I_bufs;
IObuffs PB_bufs;
bufSet(mfxU16 n_fields = 1)
: vacant(true)
, num_fields(n_fields)
{}
~bufSet() { Destroy(); }
void Destroy()
{
vacant = false;
PB_bufs.Destroy(num_fields);
I_bufs.Release();
}
void ResetMBnum(mfxU32 new_numMB, bool both_fields)
{
PB_bufs.ResetMBnum(new_numMB, both_fields ? 1 : num_fields);
}
void ResetSlices(mfxU16 widthMB, mfxU16 heightMB)
{
PB_bufs.ResetSlices(widthMB, heightMB);
}
};
struct bufList
{
std::list<bufSet*> buf_list;
mfxU16 num_of_fields;
bufList(mfxU16 n_fields = 1)
: num_of_fields(n_fields)
{}
~bufList(){ Clear(); }
void AddSet(bufSet* set) { buf_list.push_back(set); }
void Clear()
{
for (std::list<bufSet*>::iterator it = buf_list.begin(); it != buf_list.end(); ++it)
{
MSDK_SAFE_DELETE(*it);
}
buf_list.clear();
}
void UnlockAll()
{
for (auto pBuffer : buf_list)
{
if (pBuffer)
{
pBuffer->vacant = true;
}
}
}
bufSet* GetFreeSet()
{
for (std::list<bufSet*>::iterator it = buf_list.begin(); it != buf_list.end(); ++it){
if ((*it)->vacant)
{
(*it)->vacant = false;
return (*it);
}
}
return NULL;
}
};
/*
This class handles operations with extension buffers. It parses extension buffer set to components subsets.
It helps to handle specific cases like double/single field mode. ENC / PAK buffers sets.
PreENC doesn't support single-field mode
*/
class bufSetController
{
public:
enum
{
PREENC = 1,
ENC = 2,
PAK = 3,
ENCODE = 4
};
explicit bufSetController(bool is_single_field = false) : single_field_mode(is_single_field)
{}
mfxStatus InitializeController(bufSet* bufset, mfxU16 interf, bool is_I_frame, bool force_progressive = false)
{
MSDK_CHECK_POINTER(bufset, MFX_ERR_NULL_PTR);
mfxStatus sts = MFX_ERR_NONE;
std::vector<mfxExtBuffer*> * workSet_in = NULL, *workSet_out = NULL, *buffers_in = NULL, *buffers_out = NULL;
#if MFX_VERSION >= 1023
std::vector<mfxExtBuffer*> PAK_buffers; // PAK input consists of subset of ENC input and output buffers
#endif // MFX_VERSION >= 1023
switch (interf)
{
case PREENC:
workSet_in = preenc_in;
workSet_out = preenc_out;
buffers_in = is_I_frame ? &bufset->I_bufs.in.buffers : &bufset->PB_bufs.in.buffers;
buffers_out = is_I_frame ? &bufset->I_bufs.out.buffers : &bufset->PB_bufs.out.buffers;
break;
case ENC:
case ENCODE:
workSet_in = enc_in;
workSet_out = enc_out;
buffers_in = is_I_frame ? &bufset->I_bufs.in.buffers : &bufset->PB_bufs.in.buffers;
buffers_out = is_I_frame ? &bufset->I_bufs.out.buffers : &bufset->PB_bufs.out.buffers;
break;
case PAK:
#if MFX_VERSION >= 1023
workSet_in = pak_in;
PAK_buffers = GetPAKBuffers(is_I_frame ? bufset->I_bufs : bufset->PB_bufs);
buffers_in = &PAK_buffers;
#else
workSet_in = pak_in;
workSet_out = pak_out;
buffers_in = is_I_frame ? &bufset->I_bufs.out.buffers : &bufset->PB_bufs.out.buffers;
buffers_out = is_I_frame ? &bufset->I_bufs.in.buffers : &bufset->PB_bufs.in.buffers;
#endif // MFX_VERSION >= 1023
break;
default:
return MFX_ERR_UNDEFINED_BEHAVIOR;
break;
}
// PreENC's buffers management doesn't make difference between single/double-field mode.
// In case of mixed picstructs content, buffers sets are separated as for single-field,
// but only first set is used for encoding of progressive frames
if (force_progressive || (single_field_mode && interf != PREENC))
{
sts = CopyPerField(*buffers_in, workSet_in);
MSDK_CHECK_STATUS(sts, "CopyPerField failed");
if (buffers_out)
{
sts = CopyPerField(*buffers_out, workSet_out);
MSDK_CHECK_STATUS(sts, "CopyPerField failed");
}
}
else
{
// copy parameters to component's associated arrays
workSet_in[0].resize(buffers_in->size());
std::copy(buffers_in->begin(), buffers_in->end(), workSet_in[0].begin());
if (buffers_out)
{
workSet_out[0].resize(buffers_out->size());
std::copy(buffers_out->begin(), buffers_out->end(), workSet_out[0].begin());
}
}
return sts;
}
std::vector<mfxExtBuffer *> * GetBuffers(mfxU16 interf, mfxU32 field, bool input)
{
if (field > 1) return NULL;
if (!single_field_mode) { field = 0; } // In double-field mode both buffers are stored under [0] index
switch (interf)
{
case PREENC:
return input ? &preenc_in[0] : &preenc_out[0];
break;
case ENC:
case ENCODE:
return input ? &enc_in[field] : &enc_out[field];
break;
case PAK:
#if MFX_VERSION >= 1023
return input ? &pak_in[field] : NULL;
#else
return input ? &pak_in[field] : &pak_out[field];
#endif // MFX_VERSION >= 1023
break;
default:
return NULL;
break;
}
}
private:
mfxStatus CopyPerField(const std::vector<mfxExtBuffer *>& buffers, std::vector<mfxExtBuffer*> * work_set)
{
// Clear old data
work_set[0].clear();
work_set[1].clear();
work_set[0].reserve(buffers.size() / 2);
work_set[1].reserve(buffers.size() / 2);
// For buffers which are field-based
std::map<mfxU32, mfxU32> buffers_count;
for (mfxU32 i = 0; i < buffers.size(); ++i)
{
if (buffers_count.find(buffers[i]->BufferId) == buffers_count.end())
{
// Put first buffer to first array
buffers_count[buffers[i]->BufferId] = 0;
work_set[0].push_back(buffers[i]);
}
else
{
// Put second buffer to second array
buffers_count[buffers[i]->BufferId]++;
if (buffers_count[buffers[i]->BufferId] > 1) { return MFX_ERR_UNDEFINED_BEHAVIOR; }
work_set[1].push_back(buffers[i]);
}
}
return MFX_ERR_NONE;
}
std::vector<mfxExtBuffer*> GetPAKBuffers(const IObuffs& io_bufs)
{
std::vector<mfxExtBuffer*> PAK_buffers;
// PAK input buffers includes MV, MBcode buffers from ENC output
// and PPS, SliceHeader from ENC input
for (int k = 0; k < 2; ++k)
{
const std::vector<mfxExtBuffer*> & buffers = k ? io_bufs.in.buffers : io_bufs.out.buffers;
for (mfxU16 i = 0; i < buffers.size(); ++i)
{
switch (buffers[i]->BufferId)
{
case MFX_EXTBUFF_FEI_ENC_MV:
case MFX_EXTBUFF_FEI_PAK_CTRL:
case MFX_EXTBUFF_FEI_PPS:
case MFX_EXTBUFF_FEI_SLICE:
PAK_buffers.push_back(buffers[i]);
break;
default:
break;
}
}
}
return PAK_buffers;
}
// 0 - for first field / frame / double-field mode, 1 - for second field (only for single-field mode)
std::vector<mfxExtBuffer*> preenc_in[2];
std::vector<mfxExtBuffer*> preenc_out[2];
std::vector<mfxExtBuffer*> enc_in[2]; // for ENC and ENCODE (sample_fei doesn't support pipelines with ENC and ENCODE simultaneously)
std::vector<mfxExtBuffer*> enc_out[2];
std::vector<mfxExtBuffer*> pak_in[2];
#if MFX_VERSION < 1023
std::vector<mfxExtBuffer*> pak_out[2];
#endif
bool single_field_mode;
};
struct PreEncOutput
{
PreEncOutput()
: output_bufs(NULL)
{
refIdx[0][0] = refIdx[0][1] = refIdx[1][0] = refIdx[1][1] = 0;
}
PreEncOutput(bufSet* bufs, mfxU8 idx[2][2])
: output_bufs(bufs)
{
refIdx[0][0] = idx[0][0];
refIdx[0][1] = idx[0][1];
refIdx[1][0] = idx[1][0];
refIdx[1][1] = idx[1][1];
}
bufSet* output_bufs;
mfxU8 refIdx[2][2]; // [fieldId][L0L1]
};
struct iTaskParams
{
mfxU16 PicStruct;
mfxU16 BRefType;
PairU8 FrameType;
mfxU16 GopPicSize;
mfxU16 GopRefDist;
mfxU32 FrameCount;
mfxU32 FrameOrderIdrInDisplayOrder;
mfxU16 NumRefActiveP;
mfxU16 NumRefActiveBL0;
mfxU16 NumRefActiveBL1;
mfxU16 NumMVPredictorsP;
mfxU16 NumMVPredictorsBL0;
mfxU16 NumMVPredictorsBL1;
bool SingleFieldMode;
bool NoPRefB;
mfxFrameSurface1 *InputSurf;
mfxFrameSurface1 *ReconSurf;
mfxFrameSurface1 *DSsurface;
explicit iTaskParams()
: PicStruct(MFX_PICSTRUCT_PROGRESSIVE)
, BRefType(MFX_B_REF_OFF)
, FrameType(PairU8(MFX_FRAMETYPE_I | MFX_FRAMETYPE_IDR | MFX_FRAMETYPE_REF))
, GopPicSize(1)
, GopRefDist(1)
, FrameCount(0)
, FrameOrderIdrInDisplayOrder(0)
, NumRefActiveP(0)
, NumRefActiveBL0(0)
, NumRefActiveBL1(0)
, NumMVPredictorsP(0)
, NumMVPredictorsBL0(0)
, NumMVPredictorsBL1(0)
, SingleFieldMode(false)
, NoPRefB(false)
, InputSurf(NULL)
, ReconSurf(NULL)
, DSsurface(NULL)
{}
};
//for PreEnc; Enc; Pak reordering
struct iTask
{
explicit iTask(const iTaskParams & task_params)
:
#if (MFX_VERSION >= 1024)
EncodedFrameSize(0),
#endif
encoded(false)
, bufs(NULL)
, preenc_bufs(NULL)
, ExtBuffersController(task_params.SingleFieldMode)
, PicStruct(task_params.PicStruct)
, BRefType(task_params.BRefType)
, NumRefActiveP(task_params.NumRefActiveP)
, NumRefActiveBL0(task_params.NumRefActiveBL0)
, NumRefActiveBL1(task_params.NumRefActiveBL1)
, m_type(task_params.FrameType)
, m_fid(PairU8(static_cast<mfxU8>(!!(task_params.PicStruct & MFX_PICSTRUCT_FIELD_BFF)),
static_cast<mfxU8>(!(task_params.PicStruct & MFX_PICSTRUCT_PROGRESSIVE) - !!(task_params.PicStruct & MFX_PICSTRUCT_FIELD_BFF))))
, m_fieldPicFlag(!(task_params.PicStruct & MFX_PICSTRUCT_PROGRESSIVE))
, m_frameOrderIdr(task_params.FrameOrderIdrInDisplayOrder)
, m_frameOrderI(0)
, m_frameOrder(task_params.FrameCount)
, m_frameIdrCounter(0)
, GopPicSize(task_params.GopPicSize)
, GopRefDist(task_params.GopRefDist)
, m_viewIdx(0)
, m_picNum(PairI32(0, 0))
, m_frameNum(0)
, m_frameNumWrap(0)
, m_tid(0)
, m_tidx(0)
, m_longTermPicNum(PairU8(0, 0))
, m_bNoPRefB(task_params.NoPRefB)
, prevTask(NULL)
{
NumMVPredictorsP[0] = task_params.NumMVPredictorsP;
NumMVPredictorsP[1] = task_params.NumMVPredictorsP;
NumMVPredictorsBL0[0] = task_params.NumMVPredictorsBL0;
NumMVPredictorsBL0[1] = task_params.NumMVPredictorsBL0;
NumMVPredictorsBL1[0] = task_params.NumMVPredictorsBL1;
NumMVPredictorsBL1[1] = task_params.NumMVPredictorsBL1;
m_list0[0].Fill(0);
m_list0[1].Fill(0);
m_list1[0].Fill(0);
m_list1[1].Fill(0);
m_initSizeList0[0] = 0;
m_initSizeList0[1] = 0;
m_initSizeList1[0] = 0;
m_initSizeList1[1] = 0;
MSDK_ZERO_MEMORY(PREENC_in);
MSDK_ZERO_MEMORY(PREENC_out);
MSDK_ZERO_MEMORY(ENC_in);
MSDK_ZERO_MEMORY(ENC_out);
MSDK_ZERO_MEMORY(PAK_in);
MSDK_ZERO_MEMORY(PAK_out);
/* Below initialized structures required for frames reordering */
if (m_type[m_fid[0]] & MFX_FRAMETYPE_B)
{
m_loc = GetBiFrameLocation(m_frameOrder - m_frameOrderIdr);
m_type[0] |= m_loc.refFrameFlag;
m_type[1] |= m_loc.refFrameFlag;
}
m_nalRefIdc[m_fid[0]] = m_reference[m_fid[0]] = !!(m_type[m_fid[0]] & MFX_FRAMETYPE_REF);
m_nalRefIdc[m_fid[1]] = m_reference[m_fid[1]] = !!(m_type[m_fid[1]] & MFX_FRAMETYPE_REF);
m_poc[0] = 2 * ((m_frameOrder - m_frameOrderIdr) & 0x7fffffff) + (TFIELD != m_fid[0]);
m_poc[1] = 2 * ((m_frameOrder - m_frameOrderIdr) & 0x7fffffff) + (BFIELD != m_fid[0]);
/* Section below sets surfaces for all interfaces and increase locker each time (some of the surfaces get several increments).
In destructor all of of the surfaces' lockers will be decremented.
*/
// PreENC with DownSampling present in pipeline
if (task_params.DSsurface && task_params.InputSurf)
{
// make sure picture structure has the initial value
// surfaces are reused and VPP may change this parameter in certain configurations
task_params.DSsurface->Info.PicStruct = task_params.InputSurf->Info.PicStruct & 0xf;
PREENC_in.InSurface = task_params.DSsurface;
msdk_atomic_inc16((volatile mfxU16*)&PREENC_in.InSurface->Data.Locked);
}
// PreENC on full-res surface
else if (task_params.InputSurf)
{
PREENC_in.InSurface = task_params.InputSurf;
msdk_atomic_inc16((volatile mfxU16*)&PREENC_in.InSurface->Data.Locked);
}
if (task_params.InputSurf)
{
ENC_in.InSurface = task_params.InputSurf;
msdk_atomic_inc16((volatile mfxU16*)&ENC_in.InSurface->Data.Locked);
PAK_in.InSurface = task_params.InputSurf;
msdk_atomic_inc16((volatile mfxU16*)&PAK_in.InSurface->Data.Locked);
}
if (task_params.ReconSurf)
{
ENC_out.OutSurface = task_params.ReconSurf;
msdk_atomic_inc16((volatile mfxU16*)&ENC_out.OutSurface->Data.Locked);
PAK_out.OutSurface = task_params.ReconSurf;
msdk_atomic_inc16((volatile mfxU16*)&PAK_out.OutSurface->Data.Locked);
}
}
~iTask()
{
SAFE_RELEASE_EXT_BUFSET(bufs);
SAFE_RELEASE_EXT_BUFSET(preenc_bufs);
ReleasePreEncOutput();
// Locker was set to each of the surfaces, so decrease every locker
SAFE_DEC_LOCKER(PREENC_in.InSurface);
SAFE_DEC_LOCKER(ENC_in.InSurface);
SAFE_DEC_LOCKER(PAK_in.InSurface);
SAFE_DEC_LOCKER(ENC_out.OutSurface);
SAFE_DEC_LOCKER(PAK_out.OutSurface);
}
/* This operator is used to store only necessary information from previous encoding */
iTask& operator= (const iTask& task)
{
if (this == &task)
return *this;
m_frameOrderIdr = task.m_frameOrderIdr;
m_frameOrderI = task.m_frameOrderI;
m_frameIdrCounter = task.m_frameIdrCounter;
m_nalRefIdc = task.m_nalRefIdc;
m_frameNum = task.m_frameNum;
m_type = task.m_type;
m_dpbPostEncoding = task.m_dpbPostEncoding;
m_poc = task.m_poc;
m_bNoPRefB = task.m_bNoPRefB;
PicStruct = task.PicStruct;
return *this;
}
/* Sets recon_surf as reconstruct surface for ENC / PAK*/
void SetReconSurf(mfxFrameSurface1 * recon_surf)
{
if (recon_surf)
{
// Set appropriate frame order
recon_surf->Data.FrameOrder = m_frameOrder;
// Lock for each interface (symmetric unlock performed in destructor)
ENC_out.OutSurface = recon_surf;
ENC_out.OutSurface->Data.Locked++;
PAK_out.OutSurface = recon_surf;
PAK_out.OutSurface->Data.Locked++;
}
}
/* Release all output buffers from PreENC multicalls.
This performed after repacking / output dumping is finished */
void ReleasePreEncOutput()
{
for (std::list<PreEncOutput>::iterator it = preenc_output.begin(); it != preenc_output.end(); ++it)
{
SAFE_RELEASE_EXT_BUFSET((*it).output_bufs);
}
preenc_output.clear();
}
/* These two functions are used to get location of B frame in current mini-GOP.
Output depends from B-pyramid settings */
BiFrameLocation GetBiFrameLocation(mfxU32 frameOrder)
{
mfxU32 gopPicSize = GopPicSize;
mfxU32 gopRefDist = GopRefDist;
mfxU32 biPyramid = BRefType;
BiFrameLocation loc;
if (gopPicSize == 0xffff) //infinite GOP
gopPicSize = 0xffffffff;
if (biPyramid != MFX_B_REF_OFF)
{
bool ref = false;
mfxU32 orderInMiniGop = frameOrder % gopPicSize % gopRefDist - 1;
loc.encodingOrder = GetEncodingOrder(orderInMiniGop, 0, gopRefDist - 1, 0, ref);
loc.miniGopCount = frameOrder % gopPicSize / gopRefDist;
loc.refFrameFlag = static_cast<mfxU16>(ref ? MFX_FRAMETYPE_REF : 0);
}
return loc;
}
mfxU32 GetEncodingOrder(mfxU32 displayOrder, mfxU32 begin, mfxU32 end, mfxU32 counter, bool & ref)
{
//assert(displayOrder >= begin);
//assert(displayOrder < end);
ref = (end - begin > 1);
mfxU32 pivot = (begin + end) / 2;
if (displayOrder == pivot)
return counter;
else if (displayOrder < pivot)
return GetEncodingOrder(displayOrder, begin, pivot, counter + 1, ref);
else
return GetEncodingOrder(displayOrder, pivot + 1, end, counter + 1 + pivot - begin, ref);
}
/* These functions counts forward / backward references of current task */
mfxU32 GetNBackward(mfxU32 fieldId)
{
mfxU32 fid = m_fid[fieldId];
if (m_list0[fid].Size() == 0)
return 0;
if (m_list1[fid].Size() == 0 ||
std::find(m_list0[fid].Begin(), m_list0[fid].End(), *m_list1[fid].Begin())
== m_list0[fid].End())
{
// No forward ref in L0
return m_list0[fid].Size();
}
else
{
return static_cast<mfxU32>(std::distance(m_list0[fid].Begin(),
std::find(m_list0[fid].Begin(), m_list0[fid].End(), *m_list1[fid].Begin())));
}
}
mfxU32 GetNForward(mfxU32 fieldId)
{
mfxU32 fid = m_fid[fieldId];
if (m_list1[fid].Size() == 0)
return 0;
if (std::find(m_list1[fid].Begin(), m_list1[fid].End(), *m_list0[fid].Begin())
== m_list1[fid].End())
{
// No backward ref in L1
return m_list1[fid].Size();
}
else
{
return static_cast<mfxU32>(std::distance(m_list1[fid].Begin(),
std::find(m_list1[fid].Begin(), m_list1[fid].End(), *m_list0[fid].Begin())));
}
}
mfxENCInput PREENC_in;
mfxENCOutput PREENC_out;
mfxENCInput ENC_in;
mfxENCOutput ENC_out;
mfxPAKInput PAK_in;
mfxPAKOutput PAK_out;
#if (MFX_VERSION >= 1024)
mfxU32 EncodedFrameSize; //for BRC
#endif
BiFrameLocation m_loc;
bool encoded;
bufSet* bufs;
bufSet* preenc_bufs;
std::list<PreEncOutput> preenc_output;
bufSetController ExtBuffersController; // controls Extension Buffers management
mfxU16 PicStruct;
mfxU16 BRefType;
mfxU16 NumRefActiveP; // limits of active
mfxU16 NumRefActiveBL0; // references for
mfxU16 NumRefActiveBL1; // reflists management
mfxU16 NumMVPredictorsP[2]; // first and second fields
mfxU16 NumMVPredictorsBL0[2];
mfxU16 NumMVPredictorsBL1[2];
//..............................reflist control............................................
ArrayDpbFrame m_dpb[2]; // DPB state before encoding first and second fields
ArrayDpbFrame m_dpbPostEncoding; // DPB after encoding a frame (or 2 fields)
ArrayU8x33 m_list0[2]; // L0 list for first and second field
ArrayU8x33 m_list1[2]; // L1 list for first and second field
PairU8 m_type; // type of first and second field
PairU8 m_fid; // progressive fid=[0,0]; tff fid=[0,1]; bff fid=[1,0]
bool m_fieldPicFlag; // is interlaced frame
PairI32 m_poc; // POC of first and second field
mfxU32 m_frameOrderIdr; // most recent IDR frame in display order
mfxU32 m_frameOrderI; // most recent I frame in display order
mfxU32 m_frameOrder; // current frame order in display order
mfxU16 m_frameIdrCounter; // number of IDR frames encoded
mfxU16 GopPicSize; // GOP size
mfxU16 GopRefDist; // number of B frames in mini-GOP + 1
ArrayRefListMod m_refPicList0Mod[2];
ArrayRefListMod m_refPicList1Mod[2];
mfxU32 m_initSizeList0[2];
mfxU32 m_initSizeList1[2];
DecRefPicMarkingInfo m_decRefPicMrk[2]; // dec_ref_pic_marking() for current frame
mfxU32 m_viewIdx;
PairU8 m_nalRefIdc;
// from Reconstruct
PairI32 m_picNum;
mfxU16 m_frameNum;
mfxI32 m_frameNumWrap;
mfxU32 m_tid; // temporal_id
mfxU32 m_tidx; // temporal layer index (in ascending order of temporal_id)
PairU8 m_longTermPicNum;
PairU8 m_reference; // is reference (short or long term) or not
bool m_bNoPRefB; // disable P frames to refer to B frames
//.........................................................................................
iTask* prevTask;
};
#if MFX_VERSION < 1023
/* This structure represents state of DPB and reference lists of the task being processed */
struct RefInfo
{
std::vector<mfxFrameSurface1*> reference_frames;
struct{
std::vector<mfxU16> dpb_idx;
std::vector<mfxU16> l0_idx;
std::vector<mfxU16> l1_idx;
std::vector<mfxU16> l0_parity;
std::vector<mfxU16> l1_parity;
} state[2];
void Clear()
{
reference_frames.clear();
for (mfxU32 fieldId = 0; fieldId < 2; ++fieldId)
{
state[fieldId].dpb_idx.clear();
state[fieldId].l0_idx.clear();
state[fieldId].l1_idx.clear();
state[fieldId].l0_parity.clear();
state[fieldId].l1_parity.clear();
}
}
};
#endif // MFX_VERSION < 1023
/* Group of functions below implements some useful operations for current frame / field of the task:
Frame type extraction, field parity, POC */
inline mfxU8 GetFirstField(const iTask& task)
{
return (task.PicStruct & MFX_PICSTRUCT_FIELD_BFF) && !(task.PicStruct & MFX_PICSTRUCT_PROGRESSIVE) ? 1 : 0;
}
inline mfxI32 GetPoc(const iTask& task, mfxU32 parity)
{
return 2 * ((task.m_frameOrder - task.m_frameOrderIdr) & 0x7fffffff) + (parity != GetFirstField(task));
}
inline mfxU8 ExtractFrameType(const iTask& task)
{
return task.m_type[GetFirstField(task)];
}
inline mfxU8 ExtractFrameType(const iTask& task, mfxU32 fieldId)
{
if (!fieldId){
return task.m_type[GetFirstField(task)];
}
else{
return task.m_type[!GetFirstField(task)];
}
}
inline mfxU16 createType(const iTask& task)
{
return ((mfxU16)task.m_type[!GetFirstField(task)] << 8) | task.m_type[GetFirstField(task)];
}
inline mfxU8 extractType(mfxU16 type, mfxU32 fieldId)
{
return fieldId ? (type >> 8) : (type & 255);
}
inline mfxU16 GetNumL0MVPs(const iTask& task, mfxU32 fieldId)
{
return ((ExtractFrameType(task, fieldId) & MFX_FRAMETYPE_B) ? task.NumMVPredictorsBL0[fieldId] : task.NumMVPredictorsP[fieldId]);
}
inline mfxU16 GetNumL1MVPs(const iTask& task, mfxU32 fieldId)
{
return ((ExtractFrameType(task, fieldId) & MFX_FRAMETYPE_B) ? task.NumMVPredictorsBL1[fieldId] : 0);
}
inline void InitNewDpbFrame(
DpbFrame & ref,
iTask & task,
mfxU32 fid)
{
ref.m_poc[0] = GetPoc(task, TFIELD);
ref.m_poc[1] = GetPoc(task, BFIELD);
ref.m_frameOrder = task.m_frameOrder;
ref.m_frameNum = task.m_frameNum;
ref.m_frameNumWrap = task.m_frameNumWrap;
ref.m_longTermPicNum = task.m_longTermPicNum;
ref.m_type = task.m_type;
ref.m_longterm = 0;
ref.m_refBase = 0;
ref.m_refPicFlag[fid] = !!(task.m_type[fid] & MFX_FRAMETYPE_REF);
ref.m_refPicFlag[!fid] = !!(task.m_type[!fid] & MFX_FRAMETYPE_REF);
if (task.m_fieldPicFlag)
ref.m_refPicFlag[!fid] = 0;
}
#endif // __SAMPLE_FEI_ENC_TASK_H__
|