The branch, master has been updated
       via  0f1f345c3724ad3608ce5675f2a863ce56b23837 (commit)
      from  941eae01b1c4ed5d50eb5934e7df8a8a110e1699 (commit)


- Log -----------------------------------------------------------------
commit 0f1f345c3724ad3608ce5675f2a863ce56b23837
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Fri Sep 26 16:17:45 2025 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Fri Sep 26 18:30:53 2025 +0200

    avcodec/x86/qpeldsp_init: Fix compilation without external assembly
    
    Broken in 2cf9e733c6a666600423a0967f23341d9f09e3c8.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

diff --git a/libavcodec/x86/qpeldsp_init.c b/libavcodec/x86/qpeldsp_init.c
index 097cda0106..2448adde88 100644
--- a/libavcodec/x86/qpeldsp_init.c
+++ b/libavcodec/x86/qpeldsp_init.c
@@ -537,9 +537,11 @@ av_cold void ff_qpeldsp_init_x86(QpelDSPContext *c)
         SET_QPEL_FUNCS(put_no_rnd_qpel, 1,  8, mmxext, );
 #endif /* HAVE_MMXEXT_EXTERNAL */
     }
+#if HAVE_SSE2_EXTERNAL
     if (EXTERNAL_SSE2(cpu_flags)) {
         c->put_no_rnd_qpel_pixels_tab[0][0] =
         c->put_qpel_pixels_tab[0][0] = put_qpel16_mc00_sse2;
         c->avg_qpel_pixels_tab[0][0] = avg_qpel16_mc00_sse2;
     }
+#endif
 }

-----------------------------------------------------------------------

Summary of changes:
 libavcodec/x86/qpeldsp_init.c | 2 ++
 1 file changed, 2 insertions(+)


hooks/post-receive
-- 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to