Linux Radeon OSS with vdpau (howto)
#1
Warning: This Howto assumes you know how to use ssh and howto create a file on a linux system. Furthermore you need to know what sudo is - if one is unknown to you - this is not the howto you want to follow


Introduction
After AMD proprietary department did not care for XvBA for more than 2 years now and no AMD driver since 12.10 was really usable, we got into contact with the AMD OSS devs. Within just 2 weeks, we got more working than we ever hoped with the oss radeon vdpau in comparison to fglrx binary blob xvba implementation. As it now made a whole lot of fun working with AMD hardware, we have dropped XvBA completely (it is parked in fernetmentas xvba branch).

What you get
- Bitstream Audio (including DTS-HD, TrueHD, LPCM 7.1)
- max resolution: 2048 x 1152
- mpeg2, mpeg4, h264, vc1 advanced accleration
- Bob and Temporal deinterlacing via vdpau
- 110% speed as with the fglrx implementation

Known issues for now
- On older radeon systems with UVD2 no hw decoder for mpeg-2 exists and shaders are used. Those segfault when run mutlithreaded. You can disable mpeg-2 codec via th expert settings menu Acceleration. Fusion and above is not affected by this issue.

-1.) Hardware Requirements / Software Requirements
UVD 2.2 or higher See here: http://en.wikipedia.org/wiki/Unified_Vid...abled_GPUs
Ubuntu Trusty mini or server iso installed x64.

You can download the mini.iso here: http://archive.ubuntu.com/ubuntu/dists/t...t/mini.iso

UEFI: If you need an UEFI installation, please use the server iso instead, but make sure you boot the Computer in UEFI mode, you can download the server iso from here: http://cdimage.ubuntu.com/ubuntu-server/...-amd64.iso

0.) Basic Installation and script tuning
After the mini iso is installed, continue with the following steps:

Code:
sudo apt-get update
sudo apt-get install ssh python-software-properties software-properties-common udisks upower xorg alsa-utils mesa-utils git-core librtmp0 lirc libmad0 lm-sensors libmpeg2-4 avahi-daemon libnfs1 consolekit pm-utils vdpauinfo linux-firmware mesa-vdpau-drivers
sudo apt-get dist-upgrade

Allow every user (everyone) to start X11
Code:
sudo dpkg-reconfigure x11-common

Create the kodi user and it add it the relevant groups. If you have created the kodi user during installation only do the usermod part.
Code:
sudo adduser kodi
sudo usermod -a -G cdrom,audio,video,plugdev,users,dialout,dip kodi


To use the following upstart procedure you need to create /etc/init/kodi.conf to start kodi via upstart. That scripts does only wait for your HDMI device, if you want to wait for networking, you have to add that. If you have installed kodi, make sure you read the comments, then comment the /usr/bin/kodi line and uncomment the /usr/bin/kodi line instead.
Code:
# kodi-upstart
# starts KODI on startup by using xinit.
# by default runs as kodi, to change edit below.
env USER=kodi

description     "KODI-barebones-upstart-script"
author          "Matt Filetto"

# if you use mysql you need to wait for your network device
# that means you should add 'and net-device-up IFACE!=lo' behind the udevtrigger

start on (filesystem and stopped udevtrigger)
stop on runlevel [016]

# tell upstart to respawn the process if abnormal exit
respawn
respawn limit 10 5
limit nice 21 21

script
# default 14.0 Helix version
exec su -c "xinit /usr/bin/kodi --standalone -- /usr/bin/X -bs -nolisten tcp :0" $USER
# the following entry is to get an idea, if you want to user a window manager
# make sure to comment the above kodi entry if you uncomment, it's either or!
#   exec su -c "xinit /usr/bin/startfluxbox --  /usr/bin/X -bs -nolisten tcp :0" $USER
end script

edit /etc/security/limits.conf and add before the end. remember kodi is the username, not the application. This will allow your user to get the audio thread a bit more priority.
Code:
kodi             -       nice            -1

Last thing is missing some permissions to shutdown, suspend the computer, therefore create the file /etc/polkit-1/localauthority/50-local.d/custom-actions.pkla with the following content (don't introduce line breaks, especially the Action= line must be exactly one line (especially no linebreaks or auto ".." in freedesktop.udisks.*), verify this):
Code:
[Actions for kodi user]
Identity=unix-user:kodi
Action=org.freedesktop.upower.*;org.freedesktop.consolekit.system.*;org.freedesktop.udisks.*;org.freedesktop.login1.*
ResultAny=yes
ResultInactive=yes
ResultActive=yes

[Untrusted Upgrade]
Identity=unix-user:kodi
Action=org.debian.apt.upgrade-packages;org.debian.apt.update-cache
ResultAny=yes
ResultInactive=yes
ResultActive=yes

1a) Installation Kodi 14.0 via the official ppa
Code:
sudo apt-add-repository ppa:team-xbmc/ppa
sudo apt-get update
sudo apt-get install kodi kodi-bin

Reboot of the system
We are done now with installing. We will reboot now, remember to make the following settings within kodi in step 2. It could also be good to disable the RSS Reader to save some processing power.
Code:
sudo reboot

2.) KODI settings
(Set kodi to Advanced or Expert before doing this - settings hierarchies, see in the middle of confluence)
System->Settings->System->Video output
Vertical blank sync: Let Driver choose

System ->Video->Acceleration:
VDPAU: On
Prefer VDPAU Mixer: ON
VAAPI: off

System -> Video -> Playback:
Adjust Refreshrate to match video: On
Sync Playback to Display: On
Sync Method: Video Clock (Resample Audio) -> This will automatically use Drop / Dupe for passthrough, so best out of both worlds.

