Browse Source

Document *VLC_BITS.

Originally committed as revision 21046 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 16 years ago
parent
commit
b0704443f2
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavcodec/h263.c

+ 4
- 0
libavcodec/h263.c View File

@@ -45,6 +45,10 @@
//#undef NDEBUG //#undef NDEBUG
//#include <assert.h> //#include <assert.h>


// The defines below define the number of bits that are read at once for
// reading vlc values. Changing these may improve speed and data cache needs
// be aware though that decreasing them may need the number of stages that is
// passed to get_vlc* to be increased.
#define INTRA_MCBPC_VLC_BITS 6 #define INTRA_MCBPC_VLC_BITS 6
#define INTER_MCBPC_VLC_BITS 7 #define INTER_MCBPC_VLC_BITS 7
#define CBPY_VLC_BITS 6 #define CBPY_VLC_BITS 6


Loading…
Cancel
Save