Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: fix max bits in ltp prefix code

2016-03-12 Thread Thilo Borgmann
Am 12.03.16 um 01:57 schrieb Michael Niedermayer: > On Fri, Mar 11, 2016 at 10:40:06PM +0100, Thilo Borgmann wrote: >> Am 11.03.16 um 22:04 schrieb Umair Khan: >>> The maximum number of bits int the prefix code for >>> p(0) is 4. By setting it as 3, we were missing the >>> last 0 bit. >>> This fixe

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: fix max bits in ltp prefix code

2016-03-11 Thread Michael Niedermayer
On Fri, Mar 11, 2016 at 10:40:06PM +0100, Thilo Borgmann wrote: > Am 11.03.16 um 22:04 schrieb Umair Khan: > > The maximum number of bits int the prefix code for > > p(0) is 4. By setting it as 3, we were missing the > > last 0 bit. > > This fixes bug #4715 present on the trac. > > > > Signed-off-

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: fix max bits in ltp prefix code

2016-03-11 Thread Carl Eugen Hoyos
Thilo Borgmann mail.de> writes: > > libavcodec/alsdec.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > Ok. Then please push, the days of the monkeys are long gone;-) Carl Eugen (Or explicitly ask for pushing if you are away.) ___ f

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: fix max bits in ltp prefix code

2016-03-11 Thread Thilo Borgmann
Am 11.03.16 um 22:04 schrieb Umair Khan: > The maximum number of bits int the prefix code for > p(0) is 4. By setting it as 3, we were missing the > last 0 bit. > This fixes bug #4715 present on the trac. > > Signed-off-by: Umair Khan > --- > libavcodec/alsdec.c | 2 +- > 1 file changed, 1 inser

[FFmpeg-devel] [PATCH] avcodec/alsdec: fix max bits in ltp prefix code

2016-03-11 Thread Umair Khan
The maximum number of bits int the prefix code for p(0) is 4. By setting it as 3, we were missing the last 0 bit. This fixes bug #4715 present on the trac. Signed-off-by: Umair Khan --- libavcodec/alsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/alsdec.c b/