mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-25 08:58:06 +02:00
bug 469
This commit is contained in:
parent
ccec954f06
commit
414456fa06
@ -150,7 +150,7 @@ to download or locate the FFmpeg libraries."
|
||||
return;
|
||||
}
|
||||
|
||||
void OnOk(wxCommandEvent & event)
|
||||
void OnOk(wxCommandEvent & WXUNUSED(event))
|
||||
{
|
||||
if (mDontShow->GetValue())
|
||||
{
|
||||
|
@ -246,7 +246,7 @@ void ExportFFmpeg::Destroy()
|
||||
delete this;
|
||||
}
|
||||
|
||||
bool ExportFFmpeg::CheckFileName(wxFileName &filename, int format)
|
||||
bool ExportFFmpeg::CheckFileName(wxFileName & WXUNUSED(filename), int WXUNUSED(format))
|
||||
{
|
||||
bool result = true;
|
||||
if (!CheckFFmpegPresence())
|
||||
@ -545,7 +545,7 @@ bool ExportFFmpeg::Finalize()
|
||||
if ((codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME)
|
||||
|| codec->id == CODEC_ID_FLAC
|
||||
|| mEncAudioCodecCtx->frame_size == 1
|
||||
|| gPrefs->Read(wxT("/FileFormats/OverrideSmallLastFrame"),(long)1)
|
||||
|| gPrefs->Read(wxT("/FileFormats/OverrideSmallLastFrame"), true)
|
||||
)
|
||||
{
|
||||
int nFrameSizeTmp = mEncAudioCodecCtx->frame_size;
|
||||
|
Loading…
x
Reference in New Issue
Block a user