# HG changeset patch # User michael # Date 1266927253 0 # Node ID 9b61454d2feee956cad03dad4652d65f6135e756 # Parent 3942cf6cdad3c940b9676624d67d783c53044483 Clarify non constness of src in av_fifo_generic_write() diff -r 3942cf6cdad3 -r 9b61454d2fee fifo.c --- a/fifo.c Mon Feb 22 00:34:08 2010 +0000 +++ b/fifo.c Tue Feb 23 12:14:13 2010 +0000 @@ -78,6 +78,7 @@ 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;