# HG changeset patch # User michael # Date 1077571109 0 # Node ID bc8f5e1635b93de4bf166a5a5f246e05598cc01f # Parent fcbf31baa1afa519fdd14f232976eadcb30e10b9 av_log() patch by ("Steven M. Schultz" ) diff -r fcbf31baa1af -r bc8f5e1635b9 ppc/mpegvideo_ppc.c --- a/ppc/mpegvideo_ppc.c Mon Feb 23 20:56:56 2004 +0000 +++ b/ppc/mpegvideo_ppc.c Mon Feb 23 21:18:29 2004 +0000 @@ -55,14 +55,14 @@ if ((((long)(s->q_intra_matrix) & 0x0f) != 0) || (((long)(s->q_inter_matrix) & 0x0f) != 0)) { - fprintf(stderr, "Internal Error: q-matrix blocks must be 16-byte aligned " + av_log(s->avctx, AV_LOG_INFO, "Internal Error: q-matrix blocks must be 16-byte aligned " "to use Altivec DCT. Reverting to non-altivec version.\n"); return; } if (((long)(s->intra_scantable.inverse) & 0x0f) != 0) { - fprintf(stderr, "Internal Error: scan table blocks must be 16-byte aligned " + av_log(s->avctx, AV_LOG_INFO, "Internal Error: scan table blocks must be 16-byte aligned " "to use Altivec DCT. Reverting to non-altivec version.\n"); return; }