diff imgconvert.c @ 9902:9bdf9fe9018c libavcodec

Fix argument type mismatches for av_picture_crop and av_picture_fill
author mru
date Wed, 01 Jul 2009 10:36:18 +0000
parents d42979883bb1
children 266bf83f634d
line wrap: on
line diff
--- a/imgconvert.c	Wed Jul 01 06:48:27 2009 +0000
+++ b/imgconvert.c	Wed Jul 01 10:36:18 2009 +0000
@@ -1288,7 +1288,7 @@
 }
 
 int av_picture_crop(AVPicture *dst, const AVPicture *src,
-              int pix_fmt, int top_band, int left_band)
+                    enum PixelFormat pix_fmt, int top_band, int left_band)
 {
     int y_shift;
     int x_shift;