Last change
on this file since 113 was
113,
checked in by roman, 11 years ago
|
|
-
Property svn:keywords set to
Id
|
File size:
467 bytes
|
Rev | Line | |
---|
[113] | 1 | //////////////////////////////////////////////////////////// |
---|
| 2 | // Copyright (C) Roman Ryltsov, 2008-2012 |
---|
| 3 | // Created by Roman Ryltsov roman@alax.info |
---|
| 4 | // |
---|
| 5 | // $Id: FFmpegApp.cpp 113 2012-09-05 07:23:48Z 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.