diff --git a/libavutil/fifo.c b/libavutil/fifo.c
index 840b73a57bf7f1d0476c0b076aeccb2cf0f72e45..cfb716e53b1ba626fa9edf8fb39e27fb96027fde 100644
--- a/libavutil/fifo.c
+++ b/libavutil/fifo.c
@@ -78,6 +78,7 @@ int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) {
     return 0;
 }
 
+// src must NOT be const as it can be a context for func that may need updating (like a pointer or byte counter)
 int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
 {
     int total = size;