diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-10-27 17:28:24 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-10-27 17:28:24 +0000 |
commit | f584623413dd6a155947b5b11949665a1b65e6bc (patch) | |
tree | 6d6a16e51f4d6f26d986002ec8988314066e0946 | |
parent | e649c5881e84fe2f840cecee55f67b6042576d2b (diff) | |
download | xine-lib-f584623413dd6a155947b5b11949665a1b65e6bc.tar.gz xine-lib-f584623413dd6a155947b5b11949665a1b65e6bc.tar.bz2 |
get the logic straight
CVS patchset: 3044
CVS date: 2002/10/27 17:28:24
-rw-r--r-- | src/demuxers/demux_qt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index b53ee36fc..45da0b0ba 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -30,7 +30,7 @@ * build_frame_table * free_qt_info * - * $Id: demux_qt.c,v 1.104 2002/10/27 15:51:53 tmmm Exp $ + * $Id: demux_qt.c,v 1.105 2002/10/27 17:28:24 tmmm Exp $ * */ @@ -1909,7 +1909,7 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str return NULL; } - if (! (input->get_capabilities(input) & INPUT_CAP_BLOCK)) { + if ((input->get_capabilities(input) & INPUT_CAP_BLOCK)) { printf(_("demux_qt.c: input is block organized, can not handle!\n")); return NULL; } |