Added operating system info to AVI metadata encoding.
This commit is contained in:
parent
e0f9754e80
commit
527fa3901b
|
@ -34,6 +34,7 @@
|
||||||
|
|
||||||
#include <QDate>
|
#include <QDate>
|
||||||
#include <QLocale>
|
#include <QLocale>
|
||||||
|
#include <QSysInfo>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QHeaderView>
|
#include <QHeaderView>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
@ -2117,6 +2118,8 @@ int aviRecordOpenFile( const char *filepath )
|
||||||
|
|
||||||
avi_info.add_pair( "IARL", QLocale::countryToString( locale.country() ).toStdString().c_str() );
|
avi_info.add_pair( "IARL", QLocale::countryToString( locale.country() ).toStdString().c_str() );
|
||||||
|
|
||||||
|
avi_info.add_pair( "IMED", QSysInfo::prettyProductName().toStdString().c_str() );
|
||||||
|
|
||||||
sprintf( txt, "FCEUX %s", FCEU_VERSION_STRING );
|
sprintf( txt, "FCEUX %s", FCEU_VERSION_STRING );
|
||||||
avi_info.add_pair( "ITCH", txt );
|
avi_info.add_pair( "ITCH", txt );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue