Commit 3e7b4b9f authored by Michael Niedermayer's avatar Michael Niedermayer

Add direct link to ML in missing_feature_sample()

Reviewed-by: 's avatarClément Bœsch <u@pkh.me>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 768ef0f1
...@@ -1867,7 +1867,7 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output) ...@@ -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, "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 " 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/ " "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) if (*got_output || ret<0 || pkt->size)
......
...@@ -3367,7 +3367,7 @@ void av_log_ask_for_sample(void *avc, const char *msg, ...) ...@@ -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_vlog(avc, AV_LOG_WARNING, msg, argument_list);
av_log(avc, AV_LOG_WARNING, "If you want to help, upload a 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/ " "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); va_end(argument_list);
} }
......
...@@ -396,7 +396,7 @@ static void missing_feature_sample(int sample, void *avc, const char *msg, ...@@ -396,7 +396,7 @@ static void missing_feature_sample(int sample, void *avc, const char *msg,
if (sample) if (sample)
av_log(avc, AV_LOG_WARNING, "If you want to help, upload a 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/ " "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, ...) void avpriv_request_sample(void *avc, const char *msg, ...)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment