Hi, On Thu, Jul 15, 2010 at 8:28 AM, Sebastian Vater <[email protected]> wrote: > Vitor Sessak a écrit : >> #define AVSEQ_TRACK_EFFECT_CMD_T_TREMO_ONCE 0x2F >> #define AVSEQ_TRACK_EFFECT_CMD_STOP_FX 0x1D >> >> by >> >> enum Whatever { >> AVSEQ_TRACK_EFFECT_CMD_T_TREMO_ONCE = 0x2F, >> AVSEQ_TRACK_EFFECT_CMD_STOP_FX = 0x1D, >> } >> >> breaks? > > I access them like: > if (flags & AVSEQ_TRACK_EFFECT_CMD_STOP_FX) { .. } > > Won't have change that to: > if (flags & Whatever.AVSEQ_TRACK_EFFECT_CMD_STOP_FX) { .. } > > then?
Only in C++. Not in C. :-). Ronald _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
