File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
#include < iostream>
2
- #include < iomanip>
3
2
4
3
#include < AvTranscoder/Description.hpp>
5
4
@@ -8,5 +7,16 @@ int main( int argc, char** argv )
8
7
// std::cout << "avinfo" << std::endl;
9
8
std::vector<std::string> inputExtension = avtranscoder::getInputExtensions ();
10
9
std::vector<std::string> outputExtension = avtranscoder::getOutputExtensions ();
10
+
11
+ std::cout << " ----- inputExtension -----" << std::endl;
12
+ std::cout << " nb inputExtension: " << inputExtension.size () << std::endl;
13
+ for ( std::vector<std::string>::iterator it = inputExtension.begin (); it != inputExtension.end (); ++it )
14
+ std::cout << *it << std::endl;
15
+
16
+ std::cout << " ----- outputExtension -----" << std::endl;
17
+ std::cout << " nb outputExtension: " << outputExtension.size () << std::endl;
18
+ for ( std::vector<std::string>::iterator it = outputExtension.begin (); it != outputExtension.end (); ++it )
19
+ std::cout << *it << std::endl;
20
+
11
21
return 0 ;
12
22
}
You can’t perform that action at this time.
0 commit comments