X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Flibxvid_rc.c;h=076c32c413564535d7e94ef2b8b3250473db2594;hb=eff2861a757b8a46398e6fcb844b960b4775daad;hp=0e25a07502a598c928ff44e651109ebab3da6e2e;hpb=037522a75adee47f656b6f73ed682ee29e65eee3;p=ffmpeg diff --git a/libavcodec/libxvid_rc.c b/libavcodec/libxvid_rc.c index 0e25a07502a..076c32c4135 100644 --- a/libavcodec/libxvid_rc.c +++ b/libavcodec/libxvid_rc.c @@ -48,7 +48,7 @@ av_cold int ff_xvid_rate_control_init(MpegEncContext *s) fd = avpriv_tempfile("xvidrc.", &tmp_name, 0, s->avctx); if (fd < 0) { - av_log(NULL, AV_LOG_ERROR, "Can't create temporary pass2 file.\n"); + av_log(s, AV_LOG_ERROR, "Can't create temporary pass2 file.\n"); return fd; } @@ -69,7 +69,7 @@ av_cold int ff_xvid_rate_control_init(MpegEncContext *s) if (write(fd, tmp, strlen(tmp)) < 0) { int ret = AVERROR(errno); - av_log(NULL, AV_LOG_ERROR, "Error %s writing 2pass logfile\n", av_err2str(ret)); + av_log(s, AV_LOG_ERROR, "Error %s writing 2pass logfile\n", av_err2str(ret)); av_free(tmp_name); close(fd); return ret; @@ -92,7 +92,7 @@ av_cold int ff_xvid_rate_control_init(MpegEncContext *s) if (xvid_plugin_2pass2(NULL, XVID_PLG_CREATE, &xvid_plg_create, &s->rc_context.non_lavc_opaque) < 0) { - av_log(NULL, AV_LOG_ERROR, "xvid_plugin_2pass2 failed\n"); + av_log(s, AV_LOG_ERROR, "xvid_plugin_2pass2 failed\n"); return -1; } return 0; @@ -127,7 +127,7 @@ float ff_xvid_rate_estimate_qscale(MpegEncContext *s, int dry_run) xvid_plg_data.type = s->last_pict_type; if (xvid_plugin_2pass2(s->rc_context.non_lavc_opaque, XVID_PLG_AFTER, &xvid_plg_data, NULL)) { - av_log(s->avctx, AV_LOG_ERROR, + av_log(s, AV_LOG_ERROR, "xvid_plugin_2pass2(handle, XVID_PLG_AFTER, ...) FAILED\n"); return -1; } @@ -137,7 +137,7 @@ float ff_xvid_rate_estimate_qscale(MpegEncContext *s, int dry_run) xvid_plg_data.quant = 0; if (xvid_plugin_2pass2(s->rc_context.non_lavc_opaque, XVID_PLG_BEFORE, &xvid_plg_data, NULL)) { - av_log(s->avctx, AV_LOG_ERROR, + av_log(s, AV_LOG_ERROR, "xvid_plugin_2pass2(handle, XVID_PLG_BEFORE, ...) FAILED\n"); return -1; }