summaryrefslogtreecommitdiff
path: root/libavfilter/ebur128.h
diff options
context:
space:
mode:
authorKyle Swanson <k@ylo.ph>2016-11-13 19:11:07 -0600
committerKyle Swanson <k@ylo.ph>2016-11-13 19:11:07 -0600
commit83b6b434fffc2749b3012fa3608d90939faddbb8 (patch)
tree80bf92abf17e41ce73ef979d947fba8bc97dfd3b /libavfilter/ebur128.h
parentcd5da01daab7813f8215b1215cfe4cfcdc7a1ab4 (diff)
lavfi/ebur128: use ff_ prefix
Signed-off-by: Kyle Swanson <k@ylo.ph>
Diffstat (limited to 'libavfilter/ebur128.h')
-rw-r--r--libavfilter/ebur128.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/ebur128.h b/libavfilter/ebur128.h
index c39c80d6ec..b94cd24928 100644
--- a/libavfilter/ebur128.h
+++ b/libavfilter/ebur128.h
@@ -81,15 +81,15 @@ enum channel {
* modes that suit your needs, as performance will be better.
*/
enum mode {
- /** can call ebur128_loudness_momentary */
+ /** can call ff_ebur128_loudness_momentary */
FF_EBUR128_MODE_M = (1 << 0),
- /** can call ebur128_loudness_shortterm */
+ /** can call ff_ebur128_loudness_shortterm */
FF_EBUR128_MODE_S = (1 << 1) | FF_EBUR128_MODE_M,
- /** can call ebur128_loudness_global_* and ebur128_relative_threshold */
+ /** can call ff_ebur128_loudness_global_* and ff_ebur128_relative_threshold */
FF_EBUR128_MODE_I = (1 << 2) | FF_EBUR128_MODE_M,
- /** can call ebur128_loudness_range */
+ /** can call ff_ebur128_loudness_range */
FF_EBUR128_MODE_LRA = (1 << 3) | FF_EBUR128_MODE_S,
- /** can call ebur128_sample_peak */
+ /** can call ff_ebur128_sample_peak */
FF_EBUR128_MODE_SAMPLE_PEAK = (1 << 4) | FF_EBUR128_MODE_M,
};