MPEG CDVA Experimentation Model (CXM)  1.0
Compact Descriptors for Visual Analisys
Data Structures | Namespaces | Macros
bitstream.h File Reference
#include "base.h"
Include dependency graph for bitstream.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

class  evx::bitstream
 

Namespaces

 evx
 

Macros

#define EVX_READ_BIT(source, bit)   (((source) >> (bit)) & 0x1)
 
#define EVX_WRITE_BIT(dest, bit, value)
 

Macro Definition Documentation

◆ EVX_READ_BIT

#define EVX_READ_BIT (   source,
  bit 
)    (((source) >> (bit)) & 0x1)

◆ EVX_WRITE_BIT

#define EVX_WRITE_BIT (   dest,
  bit,
  value 
)
Value:
(dest) = (((dest) & ~(0x1 << (bit))) | \
(((value) & 0x1) << (bit)))