summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/elbg.h
diff options
context:
space:
mode:
Diffstat (limited to 'ffmpeg/libavcodec/elbg.h')
-rw-r--r--ffmpeg/libavcodec/elbg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ffmpeg/libavcodec/elbg.h b/ffmpeg/libavcodec/elbg.h
index e6f577e..22fb53f 100644
--- a/ffmpeg/libavcodec/elbg.h
+++ b/ffmpeg/libavcodec/elbg.h
@@ -37,7 +37,7 @@
* @param closest_cb Return the closest codebook to each point. Must be allocated.
* @param rand_state A random number generator state. Should be already initialized by av_lfg_init().
*/
-void ff_do_elbg(int *points, int dim, int numpoints, int *codebook,
+void avpriv_do_elbg(int *points, int dim, int numpoints, int *codebook,
int numCB, int num_steps, int *closest_cb,
AVLFG *rand_state);
@@ -45,10 +45,10 @@ void ff_do_elbg(int *points, int dim, int numpoints, int *codebook,
* Initialize the **codebook vector for the elbg algorithm. If you have already
* a codebook and you want to refine it, you shouldn't call this function.
* If numpoints < 8*numCB this function fills **codebook with random numbers.
- * If not, it calls ff_do_elbg for a (smaller) random sample of the points in
- * **points. Get the same parameters as ff_do_elbg.
+ * If not, it calls avpriv_do_elbg for a (smaller) random sample of the points in
+ * **points. Get the same parameters as avpriv_do_elbg.
*/
-void ff_init_elbg(int *points, int dim, int numpoints, int *codebook,
+void avpriv_init_elbg(int *points, int dim, int numpoints, int *codebook,
int numCB, int num_steps, int *closest_cb,
AVLFG *rand_state);