search for: intermediate_data

Displaying 1 result from an estimated 1 matches for "intermediate_data".

Did you mean: interemediatedata
2003 Sep 10
0
[Ffmpeg-devel] libavcodec/vp3.c compile problem (fwd)
...st use in this function) Why this BSD variant exposes _A ... _G I have no idea but the work around is either to change the names or to change vp3.c like this: --- libavcodec/vp3.c.dist Wed Sep 10 11:23:12 2003 +++ libavcodec/vp3.c Wed Sep 10 12:55:44 2003 @@ -311,6 +311,25 @@ int32_t *ip = intermediate_data; int16_t *op = output_data; +#ifdef _A +#undef _A +#endif +#ifdef _B +#undef _B +#endif +#ifdef _C +#undef _C +#endif +#ifdef _D +#undef _D +#endif +#ifdef _G +#undef _G +#endif +#ifdef _H +#undef _H +#endif + int32_t _A, _B, _C, _D, _Ad, _Bd, _Cd, _Dd, _E, _F, _G, _H; int32_t _Ed,...