comparison utils.c @ 8281:f93efc084e41 libavcodec

Make av_log_missing_feature an internal function, and change its name to ff_log_missing_feature.
author stefano
date Mon, 08 Dec 2008 21:21:38 +0000
parents 596677256482
children 343f0476fd1d
comparison
equal deleted inserted replaced
8280:63aba08af550 8281:f93efc084e41
1506 return -1; 1506 return -1;
1507 else 1507 else
1508 return 0; 1508 return 0;
1509 } 1509 }
1510 1510
1511 void av_log_missing_feature(void *avc, const char *feature, int want_sample) 1511 void ff_log_missing_feature(void *avc, const char *feature, int want_sample)
1512 { 1512 {
1513 av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg " 1513 av_log(avc, AV_LOG_WARNING, "%s not implemented. Update your FFmpeg "
1514 "version to the newest one from SVN. If the problem still " 1514 "version to the newest one from SVN. If the problem still "
1515 "occurs, it means that your file has a feature which has not " 1515 "occurs, it means that your file has a feature which has not "
1516 "been implemented.", feature); 1516 "been implemented.", feature);