Last change
on this file since 82 was
82,
checked in by roman, 11 years ago
|
|
-
Property svn:keywords set to
Id
|
File size:
467 bytes
|
Line | |
---|
1 | //////////////////////////////////////////////////////////// |
---|
2 | // Copyright (C) Roman Ryltsov, 2008-2012 |
---|
3 | // Created by Roman Ryltsov roman@alax.info |
---|
4 | // |
---|
5 | // $Id: FFmpegApp.cpp 82 2012-07-30 17:03:02Z roman $ |
---|
6 | |
---|
7 | #include "stdafx.h" |
---|
8 | |
---|
9 | extern "C" |
---|
10 | { |
---|
11 | #include "dev\include\libavcodec\avcodec.h" |
---|
12 | } |
---|
13 | |
---|
14 | #pragma comment(lib, "dev\\lib\\avcodec.lib") |
---|
15 | |
---|
16 | int _tmain(int argc, _TCHAR* argv[]) |
---|
17 | { |
---|
18 | _tprintf(_T("Trying avcodec_register_all... ")); |
---|
19 | avcodec_register_all(); |
---|
20 | _tprintf(_T("Done.\n")); |
---|
21 | return 0; |
---|
22 | } |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.