mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-26 09:28:07 +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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnOk(wxCommandEvent & event)
|
void OnOk(wxCommandEvent & WXUNUSED(event))
|
||||||
{
|
{
|
||||||
if (mDontShow->GetValue())
|
if (mDontShow->GetValue())
|
||||||
{
|
{
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user