91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 30.93MB
    文件類型: .zip
    金幣: 1
    下載: 0 次
    發布日期: 2023-08-06
  • 語言: 其他
  • 標簽: libvlc??

資源簡介

github上面下載不易,掛在這里,供大家參閱,這是雷神的原創。

資源截圖

代碼片段和文件信息

/**
?*?最簡單的基于libVLC的播放器-圖形界面版
?*?Simplest?libVLC?Player?GUI
?*
?*?雷霄驊?Lei?Xiaohua
?*?leixiaohua1020@126.com
?*?中國傳媒大學/數字電視技術
?*?Communication?University?of?China?/?Digital?TV?Technology
?*?http://blog.csdn.net/leixiaohua1020
?*
?*?本程序是一個最簡單的基于libVLC的圖形界面播放器。
?*?適合初學者學習libVLC。
?*
?*?This?example?is?the?simplest?Player?based?on?libVLC.
?*?Suitable?for?the?beginner?of?libVLC.
?*/

#include?“stdafx.h“
#include?“playerGUI.h“
#include?“playerGUIDlg.h“

#ifdef?_DEBUG
#define?new?DEBUG_NEW
#endif


//?CplayerGUIApp

BEGIN_MESSAGE_MAP(CplayerGUIApp?CWinApp)
ON_COMMAND(ID_HELP?&CWinApp::onhelp)
END_MESSAGE_MAP()


//?CplayerGUIApp?構造

CplayerGUIApp::CplayerGUIApp()
{
//?支持重新啟動管理器
m_dwRestartManagerSupportFlags?=?AFX_RESTART_MANAGER_SUPPORT_RESTART;

//?TODO:?在此處添加構造代碼,
//?將所有重要的初始化放置在?InitInstance?中
}


//?唯一的一個?CplayerGUIApp?對象

CplayerGUIApp?theApp;


//?CplayerGUIApp?初始化

BOOL?CplayerGUIApp::InitInstance()
{
//?如果一個運行在?Windows?XP?上的應用程序清單指定要
//?使用?ComCtl32.dll?版本?6?或更高版本來啟用可視化方式,
//則需要?InitCommonControlsEx()。否則,將無法創建窗口。
INITCOMMONCONTROLSEX?InitCtrls;
InitCtrls.dwSize?=?sizeof(InitCtrls);
//?將它設置為包括所有要在應用程序中使用的
//?公共控件類。
InitCtrls.dwICC?=?ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinApp::InitInstance();


AfxEnableControlContainer();

//?創建?shell?管理器,以防對話框包含
//?任何?shell?樹視圖控件或?shell?列表視圖控件。
CShellManager?*pShellManager?=?new?CShellManager;

//?標準初始化
//?如果未使用這些功能并希望減小
//?最終可執行文件的大小,則應移除下列
//?不需要的特定初始化例程
//?更改用于存儲設置的注冊表項
//?TODO:?應適當修改該字符串,
//?例如修改為公司或組織名
SetRegistryKey(_T(“應用程序向導生成的本地應用程序“));

CplayerGUIDlg?dlg;
m_pMainWnd?=?&dlg;
INT_PTR?nResponse?=?dlg.DoModal();
if?(nResponse?==?IDOK)
{
//?TODO:?在此放置處理何時用
//??“確定”來關閉對話框的代碼
}
else?if?(nResponse?==?IDCANCEL)
{
//?TODO:?在此放置處理何時用
//??“取消”來關閉對話框的代碼
}

//?刪除上面創建的?shell?管理器。
if?(pShellManager?!=?NULL)
{
delete?pShellManager;
}

//?由于對話框已關閉,所以將返回?FALSE?以便退出應用程序,
//??而不是啟動應用程序的消息泵。
return?FALSE;
}


?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2015-01-09?11:54??simplest_libvlc_example-master\
?????文件??????????40??2015-01-09?11:54??simplest_libvlc_example-master\.gitignore
?????文件?????????670??2015-01-09?11:54??simplest_libvlc_example-master\Readme.txt
?????目錄???????????0??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\
?????文件?????1358127??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\cuc_ieschool.flv
?????文件??????113171??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\libvlc.dll
?????文件?????2396179??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\libvlccore.dll
?????目錄???????????0??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\
?????目錄???????????0??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\
?????文件???????13843??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_attachment_plugin.dll
?????文件??????100371??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_bd_plugin.dll
?????文件???????74259??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_ftp_plugin.dll
?????文件??????116755??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_http_plugin.dll
?????文件???????46611??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_imem_plugin.dll
?????文件???????72211??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_mms_plugin.dll
?????文件???????40979??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_rar_plugin.dll
?????文件???????94739??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_realrtsp_plugin.dll
?????文件???????39955??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_smb_plugin.dll
?????文件???????14355??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_tcp_plugin.dll
?????文件???????14355??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_udp_plugin.dll
?????文件???????76307??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_vdr_plugin.dll
?????文件??????159763??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libcdda_plugin.dll
?????文件??????268307??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libdshow_plugin.dll
?????文件??????246803??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libdtv_plugin.dll
?????文件??????240659??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libdvdnav_plugin.dll
?????文件??????164883??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libdvdread_plugin.dll
?????文件???????45587??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libfilesystem_plugin.dll
?????文件???????14355??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\libidummy_plugin.dll
?????文件?????2021395??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\liblibbluray_plugin.dll
?????文件??????675347??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\liblive555_plugin.dll
?????文件??????477203??2015-01-09?11:54??simplest_libvlc_example-master\libvlc_bin\plugins\access\librtp_plugin.dll
............此處省略450個文件信息

評論

共有 條評論