mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-21 16:10:16 +08:00
warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
Originally committed as revision 3156 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -528,15 +528,9 @@ static int rv10_decode_packet(AVCodecContext *avctx,
|
||||
uint8_t *buf, int buf_size)
|
||||
{
|
||||
MpegEncContext *s = avctx->priv_data;
|
||||
int i, mb_count, mb_pos, left;
|
||||
int mb_count, mb_pos, left;
|
||||
|
||||
init_get_bits(&s->gb, buf, buf_size*8);
|
||||
#if 0
|
||||
for(i=0; i<buf_size*8 && i<200; i++)
|
||||
printf("%d", get_bits1(&s->gb));
|
||||
printf("\n");
|
||||
return 0;
|
||||
#endif
|
||||
if(s->codec_id ==CODEC_ID_RV10)
|
||||
mb_count = rv10_decode_picture_header(s);
|
||||
else
|
||||
|
Reference in New Issue
Block a user