Merge "stagefright aacenc: Make the bits to write in WriteBits unsigned"
This commit is contained in:
@ -76,7 +76,7 @@ Word16 GetBitsAvail(HANDLE_BIT_BUF hBitBuf);
|
|||||||
|
|
||||||
|
|
||||||
Word16 WriteBits(HANDLE_BIT_BUF hBitBuf,
|
Word16 WriteBits(HANDLE_BIT_BUF hBitBuf,
|
||||||
Word32 writeValue,
|
UWord32 writeValue,
|
||||||
Word16 noBitsToWrite);
|
Word16 noBitsToWrite);
|
||||||
|
|
||||||
void ResetBitBuf(HANDLE_BIT_BUF hBitBuf,
|
void ResetBitBuf(HANDLE_BIT_BUF hBitBuf,
|
||||||
|
@ -138,7 +138,7 @@ Word16 GetBitsAvail(HANDLE_BIT_BUF hBitBuf)
|
|||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
Word16 WriteBits(HANDLE_BIT_BUF hBitBuf,
|
Word16 WriteBits(HANDLE_BIT_BUF hBitBuf,
|
||||||
Word32 writeValue,
|
UWord32 writeValue,
|
||||||
Word16 noBitsToWrite)
|
Word16 noBitsToWrite)
|
||||||
{
|
{
|
||||||
Word16 wBitPos;
|
Word16 wBitPos;
|
||||||
|
Reference in New Issue
Block a user