diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2003-10-22 20:38:09 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2003-10-22 20:38:09 +0000 |
commit | 51616b96cd2793085ae314fecde90ac9a0735a04 (patch) | |
tree | 0b39e50ada1882338f37d0225729a201c755e61c /src/post/planar/eq.c | |
parent | 35decc993a98b994662fcdca0fc537398d64a03d (diff) | |
download | xine-lib-51616b96cd2793085ae314fecde90ac9a0735a04.tar.gz xine-lib-51616b96cd2793085ae314fecde90ac9a0735a04.tar.bz2 |
Replace copy member in vo_frame_t with proc_frame and proc_slice. Increase video_out API version to 18.
CVS patchset: 5574
CVS date: 2003/10/22 20:38:09
Diffstat (limited to 'src/post/planar/eq.c')
-rw-r--r-- | src/post/planar/eq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/post/planar/eq.c b/src/post/planar/eq.c index e5991e7ea..532785b66 100644 --- a/src/post/planar/eq.c +++ b/src/post/planar/eq.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: eq.c,v 1.6 2003/10/06 21:52:43 miguelfreitas Exp $ + * $Id: eq.c,v 1.7 2003/10/22 20:38:10 komadori Exp $ * * mplayer's eq (soft video equalizer) * Copyright (C) Richard Felker @@ -417,7 +417,8 @@ static vo_frame_t *eq_get_frame(xine_video_port_t *port_gen, uint32_t width, /* replace with our own draw function */ frame->draw = eq_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; } |