DirectShow를 이용한 간단 동영상 플레이어 샘플소스 및 실행화면
프로그래밍 언어/C++ 2010. 6. 28. 16:43
Colored By Color Scripter™1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768// Dshow_player_sample.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다.// #include "stdafx.h"#include #include #include #pragma comment(lib, "Strmiids") using namespace std; int _tmain(int argc, _TCHAR* argv[]){ _wsetlocale(LC_ALL, L"korean"); IGraphBuilder *pG..