#include "avformat.h"
#include "internal.h"
#include "libavutil/opt.h"
#include "libavcodec/internal.h"
#include <chromaprint.h>
Go to the source code of this file.
◆ CPR_VERSION_INT
Value:
                                       CHROMAPRINT_VERSION_MINOR, \
                                       CHROMAPRINT_VERSION_PATCH)
 
Definition at line 28 of file chromaprint.c.
 
 
◆ OFFSET
◆ FLAGS
◆ FingerprintFormat
| Enumerator | 
|---|
| FINGERPRINT_RAW |  | 
| FINGERPRINT_COMPRESSED |  | 
| FINGERPRINT_BASE64 |  | 
Definition at line 32 of file chromaprint.c.
 
 
◆ deinit()
◆ write_header()
◆ write_packet()
◆ write_trailer()
◆ options
Initial value:= {
    { 
"silence_threshold", 
"threshold for detecting silence", 
OFFSET(silence_threshold), 
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 32767, 
FLAGS },
    { 
"algorithm", 
"version of the fingerprint algorithm", 
OFFSET(algorithm), 
AV_OPT_TYPE_INT, { .i64 = CHROMAPRINT_ALGORITHM_DEFAULT }, CHROMAPRINT_ALGORITHM_TEST1, INT_MAX, 
FLAGS },
}
Definition at line 163 of file chromaprint.c.
 
 
◆ chromaprint_class
Initial value:= {
    .class_name = "chromaprint muxer",
}
Definition at line 173 of file chromaprint.c.
 
 
◆ ff_chromaprint_muxer
Initial value:= {
    .name              = "chromaprint",
}
Definition at line 180 of file chromaprint.c.