diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-10-14 23:03:18 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-10-14 23:03:18 +0000 |
commit | 54ef2ac454dab005c5a6a808b2c5bbcdfe544b8f (patch) | |
tree | efd95c42c8c6ffc7f983ddb50499cda2db61efd1 /src | |
parent | fa73a85e6b3c7e5439bfd34d8a66772231a9fecb (diff) | |
download | xine-lib-54ef2ac454dab005c5a6a808b2c5bbcdfe544b8f.tar.gz xine-lib-54ef2ac454dab005c5a6a808b2c5bbcdfe544b8f.tar.bz2 |
decrease xxmc priority
CVS patchset: 7035
CVS date: 2004/10/14 23:03:18
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_xxmc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/video_out/video_out_xxmc.c b/src/video_out/video_out_xxmc.c index 087acfbf6..85240956b 100644 --- a/src/video_out/video_out_xxmc.c +++ b/src/video_out/video_out_xxmc.c @@ -18,7 +18,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_xxmc.c,v 1.5 2004/10/12 19:43:20 totte67 Exp $ + * $Id: video_out_xxmc.c,v 1.6 2004/10/14 23:03:18 miguelfreitas Exp $ * * video_out_xxmc.c, X11 decoding accelerated video extension interface for xine * @@ -2479,7 +2479,10 @@ static void *init_class (xine_t *xine, void *visual_gen) { } static vo_info_t vo_info_xxmc = { - 9, /* priority */ + /* keep priority lower than Xv for now. we may increase this + * when the xxmc driver is more mature/tested. + */ + 5, /* priority */ XINE_VISUAL_TYPE_X11 /* visual type */ }; |