Re: [FFmpeg-devel] [PATCH v5 1/4] avcodec/loongarch: Add wrapper for __lsx_vldx

2022-08-03 Thread Andreas Rheinhardt
Andreas Rheinhardt: > __lsx_vldx does not accept a pointer to const (in fact, > no function in lsxintrin.h does so), although it is not allowed > to modify the pointed-to buffer. Therefore this commit adds a wrapper > for it in order to constify the HEVC DSP functions in a later commit. > > Signed

[FFmpeg-devel] [PATCH v5 1/4] avcodec/loongarch: Add wrapper for __lsx_vldx

2022-08-01 Thread Andreas Rheinhardt
__lsx_vldx does not accept a pointer to const (in fact, no function in lsxintrin.h does so), although it is not allowed to modify the pointed-to buffer. Therefore this commit adds a wrapper for it in order to constify the HEVC DSP functions in a later commit. Signed-off-by: Andreas Rheinhardt ---