[FFmpeg-devel] [PATCH v3] Added Turing codec interface for ffmpeg

Carl Eugen Hoyos ceffmpeg at gmail.com
Tue Jan 31 14:53:50 EET 2017


2017-01-31 13:52 GMT+01:00 Carl Eugen Hoyos <ceffmpeg at gmail.com>:
> 2017-01-31 13:42 GMT+01:00 Matteo Naccari <Matteo.Naccari at 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


More information about the ffmpeg-devel mailing list