diff options
Diffstat (limited to 'src/demuxers/demux_ogg.c')
-rw-r--r-- | src/demuxers/demux_ogg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c index bdeb50b4e..7a349f1d5 100644 --- a/src/demuxers/demux_ogg.c +++ b/src/demuxers/demux_ogg.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_ogg.c,v 1.46 2002/10/19 17:42:52 guenter Exp $ + * $Id: demux_ogg.c,v 1.47 2002/10/26 22:00:53 guenter Exp $ * * demultiplexer for ogg streams * @@ -900,7 +900,7 @@ static void demux_ogg_stop (demux_plugin_t *this_gen) { static int demux_ogg_get_status (demux_plugin_t *this_gen) { demux_ogg_t *this = (demux_ogg_t *) this_gen; - return (this->thread_running?DEMUX_OK:DEMUX_FINISHED); + return this->status; } static int send_headers (demux_ogg_t *this) { |