source: trunk/Utilities/FFmpeg/FFmpegApp/FFmpegApp.cpp @ 937

Last change on this file since 937 was 572, checked in by roman, 8 years ago

Upgraded to VS 2013 and checked with current Zeranoe FFmpeg

  • Property svn:keywords set to Id
File size: 692 bytes
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2008-2016
3// Created by Roman Ryltsov roman@alax.info
4
5#include "stdafx.h"
6
7extern "C" 
8{
9        // NOTE: Additional directory ..\zeranoe.com\dev\include gets to the files
10        #include "libavcodec\avcodec.h"
11}
12
13// NOTE: Additional directory ..\zeranoe.com\dev\lib gets to the files
14#pragma comment(lib, "avcodec.lib")
15
16// NOTE: Be sure to copy DLL files from ..\zeranoe.com\shared\bin to the directory of the FFmpegApp.exe binary
17int _tmain(int argc, _TCHAR* argv[])
18{
19        _tprintf(_T("Trying avcodec_register_all... "));
20        avcodec_register_all();
21        _tprintf(_T("Done.\n"));
22        return 0;
23}
24
Note: See TracBrowser for help on using the repository browser.