Signed-off-by: Andreas Cadhalpun <andreas.cadhal...@googlemail.com> --- cmdutils.c | 2 +- ffmpeg.c | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/cmdutils.c b/cmdutils.c index 9bbd54b..ff5e833 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -2048,7 +2048,7 @@ double get_rotation(AVStream *st) theta -= 360*floor(theta/360 + 0.9/360); if (fabs(theta - 90*round(theta/90)) > 2) - av_log_ask_for_sample(NULL, "Odd rotation angle\n"); + av_log(NULL, AV_LOG_WARNING, "Odd rotation angle.\n"); return theta; } diff --git a/ffmpeg.c b/ffmpeg.c index 6937a00..5c44ad2 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2069,12 +2069,10 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output) if (ist->dec_ctx->codec_id == AV_CODEC_ID_H264) { ist->st->codec->has_b_frames = ist->dec_ctx->has_b_frames; } else - av_log_ask_for_sample( - ist->dec_ctx, - "has_b_frames is larger in decoder than demuxer %d > %d ", - ist->dec_ctx->has_b_frames, - ist->st->codec->has_b_frames - ); + av_log(ist->dec_ctx, AV_LOG_WARNING, + "has_b_frames is larger in decoder than demuxer %d > %d.\n", + ist->dec_ctx->has_b_frames, + ist->st->codec->has_b_frames); } if (*got_output || ret<0) -- 2.4.6 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel