1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-26 09:28:07 +02:00
This commit is contained in:
v.audacity 2013-08-21 23:19:19 +00:00
parent ccec954f06
commit 414456fa06
2 changed files with 3 additions and 3 deletions

View File

@ -150,7 +150,7 @@ to download or locate the FFmpeg libraries."
return; return;
} }
void OnOk(wxCommandEvent & event) void OnOk(wxCommandEvent & WXUNUSED(event))
{ {
if (mDontShow->GetValue()) if (mDontShow->GetValue())
{ {

View File

@ -246,7 +246,7 @@ void ExportFFmpeg::Destroy()
delete this; delete this;
} }
bool ExportFFmpeg::CheckFileName(wxFileName &filename, int format) bool ExportFFmpeg::CheckFileName(wxFileName & WXUNUSED(filename), int WXUNUSED(format))
{ {
bool result = true; bool result = true;
if (!CheckFFmpegPresence()) if (!CheckFFmpegPresence())
@ -545,7 +545,7 @@ bool ExportFFmpeg::Finalize()
if ((codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) if ((codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME)
|| codec->id == CODEC_ID_FLAC || codec->id == CODEC_ID_FLAC
|| mEncAudioCodecCtx->frame_size == 1 || mEncAudioCodecCtx->frame_size == 1
|| gPrefs->Read(wxT("/FileFormats/OverrideSmallLastFrame"),(long)1) || gPrefs->Read(wxT("/FileFormats/OverrideSmallLastFrame"), true)
) )
{ {
int nFrameSizeTmp = mEncAudioCodecCtx->frame_size; int nFrameSizeTmp = mEncAudioCodecCtx->frame_size;