| 495 | } |
| 496 | |
| 497 | static void missing_feature_sample(int sample, void *avc, const char *msg, |
| 498 | va_list argument_list) |
| 499 | { |
| 500 | av_vlog(avc, AV_LOG_WARNING, msg, argument_list); |
| 501 | av_log(avc, AV_LOG_WARNING, " is not implemented. Update your FFmpeg " |
| 502 | "version to the newest one from Git. If the problem still " |
| 503 | "occurs, it means that your file has a feature which has not " |
| 504 | "been implemented.\n"); |
| 505 | if (sample) |
| 506 | av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample " |
| 507 | "of this file to https://streams.videolan.org/upload/ " |
| 508 | "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n"); |
| 509 | } |
| 510 | |
| 511 | void avpriv_request_sample(void *avc, const char *msg, ...) |
| 512 | { |
no test coverage detected