MuseScore/mscore/mp3exporter.cpp
Roman Pudashkin ef5ecc5883 review fixes
2020-07-16 00:11:06 +02:00

29 lines
1.1 KiB
C++

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2020 MuseScore BVBA and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#include "mp3exporter.h"
#include "musescore.h"
mu::Ret Ms::Mp3Exporter::saveCurrentScoreMp3(const QString& mp3Path, int mp3Bitrate)
{
Score* score = mscore->currentScore()->masterScore();
return mscore->saveMp3(score, mp3Path, mp3Bitrate);
}