diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-13 00:08:08 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-20 18:58:38 +0200 |
commit | eb3415912b187dcef9cfb3a076db579fdf82600d (patch) | |
tree | 4ffcd9513276413a3eb2473f851bfc3b4f488f07 /libavcodec/mpegvideo.h | |
parent | 8b4f7c066373a4c373292c54b469a172d63fed35 (diff) | |
download | ffmpeg-eb3415912b187dcef9cfb3a076db579fdf82600d.tar.gz |
avcodec/mpegvideo_enc: Avoid branch for sse vs nsse cmp
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 44695776ad..79c5561793 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -507,6 +507,7 @@ typedef struct MpegEncContext { int quantizer_noise_shaping; me_cmp_func ildct_cmp[2]; ///< 0 = intra, 1 = non-intra + me_cmp_func n_sse_cmp[2]; ///< either SSE or NSSE cmp func /** * ratecontrol qmin qmax limiting method |