stefano wrote: > void avfilter_formats_unref(AVFilterFormats **ref) > { > + if (!*ref) > + return; > + > int idx = find_ref_index(ref); This breaks compilation on gcc 2.95.3 (still supported) due to declaring variable after code. -- -Mike Melanson