diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-04-03 17:19:23 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-04-03 17:19:23 +0000 |
commit | 9761bde49cfc9199c674344294441654450a0a02 (patch) | |
tree | 4a3b2744f33c0a5a9e7cb7d733a90ab15d510fa3 /libvo/jpeg_enc.c | |
parent | 58054ed4a0560997ebfebd5f05c815c0bd3b8a7e (diff) | |
download | mpv-9761bde49cfc9199c674344294441654450a0a02.tar.bz2 mpv-9761bde49cfc9199c674344294441654450a0a02.tar.xz |
Change I_TYPE -> FF_I_TYPE to fix compilation.
The whole functionality should probably be used to libavcodec though.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26322 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/jpeg_enc.c')
-rw-r--r-- | libvo/jpeg_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/jpeg_enc.c b/libvo/jpeg_enc.c index 6e7fa2dacd..eacd68e5bb 100644 --- a/libvo/jpeg_enc.c +++ b/libvo/jpeg_enc.c @@ -301,7 +301,7 @@ jpeg_enc_t *jpeg_enc_init(int w, int h, int y_psize, int y_rsize, j->s->out_format = FMT_MJPEG; j->s->intra_only = 1; j->s->encoding = 1; - j->s->pict_type = I_TYPE; + j->s->pict_type = FF_I_TYPE; j->s->y_dc_scale = 8; j->s->c_dc_scale = 8; |