[Ffmpeg-devel] [PATCH 0 of 8] X11 Device demuxer
Edouard Gomez
ed.gomez
Mon Dec 4 21:40:57 CET 2006
This series of patches simulates revision history of the review
process that has lead to current X11 demuxer device patch.
Apply in order with a commit between each patch.
In case a real series is preferred you can find one there:
http://ed.gomez.free.fr/mercurial/ffmpeg-queue.tar.gz
Apply with a script like the one below (requires awk, echo and svn):
------------------8<--------------------------
#!/bin/sh
cat series | while read patch ; do
MESSAGE=`
awk '
BEGIN {
seendiff=0;
}
/^diff/ {
seendiff=1;
}
{
if (!seendiff)
print $0;
}' "$patch"`
echo -e "Applying $patch\n========================="
patch -p1 < $patch
svn commit -m "$MESSAGE"
echo -e "\n"
done
------------------8<--------------------------
--
Edouard Gomez
More information about the ffmpeg-devel
mailing list