diff options
author | Guo, Yejun <yejun.guo@intel.com> | 2019-11-08 15:51:40 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-11-08 14:56:38 +0100 |
commit | f6e942251c59239520da3e541dc2e0d785a94bad (patch) | |
tree | cb84ce4ff4eda6508772ce324d89769982f810f1 | |
parent | 9802599ad0bef067d50ffc00b5e6b928589a7dd6 (diff) | |
download | ffmpeg-streaming-f6e942251c59239520da3e541dc2e0d785a94bad.zip ffmpeg-streaming-f6e942251c59239520da3e541dc2e0d785a94bad.tar.gz |
avfilter/vf_dnn_processing: fix fate-source
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavfilter/vf_dnn_processing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_dnn_processing.c b/libavfilter/vf_dnn_processing.c index 87ad354..a916d38 100644 --- a/libavfilter/vf_dnn_processing.c +++ b/libavfilter/vf_dnn_processing.c @@ -241,7 +241,7 @@ static int copy_from_dnn_to_frame(AVFrame *out, const DNNData *dnn_data) for(int j = 0; j < out->width * 3; j++) { int k = i * out->linesize[0] + j; int t = i * out->width * 3 + j; - out->data[0][k] = av_clip((int)(dnn_output[t] * 255.0f), 0, 255); + out->data[0][k] = av_clip_uintp2((int)(dnn_output[t] * 255.0f), 8); } } } else { |