Converter API New Version for mistinfo
This commit is contained in:
parent
68f44c3d29
commit
5db07ea5ed
2 changed files with 62 additions and 0 deletions
18
lib/converter.h
Normal file
18
lib/converter.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include "json.h"
|
||||
|
||||
typedef std::map<std::string,std::string> codecInfo;
|
||||
typedef std::map<std::string,codecInfo> converterInfo;
|
||||
|
||||
namespace Converter {
|
||||
class Converter {
|
||||
public:
|
||||
Converter();
|
||||
converterInfo & getCodecs();
|
||||
private:
|
||||
void fillFFMpegEncoders();
|
||||
converterInfo allCodecs;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue