Mercurial > hg > easaier-soundaccess
comparison data/fileio/VideoFileReaderFactory.cpp @ 191:be6d31baecb9
compilation under linux - kunbuntu V7.10 (without video support)
author | lbajardsilogic |
---|---|
date | Wed, 28 Nov 2007 13:03:45 +0000 |
parents | 13b5b9af0484 |
children | 709777a471c3 |
comparison
equal
deleted
inserted
replaced
190:61681a2bc1e6 | 191:be6d31baecb9 |
---|---|
11 published by the Free Software Foundation; either version 2 of the | 11 published by the Free Software Foundation; either version 2 of the |
12 License, or (at your option) any later version. See the file | 12 License, or (at your option) any later version. See the file |
13 COPYING included with this distribution for more information. | 13 COPYING included with this distribution for more information. |
14 */ | 14 */ |
15 | 15 |
16 #include "VideoFileReaderFactory.h" | 16 #ifdef HAVE_FFMPEG |
17 | |
18 #include <iostream> | |
19 #include <set> | |
20 | |
21 #include <QString> | |
22 #include <QFileInfo> | |
17 | 23 |
18 #include "VideoFileReader.h" | 24 #include "VideoFileReader.h" |
19 | 25 |
20 #include <QString> | 26 #include "VideoFileReaderFactory.h" |
21 #include <QFileInfo> | |
22 #include <iostream> | |
23 | 27 |
24 QString | 28 QString |
25 VideoFileReaderFactory::getKnownExtensions() | 29 VideoFileReaderFactory::getKnownExtensions() |
26 { | 30 { |
27 std::set<QString> extensions; | 31 std::set<QString> extensions; |
110 delete reader; | 114 delete reader; |
111 | 115 |
112 return 0; | 116 return 0; |
113 } | 117 } |
114 */ | 118 */ |
119 #endif |