mirror of https://github.com/FFmpeg/FFmpeg.git
Compare commits
2 Commits
0ae8df5f2c
...
fc3893f5e7
| Author | SHA1 | Date |
|---|---|---|
|
|
fc3893f5e7 | |
|
|
32cefd3789 |
2
Makefile
2
Makefile
|
|
@ -184,7 +184,7 @@ clean::
|
|||
$(RM) -rf coverage.info coverage.info.in lcov
|
||||
|
||||
distclean:: clean
|
||||
$(RM) .version config.asm config.h config_components.h mapfile \
|
||||
$(RM) .version config.asm config.h config_components.* mapfile \
|
||||
ffbuild/.config ffbuild/config.* libavutil/avconfig.h \
|
||||
version.h libavutil/ffversion.h libavcodec/codec_names.h \
|
||||
libavcodec/bsf_list.c libavformat/protocol_list.c \
|
||||
|
|
|
|||
|
|
@ -392,17 +392,17 @@ static av_cold int codecctl_intp(AVCodecContext *avctx,
|
|||
int width = -30;
|
||||
int res;
|
||||
|
||||
snprintf(buf, sizeof(buf), "%s:", ctlidstr[id]);
|
||||
av_log(avctx, AV_LOG_DEBUG, " %*s%d\n", width, buf, *ptr);
|
||||
|
||||
res = aom_codec_control(&ctx->encoder, id, ptr);
|
||||
if (res != AOM_CODEC_OK) {
|
||||
snprintf(buf, sizeof(buf), "Failed to set %s codec control",
|
||||
snprintf(buf, sizeof(buf), "Failed to get %s codec control",
|
||||
ctlidstr[id]);
|
||||
log_encoder_error(avctx, buf);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
snprintf(buf, sizeof(buf), "%s:", ctlidstr[id]);
|
||||
av_log(avctx, AV_LOG_DEBUG, " %*s%d\n", width, buf, *ptr);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue