1 Star 0 Fork 0

SupMe/MMediaFoundation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MyPlayer.cpp 754 Bytes
一键复制 编辑 原始数据 按行查看 历史
lxy20221110 提交于 2023-03-05 18:03 . 添加项目文件。
#include "MyPlayer.h"
MyPlayer::MyPlayer(HWND nd) :m_hwndVideo(nd){}
void MyPlayer::OpenFile(PCWSTR sURL) {
CreateSession();
m_topoBuilder.Qenopy(sURL, m_hwndVideo);
m_pSession->SetTopology(0, m_topoBuilder.m_pTopology);
}
void MyPlayer::Play(void) {
PROPVARIANT varStart;
PropVariantInit(&varStart);
varStart.vt = VT_EMPTY;
m_pSession->Start(&GUID_NULL, &varStart);
PropVariantClear(&varStart);
}
void MyPlayer::Pause(void) {
m_pSession->Pause();
}
void MyPlayer::CreateSession(void) {
if (m_pSession != nullptr) {
CloseSession();
}
MFCreateMediaSession(nullptr, &m_pSession);
}
void MyPlayer::CloseSession(void) {
m_pSession->Close();
m_pSession->Shutdown();
m_pSession = nullptr;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rinipp/MMediaFoundation.git
[email protected]:rinipp/MMediaFoundation.git
rinipp
MMediaFoundation
MMediaFoundation
main

搜索帮助