Lines Matching refs:e2eDemo
388 auto e2eDemo = std::make_unique<AVCodecE2EDemo>(path);
389 if (e2eDemo == nullptr) {
390 cout << "e2eDemo is null" << endl;
393 e2eDemo->Configure();
394 e2eDemo->Start();
395 e2eDemo->WaitForEOS();
396 e2eDemo->Stop();
398 auto e2eDemo = std::make_unique<AVCodecE2EDemoAPI10>(path);
399 if (e2eDemo == nullptr) {
400 cout << "e2eDemo is null" << endl;
403 e2eDemo->Configure();
404 e2eDemo->Start();
405 e2eDemo->WaitForEOS();
406 e2eDemo->Stop();
408 cout << "e2eDemo end" << endl;