Compile mplayer with VDPAU support on Ubuntu

In this article I’ll show you how you can compile mplayer with VDPAU support on Ubuntu Intrepid but first I’ll try to explain why you would want to recompile mplayer with VDPAU support.

NOTICE: This article has been superseded by my newer article

Before we start compiling, you might want to know a bit more about it and if it’s something you want to do.

What is VDPAU?
WikiPedia defines it as follows:

VDPAU (Video Decode and Presentation API for Unix) is an API designed by NVIDIA for its GeForce 8 series and later GPU hardware, targeted at the X Window System on Unix operating-systems (including Linux, FreeBSD, and Solaris). The VDPAU API allows video programs to offload portions of the video decoding process and video post-processing to the GPU video-hardware. Currently, the portions designed to be offloaded by VDPAU onto the GPU are motion compensation (mo comp) and inverse discrete cosine transform (iDCT), and VLD (Variable-Length Decoding) for MPEG-1, MPEG-2, MPEG-4 AVC (H.264), VC-1, and WMV3/WMV9 encoded videos.

Great! What does it mean?
What it means that instead of using your processor is utilizes your graphics processor for certain decoding processes. This allows you to run other things when you are watching a video, the most known application that benefits from this is mythTV, you can use a less powerful processor to watch videos.

Why do I want it?
Well like I said, if you have a less powerful processor and you want to watch a DVD, movie on your computer this implementation makes it possible.

It says it is designed by nVidia, can I use it with other graphic cards?
Short answer, No. The API is designed specifically for nVidia graphic card, and then only for the GeForce 8 and higher.

Let’s start

First of all you’ll need to use the official nVidia graphics driver, not the one that comes with Ubuntu itself.
To download the latest driver go to this site. At the time I’m writing this, the latest version is 180.29. You’ll need to download the pkg1 version.

Install nVidia driver
To compile mplayer with VDPAU support we need to run the nVidia driver.
Install this driver follow the following steps.

  • Log off from your computer. Not restart but Logoff
  • Press Ctrl-Alt-1. Your on the console right now
  • Login like you normally would
  • Type:
    sudo su -

    And when asked for your password give your password

  • If you are running Gnome type:
    /etc/init.d/gdm stop

    If you are running KDE type:

    /etc/init.d/kdm stop
  • In order to install the driver we’ll need to install some software:
    apt-get install build-essential linux-headers-`uname -r`
  • Go to the directory where you downloaded the driver
  • Type: sh NVIDIA-Linux-x86-180.29-pkg1.run
  • Accept the license, no need to search the FTP site and let the installer modify the X configuration
  • Personally I always reboot after this
    reboot

Compiling mplayer
I download the software in /d1/software/mplayer
nVidia provides us with an easy script that will patch mplayer for VDPAU support. You can find the script here. Check the dates and download the newest version, again at the time I’m writing this, the latest version is mplayer-vdpau-3482714.tar.bz2. You will also need all the development files for mplayer, we can get those by using aptitude.
In order to compile mplayer you’ll also need two extra files, nVidia does provide them but for your convenience I tarred them up. You can find the download link in the sidebar of this blog under Local Downloads.

Prepare for configuration and compilation
Open a terminal.

cd /d1/software/mplayer
tar xf vdpau.tar.gz
mv vdpau /usr/include/
tar xf mplayer-vdpau-3482714.tar.bz2
sudo aptitude build-dep mplayer
cd mplayer-vdpau-3482714

I modify the script (checkout-patch-build.sh) nVidia uses so when we run it, it only gets the source code. The configuring and building I do by hand that way mplayer will use the same settings as the Ubuntu or Medibuntu versions.
Comment out the last two lines so the script looks like this:

#!/usr/bin/env sh

set -e
set -x

co_dir=mplayer-vdpau
mplayer_rev=28348
ffmpeg_rev=16726
dvdnav_rev=1166

svn co --ignore-externals -r ${mplayer_rev} svn://svn.mplayerhq.hu/mplayer/trunk ${co_dir}
cd ${co_dir}
svn co -r ${ffmpeg_rev} svn://svn.mplayerhq.hu/ffmpeg/trunk/libpostproc
svn co -r ${ffmpeg_rev} svn://svn.mplayerhq.hu/ffmpeg/trunk/libavformat
svn co -r ${ffmpeg_rev} svn://svn.mplayerhq.hu/ffmpeg/trunk/libavcodec
svn co -r ${ffmpeg_rev} svn://svn.mplayerhq.hu/ffmpeg/trunk/libavutil
svn co -r ${dvdnav_rev} svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdread/src libdvdread4
svn co -r ${dvdnav_rev} svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdnav/src libdvdnav

patch -p0 < ../mplayer-vdpau-mplayer.patch

#./configure --disable-x264-lavc --disable-x264 --enable-vdpau
#make

Run the script to get the source code

./checkout-patch-build.sh

Now that we have the source code, we need to do a little bit more. In order to utilize VDPAU we need to add some extra parameters when starting mplayer. As most of us will use the menu, or the file browser to start mplayer we'll modify the menu entry.

cd mplayer-vdpau
sed 's/%F/-vo vdpau -vc ffh264vdpau,ffmpeg12vdpau,ffvc1vdpau,ffwmv3vdpau, %F/' etc/mplayer.desktop > /tmp/mplayer.desktop
mv /tmp/mplayer.desktop etc/mplayer.desktop

Configuring, Compiling and Installing
I use the --target in my configure script to force mplayer to use this that specific target. For some reason the configure script doesn't recognize I have a core2 processor. You can leave it out and mplayer will figure out what kind of processor you have.

./configure --enable-gui --disable-x264-lavc --disable-x264 --enable-vdpau --target=i686-linux --prefix=/usr --confdir=/etc/mplayer --mandir=/usr/share/man

As mentioned earlier, mplayer doesn't recognize the core2 I have, so in order for the compilation to use core2 I modify the output created by the configuration script.
Skip this if you don't have a core2 processor!

sed 's/i686/core2/g' config.mak > /tmp/config.mak
mv /tmp/config.mak config.mak

Now for the compilation and installation

make
sudo make install

That's all, you should have mplayer with VDPAU capabilities.

How do you know if you are using the VDPAU capabilities?
Download a clip from here

  • Open mplayer from the menu
  • Open a terminal and type: top
  • Open the movie in mplayer and play it
  • Check top in the terminal, you should see gmplayer in the command column. This is the GUI version of mplayer. Check the %CPU column. Try to remember the approximate percentage.
  • Close mplayer
  • Open another terminal
  • Type: gmplayer
  • Open the movie in mplayer and play it
  • Check top in the terminal, you should see gmplayer in the command column. This is the GUI version of mplayer. Check the %CPU column.
  • If the percentages of CPU is lower while playing the movie started from the menu you are running VDPAU. Congrats.
    If the percentages are about the same something went wrong during the configuration/compilation steps I described
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值