Commit 8a1ee23a authored by Laurent Aimar's avatar Laurent Aimar

Removed picture_heap_t::pf_setpalette

parent 6d2319a0
......@@ -62,9 +62,6 @@ struct picture_heap_t
uint32_t i_rmask; int i_rrshift, i_lrshift;
uint32_t i_gmask; int i_rgshift, i_lgshift;
uint32_t i_bmask; int i_rbshift, i_lbshift;
/** Stuff used for palettized RGB planes */
void (* pf_setpalette) ( vout_thread_t *, uint16_t *, uint16_t *, uint16_t * );
};
/*****************************************************************************
......
......@@ -153,7 +153,6 @@ int vout_InitWrapper(vout_thread_t *vout)
vout->output.i_rmask = source.i_rmask;
vout->output.i_gmask = source.i_gmask;
vout->output.i_bmask = source.i_bmask;
vout->output.pf_setpalette = NULL; /* FIXME What to do ? Seems unused anyway */
/* also set fmt_out (completly broken API) */
vout->fmt_out.i_chroma = vout->output.i_chroma;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment