acoustidFingerprinter: use ffmpeg instead of ffmpeg_2
This commit is contained in:
parent
5cecebfb2f
commit
24571a55f8
@ -17,10 +17,15 @@ stdenv.mkDerivation rec {
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "fix-build-with-libav-10.patch";
|
||||
url = "https://bitbucket.org/acoustid/acoustid-fingerprinter/commits/2c778334a9fc2f0ccf9b1d7635c116bce6509748/raw";
|
||||
sha256 = "1smyp3x5n6jwxpgw60xsijq2fn6g1gl759h1lm5agaxhcyyqn0i0";
|
||||
})
|
||||
(fetchpatch {
|
||||
name = "fix-build-failure-on-gcc-6.patch";
|
||||
url = "https://bitbucket.org/acoustid/acoustid-fingerprinter/commits/632e87969c3a5562a5d4842b03613267ba6236b2/raw";
|
||||
sha256 = "15hm9knrpqn3yqrwyjz4zh2aypwbcycd0c5svrsy1fb2h2rh05jk";
|
||||
})
|
||||
./ffmpeg.patch
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
@ -1,26 +0,0 @@
|
||||
diff --git a/decoder.h b/decoder.h
|
||||
index 028f58f..4428ac1 100644
|
||||
--- a/decoder.h
|
||||
+++ b/decoder.h
|
||||
@@ -39,6 +39,8 @@ extern "C" {
|
||||
#define AV_SAMPLE_FMT_S16 SAMPLE_FMT_S16
|
||||
#endif
|
||||
|
||||
+#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000
|
||||
+
|
||||
class Decoder
|
||||
{
|
||||
public:
|
||||
diff --git a/ffmpeg/audioconvert.h b/ffmpeg/audioconvert.h
|
||||
index 2b28e2e..a699986 100644
|
||||
--- a/ffmpeg/audioconvert.h
|
||||
+++ b/ffmpeg/audioconvert.h
|
||||
@@ -79,7 +79,7 @@ int avcodec_channel_layout_num_channels(int64_t channel_layout);
|
||||
* @param fmt_name Format name, or NULL if unknown
|
||||
* @return Channel layout mask
|
||||
*/
|
||||
-uint64_t avcodec_guess_channel_layout(int nb_channels, enum CodecID codec_id, const char *fmt_name);
|
||||
+uint64_t avcodec_guess_channel_layout(int nb_channels, enum AVCodecID codec_id, const char *fmt_name);
|
||||
|
||||
struct AVAudioConvert;
|
||||
typedef struct AVAudioConvert AVAudioConvert;
|
@ -685,9 +685,7 @@ in
|
||||
|
||||
acousticbrainz-client = callPackage ../tools/audio/acousticbrainz-client { };
|
||||
|
||||
acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter {
|
||||
ffmpeg = ffmpeg_2;
|
||||
};
|
||||
acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter { };
|
||||
|
||||
alsaequal = callPackage ../tools/audio/alsaequal { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user