summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2002-09-02 12:25:49 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2002-09-02 12:25:49 +0000
commit0112d035f06744d2e2ec4915ffcbc1d249c430b1 (patch)
tree434372f4c7204df32b5196a54edf6a208134fb6e
parent1370361ab9168ffe4aedeab5cccedcd02e3a8131 (diff)
downloadxine-lib-0112d035f06744d2e2ec4915ffcbc1d249c430b1.tar.gz
xine-lib-0112d035f06744d2e2ec4915ffcbc1d249c430b1.tar.bz2
This might slow things down a bit, but I need to do it to test a problem with DVD menus
not appearing. I think the reason they are not appearing is that they are getting flushed too early. CVS patchset: 2588 CVS date: 2002/09/02 12:25:49
-rw-r--r--src/input/input_dvd.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index 6d4d0cc05..4cf5f1e7d 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -18,7 +18,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_dvd.c,v 1.68 2002/09/02 03:21:38 jcdutton Exp $
+ * $Id: input_dvd.c,v 1.69 2002/09/02 12:25:49 jcdutton Exp $
*
*/
@@ -765,7 +765,7 @@ static buf_element_t *dvdnav_plugin_read_block (input_plugin_t *this_gen,
break;
case DVDNAV_HOP_CHANNEL:
{
- flush_buffers(this);
+ //flush_buffers(this);
break;
}
case DVDNAV_NAV_PACKET:
@@ -1463,6 +1463,11 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
/*
* $Log: input_dvd.c,v $
+ * Revision 1.69 2002/09/02 12:25:49 jcdutton
+ * This might slow things down a bit, but I need to do it to test a problem with DVD menus
+ * not appearing.
+ * I think the reason they are not appearing is that they are getting flushed too early.
+ *
* Revision 1.68 2002/09/02 03:21:38 jcdutton
* Implement proper prev/next chapter.
*