mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
ffvpx: update ffmpeg to 3.4.4 with AVC/AAC/HEVC/FLAC added.
This commit is contained in:
parent
eb361970c5
commit
113a86e60a
377 changed files with 133192 additions and 291 deletions
|
|
@ -28,7 +28,20 @@
|
|||
* @param gb GetBitContext
|
||||
* @param[in] stop The bitstop value (unary code of 1's or 0's)
|
||||
* @param[in] len Maximum length
|
||||
* @return Unary length/index
|
||||
* @return unary 0 based code index. This is also the length in bits of the
|
||||
* code excluding the stop bit.
|
||||
* (in case len=1)
|
||||
* 1 0
|
||||
* 0 1
|
||||
* (in case len=2)
|
||||
* 1 0
|
||||
* 01 1
|
||||
* 00 2
|
||||
* (in case len=3)
|
||||
* 1 0
|
||||
* 01 1
|
||||
* 001 2
|
||||
* 000 3
|
||||
*/
|
||||
static inline int get_unary(GetBitContext *gb, int stop, int len)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue