[FFmpeg-cvslog] r10093 - trunk/libavcodec/4xm.c

michael subversion
Mon Aug 13 02:53:56 CEST 2007


Author: michael
Date: Mon Aug 13 02:53:55 2007
New Revision: 10093

Log:
replace vlc_type by version and set that from codec_tag which contains the
4xm video version from the demuxer


Modified:
   trunk/libavcodec/4xm.c

Modified: trunk/libavcodec/4xm.c
==============================================================================
--- trunk/libavcodec/4xm.c	(original)
+++ trunk/libavcodec/4xm.c	Mon Aug 13 02:53:55 2007
@@ -138,7 +138,7 @@ typedef struct FourXContext{
     DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
     uint8_t *bitstream_buffer;
     unsigned int bitstream_buffer_size;
-    int vlc_type;
+    int version;
     CFrameBuffer cfrm[CFRAME_BUFFER_COUNT];
 } FourXContext;
 
@@ -296,7 +296,7 @@ static inline void mcdc(uint16_t *dst, u
 static void decode_p_block(FourXContext *f, uint16_t *dst, uint16_t *src, int log2w, int log2h, int stride){
     const int index= size2index[log2h][log2w];
     const int h= 1<<log2h;
-    int code= get_vlc2(&f->gb, block_type_vlc[f->vlc_type][index].table, BLOCK_TYPE_VLC_BITS, 1);
+    int code= get_vlc2(&f->gb, block_type_vlc[1-f->version][index].table, BLOCK_TYPE_VLC_BITS, 1);
 
     assert(code>=0 && code<=6);
 
@@ -345,13 +345,11 @@ static int decode_p_frame(FourXContext *
         bitstream_size= get32(buf+8);
         wordstream_size= get32(buf+12);
         bytestream_size= get32(buf+16);
-        f->vlc_type= 0;
     }else{
         extra=0;
         bitstream_size = AV_RL16(buf-4);
         wordstream_size= AV_RL16(buf-2);
         bytestream_size= FFMAX(length - bitstream_size - wordstream_size, 0);
-        f->vlc_type= 1;
     }
 
     if(bitstream_size+ bytestream_size+ wordstream_size + extra != length
@@ -785,6 +783,7 @@ static void common_init(AVCodecContext *
 static int decode_init(AVCodecContext *avctx){
     FourXContext * const f = avctx->priv_data;
 
+    f->version= avctx->codec_tag == 0x40000;
     common_init(avctx);
     init_vlcs(f);
 




More information about the ffmpeg-cvslog mailing list