diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-07-17 15:20:44 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-07-17 15:20:44 +0000 |
commit | 7d3f2046508548f82c0a1ecb31e0e04f2c055df7 (patch) | |
tree | 4827bee197fef24d5e7dcf51d9ac3d4902b8dc63 /src | |
parent | 51970dcbe086a735eda97d64da99eb43076a782b (diff) | |
download | xine-lib-7d3f2046508548f82c0a1ecb31e0e04f2c055df7.tar.gz xine-lib-7d3f2046508548f82c0a1ecb31e0e04f2c055df7.tar.bz2 |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_aa.c | 9 |
1 files changed, 7 insertions, 2 deletions
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; |