Last change
on this file since 572 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
|
Rev | Line | |
---|
[113] | 1 | //////////////////////////////////////////////////////////// |
---|
[572] | 2 | // Copyright (C) Roman Ryltsov, 2008-2016 |
---|
[113] | 3 | // Created by Roman Ryltsov roman@alax.info |
---|
| 4 | |
---|
| 5 | #include "stdafx.h" |
---|
| 6 | |
---|
| 7 | extern "C" |
---|
| 8 | { |
---|
[572] | 9 | // NOTE: Additional directory ..\zeranoe.com\dev\include gets to the files |
---|
| 10 | #include "libavcodec\avcodec.h" |
---|
[113] | 11 | } |
---|
| 12 | |
---|
[572] | 13 | // NOTE: Additional directory ..\zeranoe.com\dev\lib gets to the files |
---|
| 14 | #pragma comment(lib, "avcodec.lib") |
---|
[113] | 15 | |
---|
[572] | 16 | // NOTE: Be sure to copy DLL files from ..\zeranoe.com\shared\bin to the directory of the FFmpegApp.exe binary |
---|
[113] | 17 | int _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.