File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,18 @@ int main( int argc, char** argv )
17
17
std::cout << std::endl;
18
18
}
19
19
20
- // std::cout << "avinfo" << std::endl;
20
+ avtranscoder::preloadCodecsAndFormats ();
21
+
21
22
std::vector<std::string> inputExtension = avtranscoder::getInputExtensions ();
22
23
std::vector<std::string> outputExtension = avtranscoder::getOutputExtensions ();
23
24
24
- std::cout << " ----- inputExtension -----" << std::endl;
25
- std::cout << " nb inputExtension: " << inputExtension.size () << std::endl;
25
+ std::cout << " Supported input extensions: " << inputExtension.size () << std::endl;
26
26
for ( std::vector<std::string>::iterator it = inputExtension.begin (); it != inputExtension.end (); ++it )
27
- std::cout << *it << std::endl ;
27
+ std::cout << *it << " , " ; ;
28
28
29
- std::cout << " ----- outputExtension -----" << std::endl;
30
- std::cout << " nb outputExtension: " << outputExtension.size () << std::endl;
29
+ std::cout << std::endl << std::endl << " Supported output extensions: " << outputExtension.size () << std::endl;
31
30
for ( std::vector<std::string>::iterator it = outputExtension.begin (); it != outputExtension.end (); ++it )
32
- std::cout << *it << std::endl ;
33
-
31
+ std::cout << *it << " , " ;
32
+ std::cout << std::endl;
34
33
return 0 ;
35
34
}
You can’t perform that action at this time.
0 commit comments