From 7d3f2046508548f82c0a1ecb31e0e04f2c055df7 Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Tue, 17 Jul 2001 15:20:44 +0000 Subject: added (now required) field callback, not implemented yet but at least aaxine should work as it did before now CVS patchset: 294 CVS date: 2001/07/17 15:20:44 --- src/video_out/video_out_aa.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c index a496b9319..7950f3f97 100644 --- a/src/video_out/video_out_aa.c +++ b/src/video_out/video_out_aa.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: video_out_aa.c,v 1.9 2001/07/10 19:33:05 guenter Exp $ + * $Id: video_out_aa.c,v 1.10 2001/07/17 15:20:44 guenter Exp $ * * video_out_aa.c, ascii-art output plugin for xine * @@ -106,6 +106,11 @@ static void aa_dispose_frame (vo_frame_t *vo_img) { free (frame); } +static void aa_frame_field (vo_frame_t *vo_img, int which_field) { + /* FIXME: field picture based streams will go wrong with aa */ +} + + static vo_frame_t *aa_alloc_frame(vo_driver_t *this) { aa_frame_t *frame; @@ -113,7 +118,7 @@ static vo_frame_t *aa_alloc_frame(vo_driver_t *this) { memset (frame, 0, sizeof (aa_frame_t)); frame->vo_frame.copy = NULL; - frame->vo_frame.field = NULL; + frame->vo_frame.field = aa_frame_field; frame->vo_frame.dispose = aa_dispose_frame; return (vo_frame_t*) frame; -- cgit v1.2.3