Skip to content

Commit

Permalink
remove log line if software transcoding
Browse files Browse the repository at this point in the history
  • Loading branch information
ad-astra-video committed Mar 18, 2024
1 parent 21f4628 commit 20ea8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffmpeg/decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ enum AVPixelFormat hw2pixfmt(AVCodecContext *ctx)
for (int i = 0;; i++) {
const AVCodecHWConfig *config = avcodec_get_hw_config(decoder, i);
if (!config) {
LPMS_WARN("Decoder does not support hw decoding");
//LPMS_WARN("Decoder does not support hw decoding");
return AV_PIX_FMT_NONE;
}
if (config->methods & AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX &&
Expand Down

0 comments on commit 20ea8b0

Please sign in to comment.