diff options
author | Matthias Dahl <matt2000@users.sourceforge.net> | 2001-11-05 01:18:51 +0000 |
---|---|---|
committer | Matthias Dahl <matt2000@users.sourceforge.net> | 2001-11-05 01:18:51 +0000 |
commit | fece197da9f0593a55e510766f58f06040001492 (patch) | |
tree | 4493dd5887c0631c615dcf54afeddb5d055e10f7 | |
parent | 48102b4d1f3902bad25435de463ba28c824fbba2 (diff) | |
download | xine-lib-fece197da9f0593a55e510766f58f06040001492.tar.gz xine-lib-fece197da9f0593a55e510766f58f06040001492.tar.bz2 |
disabling anything but the 3 plane YUV420 support; adding to KNOWN BUGs
CVS patchset: 957
CVS date: 2001/11/05 01:18:51
-rw-r--r-- | src/video_out/video_out_syncfb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c index 37a6e4bcc..dc13fa6af 100644 --- a/src/video_out/video_out_syncfb.c +++ b/src/video_out/video_out_syncfb.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_syncfb.c,v 1.27 2001/11/04 22:49:41 matt2000 Exp $ + * $Id: video_out_syncfb.c,v 1.28 2001/11/05 01:18:51 matt2000 Exp $ * * video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine * @@ -141,7 +141,7 @@ int gX11Fail; // internal video_out_syncfb functions // -// FIXME: function untested yet, needs testing! +// FIXME: function is broken, YUV420P3 to YUV422 conversion needs to be fixed static void write_frame_YUV422(syncfb_driver_t* this, syncfb_frame_t* frame, uint_8* y, uint_8* cr, uint_8* cb) { uint_8* crp; @@ -176,7 +176,7 @@ static void write_frame_YUV422(syncfb_driver_t* this, syncfb_frame_t* frame, uin } } -// FIXME: function changed, needs testing! +// FIXME: function is broken, YUV420P3 to YUV420P2 conversion needs to be fixed static void write_frame_YUV420P2(syncfb_driver_t* this, syncfb_frame_t* frame, uint_8* y, uint_8* cr, uint_8* cb) { uint_8* dest; @@ -849,12 +849,12 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) if(this->capabilities.palettes & (1<<VIDEO_PALETTE_YUV420P3)) { this->palette = VIDEO_PALETTE_YUV420P3; printf("video_out_syncfb: using palette yuv420p3.\n"); - } else if(this->capabilities.palettes & (1<<VIDEO_PALETTE_YUV420P2)) { +/* } else if(this->capabilities.palettes & (1<<VIDEO_PALETTE_YUV420P2)) { this->palette = VIDEO_PALETTE_YUV420P2; printf("video_out_syncfb: using palette yuv420p2.\n"); } else if(this->capabilities.palettes & (1<<VIDEO_PALETTE_YUV422)) { this->palette = VIDEO_PALETTE_YUV422; - printf("video_out_syncfb: using palette yuv422.\n"); + printf("video_out_syncfb: using palette yuv422.\n");*/ } else { printf("video_out_syncfb: aborting. (no supported palette found)\n"); |