1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-12 01:15:39 +01:00

In off-list discussion, Steve mentioned that kdevelop / kate highlighting recognizes "FIXME", but not "FIX-ME", which has been the Audacity convention. This commit changes Audacity code to use the "FIXME" convention (though I've never known it as convention and MSVC doesn't recognize it).

Also, minor change in WaveTrack.cpp in the effort on bug 641. Should have no functional difference.
This commit is contained in:
v.audacity
2013-08-24 20:30:47 +00:00
parent 8ebe966a8b
commit c7daafede2
17 changed files with 47 additions and 46 deletions

View File

@@ -541,7 +541,7 @@ bool ExportFFmpeg::Finalize()
// If codec supports CODEC_CAP_SMALL_LAST_FRAME, we can feed it with smaller frame
// If codec is FLAC, feed it anyway (it doesn't have CODEC_CAP_SMALL_LAST_FRAME, but it works)
// If frame_size is 1, then it's some kind of PCM codec, they don't have frames
// If user configured the exporter to feed the encoder with silence // FIX-ME: Finish the sentence!
// If user configured the exporter to feed the encoder with silence // FIXME: Finish the sentence!
if ((codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME)
|| codec->id == CODEC_ID_FLAC
|| mEncAudioCodecCtx->frame_size == 1