comparison libmpcodecs/vf_pp.c @ 33231:e5e8f5bc088c

use correct pp_mode type, unbreaks compilation this change was actually done in ffmpeg svn revision 16062, dated from Dec 2008
author siretart
date Sun, 24 Apr 2011 08:08:24 +0000
parents 5bc14a521e82
children f7cef684f2a0
comparison
equal deleted inserted replaced
33230:ff132cb56f40 33231:e5e8f5bc088c
43 43
44 #undef malloc 44 #undef malloc
45 45
46 struct vf_priv_s { 46 struct vf_priv_s {
47 int pp; 47 int pp;
48 pp_mode_t *ppMode[PP_QUALITY_MAX+1]; 48 pp_mode *ppMode[PP_QUALITY_MAX+1];
49 void *context; 49 void *context;
50 unsigned int outfmt; 50 unsigned int outfmt;
51 }; 51 };
52 52
53 //===========================================================================// 53 //===========================================================================//