diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-06-29 19:07:04 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-06-29 19:07:04 +0000 |
commit | ce863d7f3647ed1aca863b820db9edbdad28c871 (patch) | |
tree | 5c1c3f19d38b216c0e7e6a8cf993d76fe368b2f3 /libavcodec/utils.c | |
parent | 38e54a75abf2dbf41773f584a0afc6492baa099a (diff) | |
download | ffmpeg-ce863d7f3647ed1aca863b820db9edbdad28c871.tar.gz |
Rename ff_log_missing_feature() to av_log_missing_feature().
Originally committed as revision 19294 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index e0421fdf7e..43147a5216 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1191,19 +1191,19 @@ int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg) 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); |