Commit 02e0aa20 authored by Michael Niedermayer's avatar Michael Niedermayer

faster get_bit_cache

Originally committed as revision 757 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d200cab6
...@@ -27,15 +27,19 @@ ...@@ -27,15 +27,19 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#define ALT_BITSTREAM_READER
#define ALIGNED_BITSTREAM
#include "common.h" #include "common.h"
#include "avcodec.h" #include "avcodec.h"
#include "dsputil.h" #include "dsputil.h"
#include "mpegvideo.h" #include "mpegvideo.h"
#include "bswap.h" #include "bswap.h"
#define bit_buffer_t GetBitContext #define bit_buffer_t GetBitContext
#define get_bit_cache(buf) (show_bits(buf,24)<<8)
static inline unsigned int get_bit_cache(GetBitContext *s){
OPEN_READER(re, s)
UPDATE_CACHE(re, s)
return GET_CACHE(re, s);
// CLOSE_READER(re, s)
}
/* variable length (bit) code */ /* variable length (bit) code */
typedef struct vlc_code_s { typedef struct vlc_code_s {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment