Skip to content

Commit

Permalink
qmplayer - better name encoded mp4
Browse files Browse the repository at this point in the history
  • Loading branch information
radekp committed Dec 11, 2013
1 parent 3ea80f0 commit f6513f8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/3rdparty/applications/qmplayer/qmplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1330,7 +1330,12 @@ void QMplayer::play(QStringList & args)

void QMplayer::encode(QString filename)
{
QString dstFile = getEncFilename(filename, ".encoded.mp4");
#ifdef QT_QWS_NEO
QString dstFile = filename + ".gta02.mp4";
#else
QString dstFile = filename + ".encoded.mp4";
#endif

if (startMencoder(filename, dstFile)) {
#ifdef QTOPIA
QtopiaApplication::setPowerConstraint(QtopiaApplication::
Expand Down

0 comments on commit f6513f8

Please sign in to comment.