summaryrefslogtreecommitdiffstats
path: root/src/sources
AgeCommit message (Collapse)Author
2021-07-21Merge branch '2.3' of github.com:mixxxdj/mixxxJan Holthuis
2021-07-21SoundSourceFFmpeg: Fix debug assertionsUwe Klotz
2021-07-20SoundSourceFFmpeg: Fix assignment in debug assertionJan Holthuis
2021-07-08Treat m4v like m4a for metadataAllen Wittenauer
2021-06-29Fix misc. typosluz paz
Found via `codespell -q 3 -S *.ts,*.po,*.rtf,./.git,./src/library,./lib,./build/wix -L ba,chang,crate,ect,everytime,german,hace,iff,jus,ith,lokal,nd,ons,pevent,pparent,preverse,seeked,sheat,sinc,splitted,substract,thru,tim,uint`
2021-06-20Merge branch '2.3' of git@github.com:mixxxdj/mixxx.gitUwe Klotz
# Conflicts: # src/util/sandbox.cpp
2021-06-20SoundSourceFLAC: Fix variable name in commentUwe Klotz
2021-06-20SoundSourceFLAC: Reword commentUwe Klotz
2021-06-19SoundSourceFLAC: Fix wrong namingUwe Klotz
2021-06-19Rename temporary variableUwe Klotz
2021-06-19lp1933001: Preserve phase of decoded FLAC samplesUwe Klotz
2021-06-18Merge branch '2.3' of git@github.com:mixxxdj/mixxx.gitUwe Klotz
# Conflicts: # .github/workflows/build.yml # .gitignore # CMakeLists.txt
2021-06-17Fix undefined behavior of toMSecsSinceEpoch() if QDateTime is not validUwe Klotz
https://doc.qt.io/qt-5/qdatetime.html#toMSecsSinceEpoch
2021-06-17Track source sync: Ignore bogus file mopdification time stampsUwe Klotz
2021-06-17Check if file is writable before making a copy for writingDaniel Schürmann
2021-06-17Merge pull request #3978 from uklotzde/source-synchronized-timestampDaniel Schürmann
DB v37: Synchronize file modified time with track source on metadata import/export
2021-06-16Merge remote-tracking branch 'upstream/2.3' into mainDaniel Schürmann
# Conflicts: # src/dialog/dlgabout.cpp
2021-06-16Merge branch 'main' of git@github.com:mixxxdj/mixxx.git into ↵Uwe Klotz
source-synchronized-timestamp # Conflicts: # src/track/trackrecord.cpp
2021-06-16SoundSourceMp3: Fix armv7hl build on gcc 11.1Uwe Klotz
2021-06-15SoundSourceM4A: Reduce log level for corrupt filesUwe Klotz
Errors are not critical unless Mixxx might crash. Errors in input data should never be critical and must be handled.
2021-06-15SoundSourceM4A: Fix armv7hl build on gcc 11.1Uwe Klotz
2021-06-15Merge branch '2.3' of git@github.com:mixxxdj/mixxx.gitUwe Klotz
2021-06-14SoundSourceFLAC: Fix armv7hl build on gcc 11.1Uwe Klotz
../src/sources/soundsourceflac.cpp: In member function 'FLAC__StreamDecoderWriteStatus mixxx::SoundSourceFLAC::flacWrite(const FLAC__Frame*, const FLAC__int32* const*)': ../src/sources/soundsourceflac.cpp:426:41: error: comparison of integer expressions of different signedness: 'mixxx::audio::SampleRate::value_t' {aka 'unsigned int'} and 'SINT' {aka 'int'} [-Werror=sign-compare] 426 | if (getSignalInfo().getSampleRate() != SINT(frame->header.sample_rate)) { | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cc1plus: all warnings being treated as errors
2021-06-10Synchronize file modified time with track source on metadata import/exportUwe Klotz
2021-05-25Merge branch '2.3' of git@github.com:mixxxdj/mixxx.gitUwe Klotz
2021-05-25Merge pull request #3898 from uklotzde/taglib-file-tagsDaniel Schürmann
lp1929311: TagLib: Check for existence of tags before export
2021-05-24Merge branch '2.3' of git@github.com:mixxxdj/mixxx.gitUwe Klotz
# Conflicts: # src/controllers/controllerengine.cpp
2021-05-24Re-add lost override keyword to default destructorsUwe Klotz
2021-05-23Use default destructorsUwe Klotz
2021-05-23TagLib: Check for existence of tags before exportUwe Klotz
2021-05-23check value rancge when converting channel count from intDaniel Schürmann
2021-05-19Merge branch '2.3' of git@github.com:mixxxdj/mixxx.gitUwe Klotz
2021-05-19Fix -Wundef warnings/errorsUwe Klotz
2021-05-17Reorder scattered code at one placeUwe Klotz
2021-05-17Rename local variable (more verbose)Uwe Klotz
2021-05-15Use move instead of copyUwe Klotz
2021-05-15Track: Rename member functions for imported metadataUwe Klotz
2021-05-15Track::exportMetadata(): Pass parameter by const-refUwe Klotz
2021-05-14Track: Return a copy of TrackMetadata/TrackRecordUwe Klotz
TrackMetadata and TrackRecord are both movable and can be returned efficiently using copy elision. https://en.cppreference.com/w/cpp/language/copy_elision
2021-05-13Indicate if modified/unmodified when importing track metadataUwe Klotz
2021-05-13Track metadata import/update: Rename enumerationUwe Klotz
2021-05-11Import metadata and cover image without temporary track objectUwe Klotz
2021-04-28Merge remote-tracking branch 'upstream/2.3' into mainDaniel Schürmann
2021-04-24FFmpeg: Add debug assertion before invoking av_read_frame()Uwe Klotz
2021-04-24FFmpeg: Remove dependency on sizeof(AVPacket)Uwe Klotz
2021-04-24Fix deprecation warnings for FFmpeg 4.4Uwe Klotz
https://pkgs.rpmfusion.org/cgit/free/mixxx.git/commit/?h=f34&id=0906bbdf0e5bd7ec4b1fccd583face042f24a056
2021-04-05Merge branch 'main' of git@github.com:mixxxdj/mixxx.git into remove-trackfileUwe Klotz
2021-04-05SoundSourceProviderFFmpeg: Rename local variableUwe Klotz
2021-04-04SoundSourceFFmpeg: Fix some clang-tidy warningsJan Holthuis
2021-04-02Refactor the Sandbox interface for FileInfo/FileAccessUwe Klotz
...to pepare for removing TrackFile.