]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/timecode.c
Merge commit '2708c8e8efefaad337ccab1e3bf59dcde66c6bc5'
[ffmpeg] / libavutil / timecode.c
index c0c67c847868908636ae7d549d903e76f7ff5912..e9d8504ee7a68577143775d6c3ee8842c916cb44 100644 (file)
@@ -155,7 +155,7 @@ static int check_fps(int fps)
 static int check_timecode(void *log_ctx, AVTimecode *tc)
 {
     if ((int)tc->fps <= 0) {
-        av_log(log_ctx, AV_LOG_ERROR, "Timecode frame rate must be specified\n");
+        av_log(log_ctx, AV_LOG_ERROR, "Valid timecode frame rate must be specified. Minimum value is 1\n");
         return AVERROR(EINVAL);
     }
     if ((tc->flags & AV_TIMECODE_FLAG_DROPFRAME) && tc->fps != 30 && tc->fps != 60) {