]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/libmpcodecs/img_format.c
lavfi/mp: add ff_ prefix to exported symbols
[ffmpeg] / libavfilter / libmpcodecs / img_format.c
index ba870421d3278b832947fd61d7adcedb91e9f088..380f3b0328820770eee8bf5d50bd5b04a6032d4e 100644 (file)
@@ -20,7 +20,7 @@
 #include "img_format.h"
 #include "stdio.h"
 
-const char *vo_format_name(int format)
+const char *ff_vo_format_name(int format)
 {
     static char unknown_format[20];
     switch(format)
@@ -107,7 +107,7 @@ const char *vo_format_name(int format)
     return unknown_format;
 }
 
-int mp_get_chroma_shift(int format, int *x_shift, int *y_shift)
+int ff_mp_get_chroma_shift(int format, int *x_shift, int *y_shift)
 {
     int xs = 0, ys = 0;
     int bpp;