Mercurial > libavcodec.hg
diff ac3dec.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 | debe2623a70a |
| children | daa53251c64d |
line wrap: on
line diff
--- a/ac3dec.c Mon Jun 29 09:02:07 2009 +0000 +++ b/ac3dec.c Mon Jun 29 19:07:04 2009 +0000 @@ -820,7 +820,7 @@ /* spectral extension strategy */ if (s->eac3 && (!blk || get_bits1(gbc))) { if (get_bits1(gbc)) { - ff_log_missing_feature(s->avctx, "Spectral extension", 1); + av_log_missing_feature(s->avctx, "Spectral extension", 1); return -1; } /* TODO: parse spectral extension strategy info */ @@ -845,7 +845,7 @@ /* check for enhanced coupling */ if (s->eac3 && get_bits1(gbc)) { /* TODO: parse enhanced coupling strategy info */ - ff_log_missing_feature(s->avctx, "Enhanced coupling", 1); + av_log_missing_feature(s->avctx, "Enhanced coupling", 1); return -1; }
