2017-01-31 13:52 GMT+01:00 Carl Eugen Hoyos <ceffm...@gmail.com>:
> 2017-01-31 13:42 GMT+01:00 Matteo Naccari <matteo.nacc...@bbc.co.uk>:

>> Any news on the integration of the patch identified in the subject line?
>
> So far, you haven't removed the calls to malloc().
> Please use av_freep() (instead of av_free) to free the memory.

And please replace all:
if (condition)
do;
else {
...

with:
if (condition) {
do;
} else {
...

Carl Eugen
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to