diff options
author | Christophe Thommeret <hftom@free.fr> | 2008-04-30 14:41:24 +0100 |
---|---|---|
committer | Christophe Thommeret <hftom@free.fr> | 2008-04-30 14:41:24 +0100 |
commit | 8d953c5c5cac93671c779cbf9176c6115e7294fa (patch) | |
tree | 1a77c6f532e0eac804db6f6dbb415da3a35a827e | |
parent | 9150e5c1954b7c991a911379f21035eeeed3ccb6 (diff) | |
download | xine-lib-8d953c5c5cac93671c779cbf9176c6115e7294fa.tar.gz xine-lib-8d953c5c5cac93671c779cbf9176c6115e7294fa.tar.bz2 |
fix voraw description in xine.h
-rw-r--r-- | include/xine.h.in | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 219ec8687..eec1cce59 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -1314,12 +1314,9 @@ typedef struct { void *user_data; /* OR'ed frame_format - * a frontend must at least support rgb - * a frontend supporting yuv must support both yv12 and yuy2 - * then possible combinations are: - * XINE_VORAW_RGB ( rgb ) - * XINE_VORAW_YV12|XINE_VORAW_YUY2|XINE_VORAW_RGB ( yv12, yuy2 and rgb ) - * + * Unsupported frame formats are converted to rgb. + * XINE_VORAW_RGB is always assumed by the driver, even if not set. + * So a frontend must at least support rgb. * Be aware that rgb requires more cpu than yuv, * so avoid its usage for video playback. * However, it's usefull for single frame capture (e.g. thumbs) |