comparison rv10.c @ 2522:e25782262d7d libavcodec

kill warnings patch by (Mns Rullgrd <mru inprovide com>)
author michael
date Thu, 24 Feb 2005 19:08:50 +0000
parents f67b63ed036d
children 308e8bdf5921
comparison
equal deleted inserted replaced
2521:d3885f927bc7 2522:e25782262d7d
285 s->y_dc_scale_table= 285 s->y_dc_scale_table=
286 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; 286 s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
287 } 287 }
288 } 288 }
289 289
290 #if 0 /* unused, remove? */
290 static int get_num(GetBitContext *gb) 291 static int get_num(GetBitContext *gb)
291 { 292 {
292 int n, n1; 293 int n, n1;
293 294
294 n = get_bits(gb, 16); 295 n = get_bits(gb, 16);
297 } else { 298 } else {
298 n1 = get_bits(gb, 16); 299 n1 = get_bits(gb, 16);
299 return (n << 16) | n1; 300 return (n << 16) | n1;
300 } 301 }
301 } 302 }
303 #endif
302 304
303 #endif //CONFIG_ENCODERS 305 #endif //CONFIG_ENCODERS
304 306
305 /* read RV 1.0 compatible frame header */ 307 /* read RV 1.0 compatible frame header */
306 static int rv10_decode_picture_header(MpegEncContext *s) 308 static int rv10_decode_picture_header(MpegEncContext *s)