diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-03 15:35:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-03 15:58:27 +0200 |
commit | 3e7b4b9fbd463b06e1fe6353b15fb62e3d9c18cd (patch) | |
tree | de1b45902a0cba5dee855229f92dd5cfb447090f | |
parent | 768ef0f19e4f553a307f4b5e16d252a32d5dd8d3 (diff) | |
download | ffmpeg-3e7b4b9fbd463b06e1fe6353b15fb62e3d9c18cd.tar.gz |
Add direct link to ML in missing_feature_sample()
Reviewed-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | ffmpeg.c | 2 | ||||
-rw-r--r-- | libavcodec/utils.c | 2 | ||||
-rw-r--r-- | libavutil/log.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1867,7 +1867,7 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output) av_log(ist->dec_ctx, AV_LOG_WARNING, "has_b_frames is larger in decoder than demuxer"); av_log(ist->dec_ctx, AV_LOG_WARNING, "If you want to help, upload a sample " "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ " - "and contact the ffmpeg-devel mailing list.\n"); + "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n"); } if (*got_output || ret<0 || pkt->size) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 565e2ffa58..622298d056 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -3367,7 +3367,7 @@ void av_log_ask_for_sample(void *avc, const char *msg, ...) av_vlog(avc, AV_LOG_WARNING, msg, argument_list); av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample " "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ " - "and contact the ffmpeg-devel mailing list.\n"); + "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n"); va_end(argument_list); } diff --git a/libavutil/log.c b/libavutil/log.c index cc51cc0133..cee7cef40e 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -396,7 +396,7 @@ static void missing_feature_sample(int sample, void *avc, const char *msg, if (sample) av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample " "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ " - "and contact the ffmpeg-devel mailing list.\n"); + "and contact the ffmpeg-devel mailing list. (ffmpeg-devel@ffmpeg.org)\n"); } void avpriv_request_sample(void *avc, const char *msg, ...) |