comparison flacdec.c @ 9891:7ad7d4094d1f libavcodec

Rename ff_log_missing_feature() to av_log_missing_feature().
author rbultje
date Mon, 29 Jun 2009 19:07:04 +0000
parents 0dce4fe6e6f3
children 3fca809be8ed
comparison
equal deleted inserted replaced
9890:956adcb2b00d 9891:7ad7d4094d1f
446 while (!get_bits1(&s->gb)) 446 while (!get_bits1(&s->gb))
447 wasted++; 447 wasted++;
448 s->curr_bps -= wasted; 448 s->curr_bps -= wasted;
449 } 449 }
450 if (s->curr_bps > 32) { 450 if (s->curr_bps > 32) {
451 ff_log_missing_feature(s->avctx, "decorrelated bit depth > 32", 0); 451 av_log_missing_feature(s->avctx, "decorrelated bit depth > 32", 0);
452 return -1; 452 return -1;
453 } 453 }
454 454
455 //FIXME use av_log2 for types 455 //FIXME use av_log2 for types
456 if (type == 0) { 456 if (type == 0) {