]> git.sesse.net Git - ffmpeg/commitdiff
Add direct link to ML in missing_feature_sample()
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 3 Jun 2014 13:35:09 +0000 (15:35 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 3 Jun 2014 13:58:27 +0000 (15:58 +0200)
Reviewed-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
ffmpeg.c
libavcodec/utils.c
libavutil/log.c

index dec26ce7b2b516966aa64692c20c5ade69216b68..dd2c3e2093e4da3388895bf7d5d873c45c5376c8 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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)
index 565e2ffa580de5c5fce80063048243ca94a7ebbc..622298d0564e52ea7562a9da5869174529ff6dde 100644 (file)
@@ -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);
 }
index cc51cc01330aafdae74cb178ea9d0868e6676581..cee7cef40ea16fbeae9221c19136c349742d1e97 100644 (file)
@@ -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, ...)