# HG changeset patch # User reimar # Date 1329582157 0 # Node ID e0783849f3b67661010c1e74c1b9f87fcb8c4781 # Parent 0bce77ccae9a55e8e956ebc74f0ebd211dd1bfbf Attempt to make --enable-zr compile again. diff -r 0bce77ccae9a -r e0783849f3b6 libvo/jpeg_enc.c --- a/libvo/jpeg_enc.c Sat Feb 18 00:08:30 2012 +0000 +++ b/libvo/jpeg_enc.c Sat Feb 18 16:22:37 2012 +0000 @@ -81,7 +81,7 @@ qmat[qscale][i] = (int)((UINT64_C(1) << (QMAT_SHIFT-3))/ (qscale * quant_matrix[j])); } - } else if (s->dsp.fdct == fdct_ifast) { + } else if (s->dsp.fdct == ff_fdct_ifast) { for(i=0;i<64;i++) { const int j = s->dsp.idct_permutation[i]; /* 16 <= qscale * quant_matrix[i] <= 7905 */ @@ -304,7 +304,7 @@ j->s->out_format = FMT_MJPEG; j->s->intra_only = 1; j->s->encoding = 1; - j->s->pict_type = FF_I_TYPE; + j->s->pict_type = AV_PICTURE_TYPE_I; j->s->y_dc_scale = 8; j->s->c_dc_scale = 8; @@ -335,7 +335,7 @@ /* make MPV_common_init allocate important buffers, like s->block */ j->s->avctx->thread_count = 1; - if (MPV_common_init(j->s) < 0) { + if (ff_MPV_common_init(j->s) < 0) { av_free(j->s); av_free(j); return NULL;