diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-08 21:21:38 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-08 21:21:38 +0000 |
commit | dbbec0c2f24dcd79c27dab14329905deda36b807 (patch) | |
tree | 0b6513822be4ee565207aa084285cce9d5b2da05 /libavcodec/utils.c | |
parent | 6cffaea8dbf9c1fbebdcb3df804b84a911d3fb32 (diff) | |
download | ffmpeg-dbbec0c2f24dcd79c27dab14329905deda36b807.tar.gz |
Make av_log_missing_feature an internal function, and change its name
to ff_log_missing_feature.
Originally committed as revision 16037 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 5debe0404b..9b16571f56 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1508,7 +1508,7 @@ int av_parse_video_frame_rate(AVRational *frame_rate, const char *arg) return 0; } -void av_log_missing_feature(void *avc, const char *feature, int want_sample) +void ff_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 " |