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/internal.h | |
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/internal.h')
-rw-r--r-- | libavcodec/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 89045fcb10..8adf2e736b 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -37,7 +37,7 @@ * message which tells the user how to report samples to the development * mailing list. */ -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); /** * Logs a generic warning message asking for a sample. @@ -45,7 +45,7 @@ void ff_log_missing_feature(void *avc, const char *feature, int want_sample); * a pointer to an AVClass struct * @param[in] msg string containing an optional message, or NULL if no message */ -void ff_log_ask_for_sample(void *avc, const char *msg); +void av_log_ask_for_sample(void *avc, const char *msg); /** * Determines whether pix_fmt is a hardware accelerated format. |