[MPlayer-cvslog] r30778 - trunk/libmpcodecs/vf_remove_logo.c
Reimar Döffinger
Reimar.Doeffinger at gmx.de
Sun Feb 28 00:25:38 CET 2010
On Sat, Feb 27, 2010 at 11:32:26PM +0100, cehoyos wrote:
> + vf_priv_s *ctx = (vf_priv_s *)vf->priv;
Part of the point was to get rid of that cast...
However that it is "necessary" points to the real issue:
typedef struct { ... } vf_priv_s;
should be
struct vf_priv_s { ... };
instead, after which all those casts can be just removed.
More information about the MPlayer-cvslog
mailing list