summaryrefslogtreecommitdiff
path: root/libavcodec/huffyuv.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-12-04 21:13:02 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-12-04 21:13:02 +0000
commit140cb66321f2d3271d4e1a9c80eee42e0500c4fa (patch)
tree46fac4ba73ad79302383b7c8b8ae25b3d665a2cb /libavcodec/huffyuv.c
parent5b20b7328a6b0d0286b6d0f1975fbd417ae010eb (diff)
new PSNR code (now works with chroma, b frames, ...)
rename *_TYPE to FF_*_TYPE for the external API allow user specified pict_type Originally committed as revision 1308 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r--libavcodec/huffyuv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c
index 0af05d1500..13627b51e7 100644
--- a/libavcodec/huffyuv.c
+++ b/libavcodec/huffyuv.c
@@ -461,7 +461,7 @@ static int encode_init(AVCodecContext *avctx)
s->version=2;
avctx->coded_picture= &s->picture;
- s->picture.pict_type= I_TYPE;
+ s->picture.pict_type= FF_I_TYPE;
s->picture.key_frame= 1;
switch(avctx->pix_fmt){