diff utils.c @ 9891:7ad7d4094d1f libavcodec

Rename ff_log_missing_feature() to av_log_missing_feature().
author rbultje
date Mon, 29 Jun 2009 19:07:04 +0000
parents f114b5f2ac47
children 0ac7e80ecc76
line wrap: on
line diff
--- a/utils.c	Mon Jun 29 09:02:07 2009 +0000
+++ b/utils.c	Mon Jun 29 19:07:04 2009 +0000
@@ -1191,19 +1191,19 @@
         return 0;
 }
 
-void ff_log_missing_feature(void *avc, const char *feature, int want_sample)
+void av_log_missing_feature(void *avc, const char *feature, int want_sample)
 {
     av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
             "version to the newest one from SVN. If the problem still "
             "occurs, it means that your file has a feature which has not "
             "been implemented.", feature);
     if(want_sample)
-        ff_log_ask_for_sample(avc, NULL);
+        av_log_ask_for_sample(avc, NULL);
     else
         av_log(avc, AV_LOG_WARNING, "\n");
 }
 
-void ff_log_ask_for_sample(void *avc, const char *msg)
+void av_log_ask_for_sample(void *avc, const char *msg)
 {
     if (msg)
         av_log(avc, AV_LOG_WARNING, "%s ", msg);