Re: [FFmpeg-devel] [PATCH 1/6] aacenc: remove redundant argument from coder functions

2015-08-01 Thread Claudio Freire
On Fri, Jul 31, 2015 at 9:56 PM, Michael Niedermayer wrote: > > Rostislav, Claudio > please both of you send me your public SSH keys, i think you both > should have git write access Sent mine on a private email. Let me know if you didn't get it. ___ ffm

Re: [FFmpeg-devel] [PATCH 1/6] aacenc: remove redundant argument from coder functions

2015-07-31 Thread Michael Niedermayer
On Fri, Jul 31, 2015 at 04:35:00AM -0300, Claudio Freire wrote: > On Wed, Jul 29, 2015 at 1:44 AM, Rostislav Pehlivanov > wrote: > > This commit removes a redundant argument from the functions in aaccoder. > > The argument lambda was redundant as it was just a copy of s->lambda, > > to which all f

Re: [FFmpeg-devel] [PATCH 1/6] aacenc: remove redundant argument from coder functions

2015-07-31 Thread Claudio Freire
On Wed, Jul 29, 2015 at 1:44 AM, Rostislav Pehlivanov wrote: > This commit removes a redundant argument from the functions in aaccoder. > The argument lambda was redundant as it was just a copy of s->lambda, > to which all functions have access to anyway. This cleans up the function > pointers a b

[FFmpeg-devel] [PATCH 1/6] aacenc: remove redundant argument from coder functions

2015-07-28 Thread Rostislav Pehlivanov
This commit removes a redundant argument from the functions in aaccoder. The argument lambda was redundant as it was just a copy of s->lambda, to which all functions have access to anyway. This cleans up the function pointers a bit which is helpful as there are a lot of other search_for_* functions