diff options
Diffstat (limited to 'src/post/planar/eq2.c')
-rw-r--r-- | src/post/planar/eq2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/post/planar/eq2.c b/src/post/planar/eq2.c index 866f3083b..289d726da 100644 --- a/src/post/planar/eq2.c +++ b/src/post/planar/eq2.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: eq2.c,v 1.8 2003/10/06 21:52:43 miguelfreitas Exp $ + * $Id: eq2.c,v 1.9 2003/10/22 20:38:10 komadori Exp $ * * mplayer's eq2 (soft video equalizer) * Software equalizer (brightness, contrast, gamma, saturation) @@ -611,7 +611,8 @@ static vo_frame_t *eq2_get_frame(xine_video_port_t *port_gen, uint32_t width, /* replace with our own draw function */ frame->draw = eq2_draw; /* decoders should not copy the frames, since they won't be displayed */ - frame->copy = NULL; + frame->proc_slice = NULL; + frame->proc_frame = NULL; return frame; } |