Browse code

lavfi/ebur128: use ff_ prefix

Signed-off-by: Kyle Swanson <k@ylo.ph>

Kyle Swanson authored on 2016/11/14 10:11:07
Showing 1 changed files
... ...
@@ -81,15 +81,15 @@ enum channel {
81 81
  *  modes that suit your needs, as performance will be better.
82 82
  */
83 83
 enum mode {
84
-  /** can call ebur128_loudness_momentary */
84
+  /** can call ff_ebur128_loudness_momentary */
85 85
     FF_EBUR128_MODE_M = (1 << 0),
86
-  /** can call ebur128_loudness_shortterm */
86
+  /** can call ff_ebur128_loudness_shortterm */
87 87
     FF_EBUR128_MODE_S = (1 << 1) | FF_EBUR128_MODE_M,
88
-  /** can call ebur128_loudness_global_* and ebur128_relative_threshold */
88
+  /** can call ff_ebur128_loudness_global_* and ff_ebur128_relative_threshold */
89 89
     FF_EBUR128_MODE_I = (1 << 2) | FF_EBUR128_MODE_M,
90
-  /** can call ebur128_loudness_range */
90
+  /** can call ff_ebur128_loudness_range */
91 91
     FF_EBUR128_MODE_LRA = (1 << 3) | FF_EBUR128_MODE_S,
92
-  /** can call ebur128_sample_peak */
92
+  /** can call ff_ebur128_sample_peak */
93 93
     FF_EBUR128_MODE_SAMPLE_PEAK = (1 << 4) | FF_EBUR128_MODE_M,
94 94
 };
95 95