[FFmpeg-soc] [soc]: r1482 - in rv40: rv30.c rv34.h rv40.c
kostya
subversion at mplayerhq.hu
Sat Dec 1 08:20:47 CET 2007
Author: kostya
Date: Sat Dec 1 08:20:47 2007
New Revision: 1482
Log:
Remove unused header_size
Modified:
rv40/rv30.c
rv40/rv34.h
rv40/rv40.c
Modified: rv40/rv30.c
==============================================================================
--- rv40/rv30.c (original)
+++ rv40/rv30.c Sat Dec 1 08:20:47 2007
@@ -55,7 +55,6 @@ static int rv30_parse_slice_header(RV34D
mb_bits = ff_rv34_get_start_offset(gb, mb_size);
si->start = get_bits(gb, mb_bits);
get_bits1(gb);
- si->header_size = get_bits_count(gb);
return 0;
}
Modified: rv40/rv34.h
==============================================================================
--- rv40/rv34.h (original)
+++ rv40/rv34.h Sat Dec 1 08:20:47 2007
@@ -73,7 +73,6 @@ typedef struct SliceInfo{
int quant; ///< quantizer used for this slice
int vlc_set; ///< VLCs used for this slice
int start, end; ///< start and end macroblocks of the slice
- int header_size; ///< header size in bits
int width; ///< coded width
int height; ///< coded height
}SliceInfo;
Modified: rv40/rv40.c
==============================================================================
--- rv40/rv40.c (original)
+++ rv40/rv40.c Sat Dec 1 08:20:47 2007
@@ -128,7 +128,6 @@ static int rv40_parse_slice_header(RV34D
mb_size = ((w + 15) >> 4) * ((h + 15) >> 4);
mb_bits = ff_rv34_get_start_offset(gb, mb_size);
si->start = get_bits(gb, mb_bits);
- si->header_size = get_bits_count(gb);
return 0;
}
More information about the FFmpeg-soc
mailing list