Mercurial > mplayer.hg
changeset 34646:e0783849f3b6
Attempt to make --enable-zr compile again.
author | reimar |
---|---|
date | Sat, 18 Feb 2012 16:22:37 +0000 |
parents | 0bce77ccae9a |
children | 4397fd2d0a74 |
files | libvo/jpeg_enc.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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;