[FFmpeg-cvslog] avcodec/g728_template: make hist parameter constant
Peter Ross
git at videolan.org
Mon Jun 23 10:47:57 EEST 2025
ffmpeg | branch: master | Peter Ross <pross at xvid.org> | Sun Dec 22 09:12:41 2024 +1100| [a0b9d61fafe6dd61f2229966cfef0e07d5bc7c8a] | committer: Peter Ross
avcodec/g728_template: make hist parameter constant
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a0b9d61fafe6dd61f2229966cfef0e07d5bc7c8a
---
libavcodec/g728_template.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/g728_template.c b/libavcodec/g728_template.c
index b60122ee37..dd1b1a4415 100644
--- a/libavcodec/g728_template.c
+++ b/libavcodec/g728_template.c
@@ -39,7 +39,7 @@ static void convolve(float *tgt, const float *src, int len, int n)
*/
static void do_hybrid_window(void (*vector_fmul)(float *dst, const float *src0, const float *src1, int len),
int order, int n, int non_rec, float *out,
- float *hist, float *out2, const float *window)
+ const float *hist, float *out2, const float *window)
{
int i;
float buffer1[MAX_BACKWARD_FILTER_ORDER + 1];
More information about the ffmpeg-cvslog
mailing list