advancedsettings.xml in /home/kodi/.kodi/userdata/advancedsettings.xml should contain (don't create that file / directory as root - use the kodi user):
Code:
<advancedsettings>
   <loglevel hide="false">0</loglevel>
   <samba>
    <clienttimeout>30</clienttimeout>
  </samba>
  <useddsfanart>true</useddsfanart> <!-- Do not use on Apple TV2/iOS/RPi/many Android systems -->
  <cputempcommand>sensors|sed -ne "s/Core 0: \+[-+]\([0-9]\+\).*/\1 C/p"</cputempcommand>
  <gputempcommand>sensors|sed -ne "s/temp1: \+[-+]\([0-9]\+\).*/\1 C/p"</gputempcommand>
  <gui>    
    <algorithmdirtyregions>3</algorithmdirtyregions>
    <nofliptimeout>0</nofliptimeout>
  </gui>    
<video>
  <latency>
    <delay>0</delay>
    <refresh>
      <min>23</min>
      <max>24</max>
      <delay>175</delay> <!-- set to zero or adjust if audio seems out of sync with 24p movies -->
     </refresh>
  </latency>
</video>
</advancedsettings>

Fancy Splash? (Made by forum user teeedubb)
Code:
sudo apt-get update
sudo apt-get install plymouth-label v86d
wget https://dl.dropboxusercontent.com/u/55728161/plymouth-theme-kodi-logo.deb
sudo dpkg -i plymouth-theme-kodi-logo.deb

Make sure to install all upgrade after you have followed this process. Therefore run:
Code:
sudo apt-get update
sudo apt-get dist-upgrade

Final reboot and we are done:
Code:
sudo reboot

Installation is now finished - you can start to enjoy your kodi installation


In case something should not work as you expected it, please follow the Troubleshooting steps.

Troubleshooting:
We need full debug logs that show the issue. We don't look at cut out logfiles, as most of the time, the important part is missing. Additionally get us the output of dmesg, Xorg.0.log and vdpauinfo. Don't post the logs inline, don't use google drive or something, just post links to known pastebins. Set kodi into debugging mode, redo what is causing errors and afterwards do:

Code:
sudo apt-get install pastebinit
dmesg | pastebinit
cat ~/.kodi/temp/kodi.log | pastebinit
cat /var/log/Xorg.0.log | pastebinit
DISPLAY=:0 vdpauinfo | pastebinit
dpkg -l |grep mesa | pastebinit

Mpeg-2 Crashes
If you have bad luck, you got an AMD card that does mpeg-2 decoding in shaders, which segfaults when done multithreaded. Switch Confluence to Expert and disable Mpeg-2 under Video Acceleration.

Relevant output from qvdpauinfo:
Quote:qvdpautest 0.5.2
AMD E-350 Processor
Unknown GPU

VDPAU API version : 1
VDPAU implementation : G3DVL VDPAU Driver Shared Library version 1.0

FATAL: get_bits failed : No backend implementation could be loaded.!!
MPEG DECODING (1920x1080): 59 frames/s
MPEG DECODING (1280x720): 92 frames/s
H264 DECODING (1920x1080): 38 frames/s
H264 DECODING (1280x720): 70 frames/s
VC1 DECODING (1440x1080): 85 frames/s
MPEG4 DECODING (1920x1080): 54 frames/s
MIXER WEAVE (1920x1080): 275 frames/s
MIXER BOB (1920x1080): 439 fields/s

Audio trouble shooting

Check if you audio device is muted
You can use alsamixer -c0 or alsamixer -c1 to do it manually, or use something like:
Code:
amixer set 'IEC958',0 unmute

If DTS-HD / TrueHD does not work or your kernel complains about broken edid, consider the following:

Download: https://dl.dropboxusercontent.com/u/5572...arantz.bin and save it to /lib/firmware/edid
You have to create the /lib/firmware/edid directory. Make 100% sure, the file has exact 256 Byte after download, if not redownload it.

afterwards edit /etc/default/grub:
Code:
GRUB_CMDLINE_LINUX_DEFAULT="drm_kms_helper.edid_firmware=HDMI-A-1:edid/marantz.bin radeon.audio=1 radeon.dpm=1 quiet splash"
This will overwrite EDID and ELD info.

Other EDID workarounds: http://forum.kodi.tv/showthread.php?tid=...pid1685301

Bitstream audio still not working
Some receivers deny Bitstream Audio for everything not 60hz. In that case it makes no sense to use bitstream audio at all, just disable it.

IRC Channel
Out of historical reasons, you can join #xbmc-xvba for discussing this howto. The channel name shall make us remember forever, that best hardware is worth nothing, if there are no drivers for it :-)

Happy penguin:
Image
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.


Messages In This Thread
Radeon OSS with vdpau (howto) - by fritsch - 2013-10-03, 10:52
RE: Radeon OSS with vdpau (howto) - by laric - 2013-10-03, 10:59
RE: Radeon OSS with vdpau (howto) - by Orcie - 2013-10-03, 15:50
RE: Radeon OSS with vdpau (howto) - by laric - 2013-10-03, 16:33
RE: Radeon OSS with vdpau (howto) - by laric - 2013-10-03, 21:05
RE: Radeon OSS with vdpau (howto) - by bibibo - 2013-10-03, 21:53
RE: Radeon OSS with vdpau (howto) - by bibibo - 2013-10-03, 22:00
RE: Radeon OSS with vdpau (howto) - by aix85 - 2013-10-03, 22:07
RE: Radeon OSS with vdpau (howto) - by bibibo - 2013-10-03, 22:12
RE: Radeon OSS with vdpau (howto) - by bibibo - 2013-10-03, 22:19
RE: Radeon OSS with vdpau (howto) - by aix85 - 2013-10-03, 22:24
RE: Radeon OSS with vdpau (howto) - by aix85 - 2013-10-03, 22:42
RE: Radeon OSS with vdpau (howto) - by bibibo - 2013-10-04, 09:10
RE: Radeon OSS with vdpau (howto) - by nickr - 2013-10-04, 09:39
RE: Radeon OSS with vdpau (howto) - by nickr - 2013-10-04, 10:21
RE: Radeon OSS with vdpau (howto) - by bibibo - 2013-10-04, 10:29
RE: Radeon OSS with vdpau (howto) - by wbsoul - 2013-10-04, 22:08
RE: Radeon OSS with vdpau (howto) - by -DDD- - 2013-10-05, 15:38
RE: Radeon OSS with vdpau (howto) - by -DDD- - 2013-10-05, 19:25
RE: Radeon OSS with vdpau (howto) - by ihc100 - 2013-10-05, 16:32
RE: Radeon OSS with vdpau (howto) - by jal301 - 2013-10-06, 03:50
RE: Radeon OSS with vdpau (howto) - by sion - 2013-10-07, 00:00
RE: Radeon OSS with vdpau (howto) - by sion - 2013-10-07, 00:25
RE: Radeon OSS with vdpau (howto) - by sion - 2013-10-07, 00:58
RE: Radeon OSS with vdpau (howto) - by sion - 2013-10-07, 04:08
RE: Radeon OSS with vdpau (howto) - by sion - 2013-10-07, 05:49
RE: Radeon OSS with vdpau (howto) - by wbsoul - 2013-10-07, 16:24
RE: Radeon OSS with vdpau (howto) - by golddk - 2013-10-08, 08:35
RE: Radeon OSS with vdpau (howto) - by golddk - 2013-10-08, 10:14
RE: Radeon OSS with vdpau (howto) - by golddk - 2013-10-08, 10:26
RE: Radeon OSS with vdpau (howto) - by laric - 2013-10-08, 10:30
RE: Radeon OSS with vdpau (howto) - by golddk - 2013-10-08, 10:57
RE: Radeon OSS with vdpau (howto) - by golddk - 2013-10-08, 12:23
RE: Radeon OSS with vdpau (howto) - by Maxi - 2013-10-09, 04:17
RE: Radeon OSS with vdpau (howto) - by golddk - 2013-10-09, 09:14
RE: Radeon OSS with vdpau (howto) - by golddk - 2013-10-09, 18:36
RE: Radeon OSS with vdpau (howto) - by blm14 - 2013-10-09, 05:06
RE: Radeon OSS with vdpau (howto) - by blm14 - 2013-10-09, 05:29
RE: Radeon OSS with vdpau (howto) - by blm14 - 2013-10-09, 13:51
RE: Radeon OSS with vdpau (howto) - by blm14 - 2013-10-10, 00:43
RE: Radeon OSS with vdpau (howto) - by blm14 - 2013-10-10, 15:23
RE: Radeon OSS with vdpau (howto) - by golddk - 2013-10-10, 17:07
RE: Radeon OSS with vdpau (howto) - by morbid - 2013-10-10, 23:52
RE: Radeon OSS with vdpau (howto) - by laric - 2013-10-11, 08:49
Re: Radeon OSS with vdpau (howto) - by nihues - 2013-10-11, 18:36
RE: - by sveni_lee - 2013-10-12, 17:29
RE: - by fritsch - 2013-10-12, 17:32
Radeon OSS with vdpau (howto) - by sveni_lee - 2013-10-12, 18:29
Radeon OSS with vdpau (howto) - by sveni_lee - 2013-10-12, 19:25
RE: - by antares81 - 2013-10-12, 21:00
RE: - by smv1210 - 2013-10-13, 00:30
Re: Radeon OSS with vdpau (howto) - by nickr - 2013-10-13, 00:33
RE: - by omega2014 - 2013-10-13, 00:45
Re: Radeon OSS with vdpau (howto) - by nickr - 2013-10-13, 00:48
RE: - by omega2014 - 2013-10-13, 02:59
RE: - by locomot1f - 2013-10-13, 03:04
RE: - by deadite66 - 2013-10-13, 09:01
RE: - by sveni_lee - 2013-10-13, 11:07
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2013-10-15, 01:15
RE: Radeon OSS with vdpau (howto) - by BaGRoS - 2013-10-15, 02:48
RE: Radeon OSS with vdpau (howto) - by morbid - 2013-10-15, 08:39
RE: Radeon OSS with vdpau (howto) - by BaGRoS - 2013-10-15, 11:02
RE: Radeon OSS with vdpau (howto) - by MTroi - 2013-10-15, 09:11
RE: Radeon OSS with vdpau (howto) - by morbid - 2013-10-15, 16:51
RE: Radeon OSS with vdpau (howto) - by teeuwj - 2013-10-16, 20:43
RE: Radeon OSS with vdpau (howto) - by teeuwj - 2013-10-17, 08:46
RE: Radeon OSS with vdpau (howto) - by nickr - 2013-10-17, 01:17
RE: Radeon OSS with vdpau (howto) - by nickr - 2013-10-17, 04:46
RE: Radeon OSS with vdpau (howto) - by teeuwj - 2013-10-17, 14:56
RE: Radeon OSS with vdpau (howto) - by morbid - 2013-10-17, 18:32
RE: Radeon OSS with vdpau (howto) - by mhop - 2013-10-18, 21:49
RE: Radeon OSS with vdpau (howto) - by mhop - 2013-10-18, 23:08
Re: Radeon OSS with vdpau (howto) - by nickr - 2013-10-18, 23:12
RE: Radeon OSS with vdpau (howto) - by Huuh - 2013-10-19, 02:41
RE: Radeon OSS with vdpau (howto) - by nickr - 2013-10-19, 05:22
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-19, 15:40
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-19, 16:12
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-19, 16:33
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-19, 16:49
RE: Radeon OSS with vdpau (howto) - by xakep - 2013-10-19, 19:59
RE: Radeon OSS with vdpau (howto) - by morbid - 2013-10-25, 22:56
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-19, 23:17
RE: Radeon OSS with vdpau (howto) - by ddeeds - 2013-10-20, 03:25
RE: Radeon OSS with vdpau (howto) - by Maxi - 2013-10-20, 09:27
RE: Radeon OSS with vdpau (howto) - by Maxi - 2013-10-20, 20:53
RE: Radeon OSS with vdpau (howto) - by laric - 2013-10-21, 05:34
RE: Radeon OSS with vdpau (howto) - by Maxi - 2013-10-20, 23:26
RE: Radeon OSS with vdpau (howto) - by blm14 - 2013-10-21, 00:23
RE: Radeon OSS with vdpau (howto) - by blm14 - 2013-10-21, 01:08
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-21, 11:59
RE: Radeon OSS with vdpau (howto) - by P-I H - 2013-10-21, 15:28
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-21, 20:31
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-22, 12:26
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-22, 13:29
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-22, 14:27
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-10-22, 14:47
RE: Radeon OSS with vdpau (howto) - by laric - 2013-10-22, 15:49
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-22, 18:03
RE: Radeon OSS with vdpau (howto) - by MXIIA - 2013-10-23, 02:14
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-24, 09:59
RE: Radeon OSS with vdpau (howto) - by laric - 2013-10-24, 12:56
RE: Radeon OSS with vdpau (howto) - by P-I H - 2013-10-24, 18:36
RE: Radeon OSS with vdpau (howto) - by hero - 2013-10-24, 19:34
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-26, 11:47
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-28, 00:04
RE: Radeon OSS with vdpau (howto) - by biau - 2013-10-28, 21:03
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-28, 09:33
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-28, 14:43
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-28, 14:54
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-30, 13:47
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-28, 19:09
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-29, 01:27
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-29, 11:20
RE: Radeon OSS with vdpau (howto) - by biau - 2013-10-29, 00:09
RE: Radeon OSS with vdpau (howto) - by snmp - 2013-10-28, 23:39
RE: Radeon OSS with vdpau (howto) - by biau - 2013-10-29, 00:36
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-29, 12:03
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-29, 12:44
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-29, 16:19
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-29, 12:51
RE: Radeon OSS with vdpau (howto) - by Snippo - 2013-10-29, 23:37
RE: Radeon OSS with vdpau (howto) - by snmp - 2013-10-30, 08:52
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-30, 20:35
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-30, 14:42
RE: Radeon OSS with vdpau (howto) - by Dradge - 2013-10-30, 15:27
RE: Radeon OSS with vdpau (howto) - by snmp - 2013-10-31, 22:56
RE: Radeon OSS with vdpau (howto) - by laric - 2013-11-05, 06:57
RE: Radeon OSS with vdpau (howto) - by biau - 2013-11-05, 11:27
RE: Radeon OSS with vdpau (howto) - by biau - 2013-11-05, 12:20
RE: Radeon OSS with vdpau (howto) - by biau - 2013-11-05, 12:38
RE: Radeon OSS with vdpau (howto) - by biau - 2013-11-05, 12:56
RE: Radeon OSS with vdpau (howto) - by biau - 2013-11-05, 15:19
RE: Radeon OSS with vdpau (howto) - by waso - 2013-11-05, 18:46
RE: Radeon OSS with vdpau (howto) - by laric - 2013-11-06, 18:36
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-07, 18:19
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-07, 18:41
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-07, 18:50
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-07, 18:59
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-07, 21:28
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-08, 01:00
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-08, 14:07
RE: Radeon OSS with vdpau (howto) - by Orcie - 2013-11-08, 14:55
RE: Radeon OSS with vdpau (howto) - by laric - 2013-11-11, 14:25
RE: Radeon OSS with vdpau (howto) - by Orcie - 2013-11-12, 10:46
RE: Radeon OSS with vdpau (howto) - by hero - 2013-11-09, 19:56
RE: Radeon OSS with vdpau (howto) - by hero - 2013-11-09, 20:50
RE: Radeon OSS with vdpau (howto) - by hero - 2013-11-09, 23:37
RE: Radeon OSS with vdpau (howto) - by hero - 2013-11-09, 23:57
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-10, 18:38
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-11, 21:11
RE: Radeon OSS with vdpau (howto) - by laric - 2013-11-14, 15:08
RE: Radeon OSS with vdpau (howto) - by thug - 2013-11-14, 18:51
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-11-15, 23:59
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-11-16, 00:11
RE: Radeon OSS with vdpau (howto) - by fiatt - 2013-11-17, 22:14
RE: Radeon OSS with vdpau (howto) - by fiatt - 2013-11-17, 23:23
git build failure - by tomtomme - 2013-11-19, 10:22
RE: Radeon OSS with vdpau (howto) - by ohreo - 2013-11-19, 13:36
RE: Radeon OSS with vdpau (howto) - by ohreo - 2013-11-20, 01:51
RE: Radeon OSS with vdpau (howto) - by Orcie - 2013-11-20, 11:14
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-20, 11:37
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-20, 15:22
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-20, 18:37
RE: Radeon OSS with vdpau (howto) - by saito2 - 2013-11-20, 16:48
RE: Radeon OSS with vdpau (howto) - by saito2 - 2013-11-20, 17:41
RE: Radeon OSS with vdpau (howto) - by saito2 - 2013-11-20, 22:46
RE: Radeon OSS with vdpau (howto) - by saito2 - 2013-11-20, 19:18
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-20, 18:51
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-20, 19:43
RE: Radeon OSS with vdpau (howto) - by saito2 - 2013-11-20, 19:31
RE: Radeon OSS with vdpau (howto) - by saito2 - 2013-11-20, 19:43
RE: Radeon OSS with vdpau (howto) - by toka - 2013-11-22, 14:39
RE: Radeon OSS with vdpau (howto) - by toka - 2013-11-22, 14:52
RE: Radeon OSS with vdpau (howto) - by Kib - 2013-11-23, 11:00
RE: Radeon OSS with vdpau (howto) - by toka - 2013-11-22, 21:40
RE: Radeon OSS with vdpau (howto) - by toka - 2013-11-22, 22:21
RE: Radeon OSS with vdpau (howto) - by RedCat - 2013-11-23, 13:30
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-11-27, 15:01
RE: Radeon OSS with vdpau (howto) - by Kokos - 2013-11-28, 15:55
RE: Radeon OSS with vdpau (howto) - by laric - 2013-11-28, 23:53
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-01, 11:00
RE: Radeon OSS with vdpau (howto) - by laric - 2013-12-01, 11:19
RE: Radeon OSS with vdpau (howto) - by laric - 2013-12-01, 13:22
RE: Radeon OSS with vdpau (howto) - by eroxm - 2013-12-04, 16:23
RE: Radeon OSS with vdpau (howto) - by eroxm - 2013-12-04, 17:11
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-04, 19:28
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-04, 21:48
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-05, 00:11
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-05, 21:08
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-07, 02:06
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2013-12-07, 19:09
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2013-12-07, 19:38
RE: Radeon OSS with vdpau (howto) - by laric - 2013-12-07, 20:28
RE: Radeon OSS with vdpau (howto) - by laric - 2013-12-08, 01:08
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2013-12-08, 18:31
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2013-12-12, 21:19
RE: Radeon OSS with vdpau (howto) - by vmstek - 2013-12-10, 03:12
RE: Radeon OSS with vdpau (howto) - by vmstek - 2013-12-10, 15:47
RE: Radeon OSS with vdpau (howto) - by vmstek - 2013-12-10, 07:59
RE: Radeon OSS with vdpau (howto) - by vmstek - 2013-12-10, 09:52
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-10, 15:47
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-10, 16:02
RE: Radeon OSS with vdpau (howto) - by vmstek - 2013-12-11, 03:50
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2013-12-12, 21:52
RE: Radeon OSS with vdpau (howto) - by SIMMON - 2013-12-14, 14:47
RE: Radeon OSS with vdpau (howto) - by vmstek - 2013-12-14, 20:35
Sound problem - by alcyone4169 - 2013-12-14, 21:28
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-16, 15:46
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-16, 16:08
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-16, 19:58
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-17, 10:18
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-17, 11:15
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-17, 16:53
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-17, 17:35
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-17, 17:44
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-20, 00:12
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2013-12-17, 20:27
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-12-18, 10:12
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2013-12-18, 22:55
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-19, 21:32
RE: Radeon OSS with vdpau (howto) - by Kablam - 2013-12-19, 01:47
RE: Radeon OSS with vdpau (howto) - by MTroi - 2013-12-19, 10:44
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-19, 21:46
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2013-12-20, 21:15
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-20, 16:51
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-21, 13:28
RE: Radeon OSS with vdpau (howto) - by Kablam - 2013-12-20, 14:27
RE: Radeon OSS with vdpau (howto) - by RayMen - 2013-12-21, 12:14
RE: Radeon OSS with vdpau (howto) - by Artax - 2013-12-21, 18:14
RE: Radeon OSS with vdpau (howto) - by Artax - 2013-12-21, 21:23
RE: Radeon OSS with vdpau (howto) - by ln17 - 2013-12-22, 13:23
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-23, 14:39
RE: Radeon OSS with vdpau (howto) - by Mntz - 2013-12-23, 14:58
RE: Radeon OSS with vdpau (howto) - by EricV - 2013-12-24, 20:18
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-26, 14:52
RE: Radeon OSS with vdpau (howto) - by Kablam - 2013-12-25, 21:31
RE: Radeon OSS with vdpau (howto) - by Kablam - 2013-12-26, 14:10
RE: Radeon OSS with vdpau (howto) - by silma - 2013-12-26, 22:27
RE: Radeon OSS with vdpau (howto) - by silma - 2013-12-26, 23:13
RE: Radeon OSS with vdpau (howto) - by law007 - 2013-12-27, 20:47
RE: Radeon OSS with vdpau (howto) - by ihc100 - 2013-12-29, 15:02
RE: Radeon OSS with vdpau (howto) - by ihc100 - 2013-12-29, 15:40
RE: Radeon OSS with vdpau (howto) - by ihc100 - 2013-12-29, 17:49
Radeon OSS with vdpau (howto) - by pyrodex - 2013-12-30, 17:45
Radeon OSS with vdpau (howto) - by pyrodex - 2013-12-30, 17:55
Radeon OSS with vdpau (howto) - by pyrodex - 2013-12-30, 17:58
RE: Radeon OSS with vdpau (howto) - by uuzi - 2013-12-30, 18:51
RE: Radeon OSS with vdpau (howto) - by jaapp - 2013-12-30, 19:57
RE: Radeon OSS with vdpau (howto) - by ln17 - 2014-01-01, 16:15
RE: Radeon OSS with vdpau (howto) - by tutu - 2014-01-01, 17:33
RE: Radeon OSS with vdpau (howto) - by tutu - 2014-01-01, 17:48
RE: Radeon OSS with vdpau (howto) - by tiasg - 2014-01-01, 23:42
RE: Radeon OSS with vdpau (howto) - by tiasg - 2014-01-02, 01:23
RE: Radeon OSS with vdpau (howto) - by tiasg - 2014-01-06, 23:00
RE: Radeon OSS with vdpau (howto) - by laric - 2014-01-02, 06:21
RE: Radeon OSS with vdpau (howto) - by ln17 - 2014-01-02, 17:41
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2014-01-02, 19:14
RE: Radeon OSS with vdpau (howto) - by shabba - 2014-01-03, 18:53
RE: Radeon OSS with vdpau (howto) - by jaapp - 2014-01-05, 02:12
Radeon OSS with vdpau (howto) - by pyrodex - 2014-01-05, 02:14
RE: Radeon OSS with vdpau (howto) - by jaapp - 2014-01-08, 20:16
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2014-01-06, 11:54
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-01-08, 11:54
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-01-08, 14:53
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-01-08, 16:06
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-01-09, 01:18
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2014-01-08, 20:22
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-01-08, 22:50
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-01-08, 22:55
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2014-01-09, 20:19
RE: Radeon OSS with vdpau (howto) - by javum - 2014-01-09, 04:10
RE: Radeon OSS with vdpau (howto) - by javum - 2014-01-09, 17:50
RE: Radeon OSS with vdpau (howto) - by morbid - 2014-01-09, 21:14
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-10, 02:12
RE: Radeon OSS with vdpau (howto) - by MTroi - 2014-01-10, 14:09
RE: Radeon OSS with vdpau (howto) - by tomn - 2014-01-11, 18:15
RE: Radeon OSS with vdpau (howto) - by tomn - 2014-01-11, 18:23
RE: Radeon OSS with vdpau (howto) - by tomn - 2014-01-11, 18:45
RE: Radeon OSS with vdpau (howto) - by Baitou - 2014-01-18, 23:28
openSUSE HowTo Update - by tomtomme - 2014-01-12, 12:30
openSUSE howto - by tomtomme - 2014-01-14, 22:52
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-01-13, 03:30
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-01-16, 04:45
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-01-13, 11:04
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-01-13, 12:02
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-01-13, 12:30
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-01-13, 16:13
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-01-13, 23:07
heads up for audio passthrough - by arkadi - 2014-01-14, 11:29
RE: Radeon OSS with vdpau (howto) - by arkadi - 2014-01-14, 16:34
RE: Radeon OSS with vdpau (howto) - by pci__ - 2014-01-15, 23:00
RE: Radeon OSS with vdpau (howto) - by laric - 2014-01-18, 00:03
RE: Radeon OSS with vdpau (howto) - by vmstek - 2014-01-18, 20:48
RE: Radeon OSS with vdpau (howto) - by Baitou - 2014-01-19, 01:42
RE: Radeon OSS with vdpau (howto) - by Baitou - 2014-01-18, 23:39
RE: Radeon OSS with vdpau (howto) - by Baitou - 2014-01-18, 23:57
RE: Radeon OSS with vdpau (howto) - by P-I H - 2014-01-19, 12:12
RE: Radeon OSS with vdpau (howto) - by ngxnam - 2014-01-20, 04:48
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-01-20, 05:02
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-01-20, 14:08
Radeon OSS with vdpau (howto) - by pyrodex - 2014-01-20, 19:20
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-22, 23:09
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-22, 23:40
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-22, 23:52
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-23, 00:02
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-23, 00:28
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-24, 00:33
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-25, 22:49
RE: Radeon OSS with vdpau (howto) - by jatho - 2014-01-25, 16:36
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-01-25, 22:55
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2014-01-26, 21:32
Radeon OSS with vdpau (howto) - by ian-ep - 2014-01-27, 18:07
RE: Radeon OSS with vdpau (howto) - by kEph13 - 2014-01-30, 12:52
RE: Radeon OSS with vdpau (howto) - by kEph13 - 2014-01-31, 23:33
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-02-09, 12:04
RE: Radeon OSS with vdpau (howto) - by kEph13 - 2014-01-31, 12:59
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-02-02, 05:50
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-02-03, 00:16
RE: Radeon OSS with vdpau (howto) - by towlie - 2014-02-03, 23:42
RE: Radeon OSS with vdpau (howto) - by jovis - 2014-02-04, 13:40
RE: Radeon OSS with vdpau (howto) - by jovis - 2014-02-04, 20:07
RE: Radeon OSS with vdpau (howto) - by jovis - 2014-02-04, 21:57
RE: Radeon OSS with vdpau (howto) - by ddtpv - 2014-02-04, 21:03
RE: Radeon OSS with vdpau (howto) - by ddtpv - 2014-02-13, 19:47
RE: Radeon OSS with vdpau (howto) - by eroxm - 2014-02-04, 21:57
RE: Radeon OSS with vdpau (howto) - by eroxm - 2014-02-05, 00:45
RE: Radeon OSS with vdpau (howto) - by eroxm - 2014-02-05, 17:25
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-02-06, 20:37
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-02-08, 14:54
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-02-06, 21:22
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-02-07, 16:48
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-02-08, 03:38
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-02-08, 06:11
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-02-08, 16:52
MPEG2 - by jkl555 - 2014-02-26, 16:37
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-02-08, 17:33
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-02-08, 17:36
RE: Radeon OSS with vdpau (howto) - by eroxm - 2014-02-08, 18:49
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-02-09, 12:40
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-02-09, 13:03
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-02-09, 15:49
RE: Radeon OSS with vdpau (howto) - by EricV - 2014-02-09, 19:20
RE: Radeon OSS with vdpau (howto) - by negge - 2014-02-11, 09:55
AW: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-02-12, 01:24
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-02-12, 13:47
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-02-12, 22:06
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-02-12, 22:54
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-02-13, 22:28
RE: Radeon OSS with vdpau (howto) - by ddtpv - 2014-02-13, 19:53
RE: Radeon OSS with vdpau (howto) - by ddtpv - 2014-02-13, 20:04
RE: Radeon OSS with vdpau (howto) - by ddtpv - 2014-02-13, 20:21
RE: Radeon OSS with vdpau (howto) - by ddtpv - 2014-02-13, 20:38
RE: Radeon OSS with vdpau (howto) - by ddtpv - 2014-02-13, 20:51
RE: Radeon OSS with vdpau (howto) - by Primas - 2014-02-13, 22:30
RE: Radeon OSS with vdpau (howto) - by jbrnd - 2014-02-17, 03:13
RE: Radeon OSS with vdpau (howto) - by Huuh - 2014-02-17, 06:17
RE: Radeon OSS with vdpau (howto) - by -DDD- - 2014-02-19, 10:00
RE: Radeon OSS with vdpau (howto) - by laric - 2014-02-19, 10:49
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-02-20, 04:05
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-02-21, 05:01
RE: Radeon OSS with vdpau (howto) - by Artax - 2014-02-24, 16:15
RE: Radeon OSS with vdpau (howto) - by laric - 2014-02-25, 14:03
RE: Radeon OSS with vdpau (howto) - by jkl555 - 2014-02-27, 03:15
RE: Radeon OSS with vdpau (howto) - by Manp - 2014-03-01, 21:21
RE: Radeon OSS with vdpau (howto) - by Manp - 2014-03-01, 21:59
RE: Radeon OSS with vdpau (howto) - by Manp - 2014-03-01, 22:38
RE: Radeon OSS with vdpau (howto) - by Manp - 2014-03-01, 22:55
RE: Radeon OSS with vdpau (howto) - by Manp - 2014-03-01, 23:34
RE: Radeon OSS with vdpau (howto) - by Manp - 2014-03-05, 20:49
RE: Radeon OSS with vdpau (howto) - by Manp - 2014-03-01, 23:49
Radeon OSS with vdpau (howto) - by pyrodex - 2014-03-02, 15:27
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-03-04, 15:07
RE: Radeon OSS with vdpau (howto) - by eroth - 2014-03-02, 19:45
RE: Radeon OSS with vdpau (howto) - by eroth - 2014-03-02, 20:55
RE: Radeon OSS with vdpau (howto) - by ORbit2 - 2014-03-03, 13:11
RE: Radeon OSS with vdpau (howto) - by ORbit2 - 2014-03-04, 06:53
openSUSE Howto UPDATE - by tomtomme - 2014-03-03, 14:00
RE: Radeon OSS with vdpau (howto) - by RayMen - 2014-03-04, 11:37
RE: Radeon OSS with vdpau (howto) - by gemx - 2014-03-04, 15:04
openSUSE Howto UPDATE - by tomtomme - 2014-03-07, 11:55
RE: Radeon OSS with vdpau (howto) - by ORbit2 - 2014-03-04, 13:41
RE: Radeon OSS with vdpau (howto) - by arkadi - 2014-03-05, 10:10
RE: Radeon OSS with vdpau (howto) - by gemx - 2014-03-04, 15:10
xbmc gotham git branch - by tomtomme - 2014-03-05, 00:03
RE: Radeon OSS with vdpau (howto) - by arkadi - 2014-03-05, 17:07
RE: Radeon OSS with vdpau (howto) - by laric - 2014-03-06, 08:53
RE: Radeon OSS with vdpau (howto) - by laric - 2014-03-06, 11:06
RE: Radeon OSS with vdpau (howto) - by Pinpin - 2014-03-08, 03:15
RE: Radeon OSS with vdpau (howto) - by Pinpin - 2014-03-08, 12:14
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-03-08, 23:13
RE: Radeon OSS with vdpau (howto) - by laric - 2014-03-11, 07:16
RE: Radeon OSS with vdpau (howto) - by tomn - 2014-03-14, 09:37
RE: Radeon OSS with vdpau (howto) - by tomn - 2014-03-14, 10:07
RE: Radeon OSS with vdpau (howto) - by Pinpin - 2014-03-16, 13:58
Purple display - by jkl555 - 2014-03-17, 17:47
RE: Radeon OSS with vdpau (howto) - by Pinpin - 2014-03-20, 09:54
RE: Radeon OSS with vdpau (howto) - by tiasg - 2014-03-24, 22:18
RE: Radeon OSS with vdpau (howto) - by MTroi - 2014-03-25, 20:27
RE: Radeon OSS with vdpau (howto) - by MTroi - 2014-03-25, 20:39
RE: Radeon OSS with vdpau (howto) - by eroxm - 2014-03-26, 22:50
RE: Radeon OSS with vdpau (howto) - by jkl555 - 2014-03-27, 13:49
RE: Radeon OSS with vdpau (howto) - by Duken - 2014-03-26, 23:12
RE: Radeon OSS with vdpau (howto) - by Duken - 2014-03-26, 23:19
RE: Radeon OSS with vdpau (howto) - by Rooboo - 2014-03-27, 12:58
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-03-27, 23:38
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-03-28, 04:53
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-03-29, 00:44
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-03-28, 13:42
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-03-29, 00:41
RE: Radeon OSS with vdpau (howto) - by jaymax - 2014-03-29, 16:08
RE: Radeon OSS with vdpau (howto) - by arkim - 2014-04-01, 13:05
RE: Radeon OSS with vdpau (howto) - by MTroi - 2014-03-31, 09:44
RE: Radeon OSS with vdpau (howto) - by MTroi - 2014-05-11, 16:34
RE: Radeon OSS with vdpau (howto) - by arkim - 2014-04-02, 08:51
RE: Radeon OSS with vdpau (howto) - by arkim - 2014-04-02, 09:15
RE: Radeon OSS with vdpau (howto) - by arkim - 2014-04-02, 12:55
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-04-02, 12:59
RE: Radeon OSS with vdpau (howto) - by arkim - 2014-04-02, 14:04
RE: Radeon OSS with vdpau (howto) - by arkim - 2014-04-03, 12:13
RE: Radeon OSS with vdpau (howto) - by jteeuw - 2014-04-03, 13:04
RE: Radeon OSS with vdpau (howto) - by jteeuw - 2014-04-03, 14:55
RE: Radeon OSS with vdpau (howto) - by allio - 2014-04-04, 23:33
RE: Radeon OSS with vdpau (howto) - by allio - 2014-04-05, 06:39
RE: Radeon OSS with vdpau (howto) - by RayMen - 2014-04-07, 18:37
RE: Radeon OSS with vdpau (howto) - by RayMen - 2014-04-07, 18:54
RE: Radeon OSS with vdpau (howto) - by RayMen - 2014-04-08, 13:09
RE: Radeon OSS with vdpau (howto) - by sraue - 2014-04-07, 22:15
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-04-10, 15:06
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-04-10, 15:41
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-04-10, 16:07
RE: Radeon OSS with vdpau (howto) - by -DDD- - 2014-04-10, 17:33
RE: Radeon OSS with vdpau (howto) - by arkim - 2014-04-11, 20:05
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-04-11, 15:29
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-04-11, 15:52
RE: Radeon OSS with vdpau (howto) - by -DDD- - 2014-04-12, 06:33
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-04-14, 06:34
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-04-15, 18:43
RE: Radeon OSS with vdpau (howto) - by arkim - 2014-04-16, 19:07
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-04-17, 18:41
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-04-17, 21:28
RE: Radeon OSS with vdpau (howto) - by sa1x - 2014-04-18, 11:07
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-04-18, 18:37
RE: Radeon OSS with vdpau (howto) - by sa1x - 2014-04-18, 12:00
RE: Radeon OSS with vdpau (howto) - by sa1x - 2014-04-18, 12:25
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-04-19, 16:48
RE: Radeon OSS with vdpau (howto) - by quan3t - 2014-04-20, 16:46
RE: Radeon OSS with vdpau (howto) - by quan3t - 2014-04-20, 21:40
RE: Radeon OSS with vdpau (howto) - by quan3t - 2014-04-20, 22:52
RE: Radeon OSS with vdpau (howto) - by jkl555 - 2014-04-21, 00:18
RE: Radeon OSS with vdpau (howto) - by jkl555 - 2014-04-21, 15:50
RE: Radeon OSS with vdpau (howto) - by quan3t - 2014-04-21, 19:27
AW: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-04-24, 21:36
Green Lines, Noise on stop - by Endeavour79 - 2014-04-25, 07:19
RE: Radeon OSS with vdpau (howto) - by jkl555 - 2014-04-29, 13:13
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-05-03, 15:14
RE: Radeon OSS with vdpau (howto) - by Artax - 2014-05-03, 16:33
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-05-03, 17:04
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-05-04, 23:07
RE: Radeon OSS with vdpau (howto) - by eroxm - 2014-05-06, 19:00
RE: Radeon OSS with vdpau (howto) - by ihc100 - 2014-05-07, 09:52
RE: Radeon OSS with vdpau (howto) - by kwiky - 2014-05-09, 11:51
RE: Radeon OSS with vdpau (howto) - by kwiky - 2014-05-09, 11:57
RE: Radeon OSS with vdpau (howto) - by kwiky - 2014-05-09, 12:18
RE: Radeon OSS with vdpau (howto) - by kwiky - 2014-05-09, 13:43
RE: Radeon OSS with vdpau (howto) - by kwiky - 2014-05-09, 14:56
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2014-05-10, 18:54
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2014-05-10, 19:13
RE: Radeon OSS with vdpau (howto) - by javum - 2014-05-12, 17:45
RE: Radeon OSS with vdpau (howto) - by javum - 2014-05-14, 13:42
RE: Radeon OSS with vdpau (howto) - by Mysqo - 2014-05-12, 19:56
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-05-12, 20:29
RE: Radeon OSS with vdpau (howto) - by laric - 2014-05-15, 07:47
RE: Radeon OSS with vdpau (howto) - by Zueuk - 2014-05-29, 20:37
RE: Radeon OSS with vdpau (howto) - by Zueuk - 2014-05-29, 20:49
RE: Radeon OSS with vdpau (howto) - by Zueuk - 2014-05-29, 20:56
RE: Radeon OSS with vdpau (howto) - by Zueuk - 2014-06-01, 20:14
RE: Radeon OSS with vdpau (howto) - by Zueuk - 2014-05-29, 21:20
RE: Radeon OSS with vdpau (howto) - by manjur - 2014-06-01, 20:09
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-06-07, 21:01
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-06-08, 20:39
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-06-08, 10:31
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-06-08, 16:22
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-06-09, 20:46
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-06-09, 21:00
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-06-09, 21:09
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-06-09, 22:30
RE: Radeon OSS with vdpau (howto) - by xakep - 2014-06-15, 03:43
RE: Radeon OSS with vdpau (howto) - by xakep - 2014-06-16, 19:33
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-06-17, 13:31
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-06-17, 14:12
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-06-18, 09:52
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-06-20, 10:20
news on the openSUSE HowTo - by tomtomme - 2014-06-22, 17:36
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-06-22, 20:23
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-06-22, 20:37
RE: Radeon OSS with vdpau (howto) - by deivid - 2014-06-22, 21:12
RE: Radeon OSS with vdpau (howto) - by baikun - 2014-06-29, 12:51
RE: Radeon OSS with vdpau (howto) - by baikun - 2014-06-29, 13:20
RE: Radeon OSS with vdpau (howto) - by baikun - 2014-06-29, 14:18
RE: Radeon OSS with vdpau (howto) - by baikun - 2014-06-29, 16:08
RE: Radeon OSS with vdpau (howto) - by Namerp - 2014-06-29, 21:31
RE: Radeon OSS with vdpau (howto) - by Lonet - 2014-07-21, 00:05
RE: Radeon OSS with vdpau (howto) - by msfc - 2014-07-21, 00:08
RE: Radeon OSS with vdpau (howto) - by msfc - 2014-07-21, 17:57
Kernel 3.15.6 - by Endeavour79 - 2014-07-23, 11:30
RE: Radeon OSS with vdpau (howto) - by xxlsm - 2014-07-28, 18:01
RE: Radeon OSS with vdpau (howto) - by xxlsm - 2014-07-28, 18:43
RE: Radeon OSS with vdpau (howto) - by xxlsm - 2014-07-28, 19:13
RE: Radeon OSS with vdpau (howto) - by xxlsm - 2014-07-28, 21:05
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-07-29, 22:11
High CPU utilization while idle - by Kokos - 2014-08-01, 13:34
RE: Radeon OSS with vdpau (howto) - by Kokos - 2014-08-01, 15:19
RE: Radeon OSS with vdpau (howto) - by xtdv - 2014-08-03, 13:26
RE: Radeon OSS with vdpau (howto) - by xtdv - 2014-08-04, 04:49
RE: Radeon OSS with vdpau (howto) - by jatho - 2014-08-07, 08:11
RE: Radeon OSS with vdpau (howto) - by jatho - 2014-08-07, 09:18
RE: Radeon OSS with vdpau (howto) - by jatho - 2014-08-07, 10:48
RE: Radeon OSS with vdpau (howto) - by Xeus32 - 2014-08-16, 15:59
RE: Radeon OSS with vdpau (howto) - by Xeus32 - 2014-08-17, 16:49
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-08-20, 15:14
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-08-21, 13:18
RE: Radeon OSS with vdpau (howto) - by kbios - 2014-08-25, 12:41
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-08-26, 10:21
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-08-26, 20:55
RE: Radeon OSS with vdpau (howto) - by thctlo - 2014-09-02, 12:51
AW: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-08-31, 19:52
RE: Radeon OSS with vdpau (howto) - by lemur - 2014-09-08, 18:05
RE: Radeon OSS with vdpau (howto) - by magny - 2014-09-08, 22:51
RE: Radeon OSS with vdpau (howto) - by magny - 2014-09-08, 23:44
AW: Radeon OSS with vdpau (howto) - by Jan0sh - 2014-09-20, 14:56
RE: Radeon OSS with vdpau (howto) - by vmstek - 2014-10-04, 19:26
RE: Radeon OSS with vdpau (howto) - by vmstek - 2014-10-07, 07:19
RE: Radeon OSS with vdpau (howto) - by vmstek - 2014-10-07, 15:45
RE: Radeon OSS with vdpau (howto) - by Kokos - 2014-10-13, 15:02
RE: Radeon OSS with vdpau (howto) - by Kokos - 2014-10-13, 15:49
RE: Radeon OSS with vdpau (howto) - by Kokos - 2014-10-13, 19:56
RE: Radeon OSS with vdpau (howto) - by towlie - 2014-10-23, 12:14
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-10-26, 11:27
No Libraries - by Endeavour79 - 2014-10-29, 11:37
Edid / HDMI - Handshake workaround. - by Ney - 2014-10-29, 13:56
RE: Radeon OSS with vdpau (howto) - by uuzi - 2014-11-02, 10:44
RE: Radeon OSS with vdpau (howto) - by Ney - 2014-11-04, 13:25
RE: Radeon OSS with vdpau (howto) - by -DDD- - 2014-11-25, 23:46
RE: Radeon OSS with vdpau (howto) - by whoppr - 2014-11-29, 21:43
RE: Radeon OSS with vdpau (howto) - by gudmk - 2014-12-06, 01:46
RE: Radeon OSS with vdpau (howto) - by Shvarc - 2014-12-07, 22:14
RE: Radeon OSS with vdpau (howto) - by Shvarc - 2014-12-08, 23:07
RE: Radeon OSS with vdpau (howto) - by Shvarc - 2014-12-09, 11:01
RE: Radeon OSS with vdpau (howto) - by Shvarc - 2014-12-09, 14:33
RE: Radeon OSS with vdpau (howto) - by Shvarc - 2014-12-09, 14:57
RE: Radeon OSS with vdpau (howto) - by vmstek - 2014-12-11, 06:38
RE: Radeon OSS with vdpau (howto) - by vmstek - 2014-12-13, 19:03
RE: Radeon OSS with vdpau (howto) - by vmstek - 2014-12-13, 19:18
RE: Radeon OSS with vdpau (howto) - by Benoe - 2014-12-15, 21:37
RE: Radeon OSS with vdpau (howto) - by Dradge - 2014-12-19, 20:56
RE: Radeon OSS with vdpau (howto) - by drawks - 2014-12-20, 06:30
RE: Radeon OSS with vdpau (howto) - by drawks - 2014-12-23, 09:34
RE: Radeon OSS with vdpau (howto) - by blm14 - 2014-12-22, 00:32
RE: Radeon OSS with vdpau (howto) - by Krobar - 2014-12-23, 00:03
RE: Radeon OSS with vdpau (howto) - by drawks - 2014-12-23, 09:40
RE: Radeon OSS with vdpau (howto) - by sheepy - 2014-12-23, 15:48
RE: Radeon OSS with vdpau (howto) - by sheepy - 2014-12-23, 16:13
RE: Radeon OSS with vdpau (howto) - by sheepy - 2014-12-23, 17:40
RE: Radeon OSS with vdpau (howto) - by sheepy - 2014-12-23, 17:54
RE: Radeon OSS with vdpau (howto) - by sheepy - 2014-12-23, 20:41
RE: Radeon OSS with vdpau (howto) - by MXIIA - 2014-12-24, 03:11
RE: Radeon OSS with vdpau (howto) - by philsu - 2014-12-28, 21:50
RE: Radeon OSS with vdpau (howto) - by luksol - 2015-01-15, 14:43
RE: Radeon OSS with vdpau (howto) - by philsu - 2014-12-28, 22:04
RE: Radeon OSS with vdpau (howto) - by philsu - 2014-12-28, 23:16
RE: Radeon OSS with vdpau (howto) - by philsu - 2014-12-28, 23:32
openSUSE Howto UPDATE - by tomtomme - 2015-01-06, 10:54
Radeon OSS with vdpau (howto) - by cirkator - 2015-01-09, 16:07
Radeon OSS with vdpau (howto) - by cirkator - 2015-01-11, 08:54
RE: Radeon OSS with vdpau (howto) - by m0nKeY - 2015-01-22, 10:14
RE: Radeon OSS with vdpau (howto) - by m0nKeY - 2015-01-22, 12:20
RE: Radeon OSS with vdpau (howto) - by m0nKeY - 2015-01-22, 23:04
RE: Radeon OSS with vdpau (howto) - by m0nKeY - 2015-01-22, 23:59
RE: Radeon OSS with vdpau (howto) - by m0nKeY - 2015-01-23, 11:57
RE: Radeon OSS with vdpau (howto) - by m0nKeY - 2015-01-23, 00:36
RE: Radeon OSS with vdpau (howto) - by s1on - 2015-02-01, 16:07
RE: Radeon OSS with vdpau (howto) - by s1on - 2015-02-01, 16:13
RE: Radeon OSS with vdpau (howto) - by s1on - 2015-02-01, 22:08
RE: Radeon OSS with vdpau (howto) - by mselig - 2015-02-02, 00:51
RE: Radeon OSS with vdpau (howto) - by mselig - 2015-02-02, 09:46
RE: Radeon OSS with vdpau (howto) - by dude18 - 2015-02-05, 15:00
RE: Radeon OSS with vdpau (howto) - by arkim - 2015-02-25, 13:32
RE: Radeon OSS with vdpau (howto) - by arkim - 2015-02-25, 17:52
RE: Radeon OSS with vdpau (howto) - by arkim - 2015-02-25, 20:34
RE: Radeon OSS with vdpau (howto) - by zett - 2015-02-25, 20:10
RE: Radeon OSS with vdpau (howto) - by zett - 2015-02-25, 21:43
RE: Radeon OSS with vdpau (howto) - by vip723 - 2015-03-16, 18:38
RE: Radeon OSS with vdpau (howto) - by Krobar - 2015-03-26, 09:57
RE: Radeon OSS with vdpau (howto) - by zett - 2015-02-26, 16:11
RE: Radeon OSS with vdpau (howto) - by carmik - 2015-03-03, 12:14
RE: Radeon OSS with vdpau (howto) - by carmik - 2015-03-03, 12:35
RE: Radeon OSS with vdpau (howto) - by carmik - 2015-03-03, 15:20
RE: Radeon OSS with vdpau (howto) - by carmik - 2015-03-04, 08:31
RE: Radeon OSS with vdpau (howto) - by carmik - 2015-03-04, 09:35
RE: Radeon OSS with vdpau (howto) - by carmik - 2015-03-05, 11:23
RE: Radeon OSS with vdpau (howto) - by laric - 2015-04-11, 12:58
RE: Radeon OSS with vdpau (howto) - by arkim - 2015-04-27, 14:41
RE: Radeon OSS with vdpau (howto) - by arkim - 2015-04-28, 14:44
RE: Radeon OSS with vdpau (howto) - by eroxm - 2015-05-07, 10:45
RE: Radeon OSS with vdpau (howto) - by eroxm - 2015-05-10, 14:10
RE: Radeon OSS with vdpau (howto) - by deadok - 2015-05-16, 18:11
RE: Radeon OSS with vdpau (howto) - by SerGol - 2015-05-28, 12:34
RE: Radeon OSS with vdpau (howto) - by SerGol - 2015-05-29, 12:08
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2015-05-29, 22:43
RE: Radeon OSS with vdpau (howto) - by Jan0sh - 2015-06-14, 18:47
RE: Radeon OSS with vdpau (howto) - by zachpn - 2015-06-01, 16:19
RE: Radeon OSS with vdpau (howto) - by deadok - 2015-06-22, 20:25
RE: Radeon OSS with vdpau (howto) - by thctlo - 2015-06-23, 22:28
RE: Radeon OSS with vdpau (howto) - by thctlo - 2015-06-24, 12:23
RE: Radeon OSS with vdpau (howto) - by deadok - 2015-06-25, 22:05
Logout Mark Read Team Forum Stats Members Help
Radeon OSS with vdpau (howto)26