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/expand.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/expand.c')
-rw-r--r-- | src/post/planar/expand.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/post/planar/expand.c b/src/post/planar/expand.c index ea7a6ee60..a6db54208 100644 --- a/src/post/planar/expand.c +++ b/src/post/planar/expand.c @@ -361,9 +361,10 @@ static vo_frame_t *expand_get_frame(xine_video_port_t *port_gen, uint32_t width, * - letting the decoder copy the image * - copying the bottom black bar in expand_draw() */ - cloned_frame->copy = NULL; - cloned_frame->field = expand_field; - cloned_frame->lock = expand_lock; + cloned_frame->proc_slice = NULL; + cloned_frame->proc_frame = NULL; + cloned_frame->field = expand_field; + cloned_frame->lock = expand_lock; cloned_frame->port = port_gen; /* misuse the next pointer to remember the original */ |