diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2008-10-21 17:43:02 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2008-10-21 17:43:02 +0000 |
commit | 5b57f30efe108b6f9a7bdcd6ad9786e0bea11e66 (patch) | |
tree | b22ab64b15344fd9c84eddfcded5107da6a12b91 /media-tv/mythtv/files | |
parent | Use python_{en,dis}able_pyc. (diff) | |
download | gentoo-2-5b57f30efe108b6f9a7bdcd6ad9786e0bea11e66.tar.gz gentoo-2-5b57f30efe108b6f9a7bdcd6ad9786e0bea11e66.tar.bz2 gentoo-2-5b57f30efe108b6f9a7bdcd6ad9786e0bea11e66.zip |
various upstream fixes. time between key frames. gesture segfaults. No bobdeint for EPG preview. fix floating point math (720p content). fix video frame queuing (720p content). Gentoo bug #242438 for bttv with 2.6.25 and higher
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Diffstat (limited to 'media-tv/mythtv/files')
-rw-r--r-- | media-tv/mythtv/files/mythtv-0.21-bttv.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/media-tv/mythtv/files/mythtv-0.21-bttv.patch b/media-tv/mythtv/files/mythtv-0.21-bttv.patch new file mode 100644 index 000000000000..1b1b711b1a1e --- /dev/null +++ b/media-tv/mythtv/files/mythtv-0.21-bttv.patch @@ -0,0 +1,13 @@ +Index: libs/libmythtv/NuppelVideoRecorder.cpp +=================================================================== +--- libs/libmythtv/NuppelVideoRecorder.cpp (revision 18814) ++++ libs/libmythtv/NuppelVideoRecorder.cpp (working copy) +@@ -981,7 +981,7 @@ + correct_bttv = true; + + QString driver = (char *)vcap.driver; +- if (driver == "cx8800" || driver == "go7007" || driver == "em28xx") ++ if (driver == "cx8800" || driver == "go7007" || driver == "em28xx" || driver == "bttv") + { + channelfd = open(videodevice.ascii(), O_RDWR); + if (channelfd < 0) |