Chromaprint 1.4 Fix

This commit is contained in:
Iacopo Isimbaldi
2016-12-07 23:17:40 +01:00
parent d8447c7906
commit 3c8b1877e2
3 changed files with 41 additions and 2 deletions
+29
View File
@@ -0,0 +1,29 @@
From 581f93f37ef2e7a00662828ed0348d1edb9041fe Mon Sep 17 00:00:00 2001
From: "Georgi D. Sotirov" <gdsotirov@dir.bg>
Date: Tue, 6 Dec 2016 21:07:59 +0100
Subject: [PATCH] lavf/chromaprint: Update for version 1.4
Fixes ticket #5997.
---
libavformat/chromaprint.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavformat/chromaprint.c b/libavformat/chromaprint.c
index 8c9a6c0..4da02be 100644
--- a/libavformat/chromaprint.c
+++ b/libavformat/chromaprint.c
@@ -39,7 +39,11 @@ typedef struct ChromaprintMuxContext {
int silence_threshold;
int algorithm;
FingerprintFormat fp_format;
+#if CPR_VERSION_INT >= AV_VERSION_INT(1, 4, 0)
+ ChromaprintContext *ctx;
+#else
ChromaprintContext ctx;
+#endif
} ChromaprintMuxContext;
static void cleanup(ChromaprintMuxContext *cpr)
--
2.1.4