[FFmpeg-devel] [PATCH 2/2] avcodec/snowenc: Replace "return -1" by named constants

Carl Eugen Hoyos ceffmpeg at gmail.com
Mon Sep 25 02:19:47 EEST 2017


2017-09-25 1:16 GMT+02:00 James Almer <jamrial at gmail.com>:
> On 9/24/2017 8:06 PM, Carl Eugen Hoyos wrote:
>> 2017-09-23 3:14 GMT+02:00 James Almer <jamrial at gmail.com>:
>>> On 9/22/2017 10:01 PM, Michael Niedermayer wrote:
>>
>>>> +        if((ret = ff_rate_control_init(&s->m)) < 0)
>>>> +            return ret;
>>>
>>> ret = foo();
>>> if (ret < 0)
>>>     return ret;
>>>
>>> No more combined assignment and comparisons for
>>> new code if possible. It's too prone to mistakes.
>>
>> This comment looks strange given today's patches from you.

> You mean the patch where i did a sed replace of a function
> name in code that existed beforehand?

Sorry, but I believe using sed here is worse than above
code which is why I hadn't realized you used it.

Please feel free to ignore, Carl Eugen


More information about the ffmpeg-devel mailing list