Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

LavcProtocolLocalFile.h

Go to the documentation of this file.
00001 #ifndef Impala_Core_Stream_LavcProtocolLocalFile_h
00002 #define Impala_Core_Stream_LavcProtocolLocalFile_h
00003 
00004 // The file below contains our one and only entry point into libavcodec
00005 #include "Link/Lavc/RgbDataSrcLavcLink.h" // 
00006 
00007 #include "Core/Stream/LavcProtocolLocalFileImpl.h"
00008 
00009 namespace Impala
00010 {
00011 namespace Core
00012 {
00013 namespace Stream
00014 {
00015 
00016 static int
00017 LavcProtocolLocalFile_open(URLContext* h, const char* url, int flags)
00018 {
00019     return LavcProtocolLocalFileImpl::Open(h, url, flags);
00020 }
00021 
00022 extern URLProtocol LavcProtocolLocalFile_protocol = { 
00023     "localfile",
00024     LavcProtocolLocalFile_open,
00025     LavcProtocolImpl_read,
00026     0,
00027     LavcProtocolImpl_seek,
00028     LavcProtocolImpl_close,
00029 };
00030 
00031 } // namespace Stream
00032 } // namespace Core
00033 } // namespace Impala
00034 
00035 #endif

Generated on Fri Mar 19 09:31:18 2010 for ImpalaSrc by  doxygen 1.5.1