summaryrefslogtreecommitdiffstats
path: root/drivers/radeon/README
diff options
context:
space:
mode:
authornick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-27 18:36:02 +0000
committernick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-27 18:36:02 +0000
commitc97e30a16758ec7ab3aa13b0ca7a7386c688f3f0 (patch)
tree79004a4c139cab3402bd4fb5db19991057a5a963 /drivers/radeon/README
parent01d80d0fe2c33e5f6ec3c82e66ae32eecadac38d (diff)
downloadmpv-c97e30a16758ec7ab3aa13b0ca7a7386c688f3f0.tar.bz2
mpv-c97e30a16758ec7ab3aa13b0ca7a7386c688f3f0.tar.xz
radeon_vid new features:
- tested UYVY format and known as working - YV12, I420, IYUV direct support (were missed: p23_blank_lines_at_top, p23_v_accum_init in radeon_vid_display_video - good info for Y800 support ;) - experimental support for Rage128/Rage128Pro chips git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3165 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'drivers/radeon/README')
-rw-r--r--drivers/radeon/README44
1 files changed, 44 insertions, 0 deletions
diff --git a/drivers/radeon/README b/drivers/radeon/README
index db6371ad35..efa1938e9d 100644
--- a/drivers/radeon/README
+++ b/drivers/radeon/README
@@ -21,4 +21,48 @@ and at least '8bpp packed pixel support' compiled and installed as module.
(But if you plan to use this module with mplayer you also should have
16bpp, 24bpp and 32bpp pixel support compiled as modules).
+
+ Radeon video overlay
+ ====================
+
+Was designed for mplayer and currently can be used only by mplayer.
+It's RGB-YUV BES for radeon cards (althrough there is experimental
+support for rage128 / rage128pro chips).
+
+Installation:
+~~~~~~~~~~~~~
+
+After building modules just copy them to:
+/lib/modules/$(LINUX_VER)/kernel/drivers/video
+directory.
+Don't forget about:
+depmod -a
+
+If you are doing it first time then create the device then execute
+following command:
+mknod /dev/radeon_vid c 178 0
+for radeon_vid.o
+mknod /dev/rage128_vid c 178 0
+for rage128_vid.o
+
+Using with mplayer:
+~~~~~~~~~~~~~~~~~~~
+
+Currently there is only way to use ATI's drivers:
+mplayer -vo vesa:lvo:/dev/radeon_vid -<your options> filename
+or
+mplayer -vo vesa:lvo:/dev/rage128_vid -<your options> filename
+
+Note:
+~~~~~
+You can pass only options with can be recognized by vo_vesa driver.
+(Indeed radeon_vid and rage128_vid are stupid things and can create
+video overlay only. But mode switching and other adjustement performs
+vo_vesa driver. This mean that they use VESA BIOS as graphics server).
+
+Conslusion:
+~~~~~~~~~~~
+This stuff (radeon(rage128)_vid) currently doesn't support any standards.
+So after implementing linux standards I'll fully rewrite this driver.
+
Enjoy \ No newline at end of file