ffmpeg/libavfilter
Stefano Sabatini 8f349b6481 lavfi: fix realloc size computation in avfilter_add_format()
Replace sizeof((*avff)->formats)
with    sizeof(*(*avff)->formats)

as the size of the array element is given by the pointed element
rather than by its pointer.

In particular fix computation with the pending patch when
sizeof(int64_t) != sizeof(int64_t *).
2011-06-19 22:58:31 +02:00
..
2011-06-02 18:24:49 +02:00
2011-06-19 22:58:31 +02:00
2011-06-02 20:06:00 +01:00
2011-06-19 19:06:55 +02:00
2011-06-15 01:36:12 +02:00
2011-06-18 02:09:07 +02:00
2011-05-25 12:54:07 +02:00
2011-04-27 03:51:04 +02:00
2011-06-19 19:13:19 +02:00