| 
    FFmpeg
    
   | 
 
#include <stdint.h>#include <stdio.h>#include "libavutil/mem.h"#include "get_bits.h"#include "golomb.h"#include "put_bits.h"Go to the source code of this file.
Macros | |
| #define | COUNT 8191 | 
| #define | SIZE (COUNT * 4) | 
| #define | EXTEND(i) (i << 3 | i & 7) | 
Functions | |
| int | main (void) | 
| #define COUNT 8191 | 
Definition at line 30 of file golomb-test.c.
Referenced by main().
| #define SIZE (COUNT * 4) | 
Definition at line 31 of file golomb-test.c.
Referenced by main().
| #define EXTEND | ( | i | ) | (i << 3 | i & 7) | 
Referenced by main().
| int main | ( | void | ) | 
Definition at line 33 of file golomb-test.c.
 1.8.2