ffmpeg/libavfilter
Stefano Sabatini 0ec56d1144 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 *).

Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-28 08:03:18 +02:00
..
2011-07-04 00:01:47 +00:00
2011-09-17 19:08:30 +02:00
2011-05-21 13:48:10 +02:00
2011-09-17 19:08:30 +02:00
2011-06-02 20:06:00 +01:00
2011-09-19 12:43:25 +02:00
2011-08-27 17:23:45 +02:00
2011-09-17 19:08:30 +02:00
2011-09-12 08:48:14 +02:00
2011-09-12 08:48:16 +02:00
2011-09-21 09:00:24 +02:00
2011-09-28 08:03:11 +02:00