diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-17 16:33:39 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-17 16:33:39 +0000 |
commit | 8d488749fb3465f41c110ec5d0c227bce2c53b3b (patch) | |
tree | 40cfd75b180dccda814563c4879d717d3845029d | |
parent | 4002f296739b1277b3f509ecfb4edaaaf64092a4 (diff) | |
download | xine-lib-8d488749fb3465f41c110ec5d0c227bce2c53b3b.tar.gz xine-lib-8d488749fb3465f41c110ec5d0c227bce2c53b3b.tar.bz2 |
This one is the reason why initial stillframes on DVDs do not show up.
They are eaten by the preview, but the DVD input plugin is not preview capable.
CVS patchset: 3278
CVS date: 2002/11/17 16:33:39
-rw-r--r-- | src/demuxers/demux_mpeg_block.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_mpeg_block.c b/src/demuxers/demux_mpeg_block.c index ac79d4f67..741d194bf 100644 --- a/src/demuxers/demux_mpeg_block.c +++ b/src/demuxers/demux_mpeg_block.c @@ -17,7 +17,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: demux_mpeg_block.c,v 1.140 2002/11/16 12:22:15 mroi Exp $ + * $Id: demux_mpeg_block.c,v 1.141 2002/11/17 16:33:39 mroi Exp $ * * demultiplexer for mpeg 1/2 program streams * @@ -839,7 +839,7 @@ static void demux_mpeg_block_send_headers (demux_plugin_t *this_gen) { if (!this->rate) this->rate = demux_mpeg_block_estimate_rate (this); - /* if((this->input->get_capabilities(this->input) & INPUT_CAP_PREVIEW) != 0)*/ + if((this->input->get_capabilities(this->input) & INPUT_CAP_PREVIEW) != 0) { int num_buffers = NUM_PREVIEW_BUFFERS; |