On 13/06/16 15:54, Diego Biurrun wrote:
> On Mon, Jun 13, 2016 at 10:22:24AM +0200, Luca Barbato wrote:
>> On 09/06/16 17:13, Diego Biurrun wrote:
>>> From: Alexandra Hájková <[email protected]>
>>> --- a/libavcodec/unary.h
>>> +++ b/libavcodec/unary.h
>>> @@ -21,36 +21,37 @@
>>>  /**
>>>   * Get unary code of limited length
>>> - * @param gb GetBitContext
>>> +:* @param bc BitstreamContext
>>
>> Looks a typo
> 
> Fixed locally.
> 
>>> -    for(i = 0; i < len && get_bits1(gb) != stop; i++);
>>> +    for (i = 0; i < len && bitstream_read_bit(bc) != stop; i++)
>>> +        ;
>>
>> looks ugly.
> 
> I don't see a better alternative.

I can survive with it =)

lu

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to