FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions
golomb.c File Reference
#include <stdint.h>
#include <stdio.h>
#include "libavutil/internal.h"
#include "libavutil/mem.h"
#include "libavcodec/get_bits.h"
#include "libavcodec/golomb.h"
#include "libavcodec/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)
 
#define EXTEND_L(i)   ((i) << 4 | (i) & 15)
 

Functions

int main (void)
 

Macro Definition Documentation

#define COUNT   8191

Definition at line 31 of file golomb.c.

Referenced by main().

#define SIZE   (COUNT * 4)

Definition at line 32 of file golomb.c.

Referenced by main().

#define EXTEND (   i)    ((i) << 3 | (i) & 7)

Referenced by main().

#define EXTEND_L (   i)    ((i) << 4 | (i) & 15)

Referenced by main().

Function Documentation

int main ( void  )

Definition at line 34 of file golomb.c.