You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/mpeglib/example/yaf/yafxplayer
tpearson 27edf28be2
rename the following methods:
13 years ago
..
Makefile.am Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
commandTableXPlayer.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
commandTableXPlayer.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
inputDecoderXPlayer.cpp rename the following methods: 13 years ago
inputDecoderXPlayer.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
inputDecoderYAF.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
inputDecoderYAF.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
runtimeTableXPlayer.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
runtimeTableXPlayer.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
xplayerCommand.defs Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
xplayerRuntime.defs Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
xplayer_control.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
xplayer_control.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
yafOutputStream.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
yafOutputStream.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago

README

This directory contains a generic player frontend.
Use this as a start if you add new decoder support
to yaf.

The first step is to build the generic frontend.
Uncomment in xplayer_control.c the "main" part
and link the *.o fails againt yafcore.

g++ -o xplayer *.o ../yafcore.a


This should build ./xplayer 


If you implement a new player ans you have to change all the names,
the following script is *very* usefull


for i in *.cpp; do
sed s\/XPlayer\/helloName\/g $i >$i.x
mv $i.x $i
done

which replaces all occurances of "XPlayer" in all .cpp files
to "helloName"

(usefull, isn't it)