]> git.sesse.net Git - vlc/blob - modules/demux/mkv/stream_io_callback.hpp
Use var_Inherit* instead of var_CreateGet*.
[vlc] / modules / demux / mkv / stream_io_callback.hpp
1
2 /*****************************************************************************
3  * mkv.cpp : matroska demuxer
4  *****************************************************************************
5  * Copyright (C) 2003-2004 the VideoLAN team
6  * $Id$
7  *
8  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9  *          Steve Lhomme <steve.lhomme@free.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25 #include "mkv.hpp"
26
27 /*****************************************************************************
28  * Stream managment
29  *****************************************************************************/
30 class vlc_stream_io_callback: public IOCallback
31 {
32   private:
33     stream_t       *s;
34     bool           mb_eof;
35     bool           b_owner;
36
37   public:
38     vlc_stream_io_callback( stream_t *, bool );
39
40     virtual ~vlc_stream_io_callback()
41     {
42         if( b_owner )
43             stream_Delete( s );
44     }
45
46     virtual uint32   read            ( void *p_buffer, size_t i_size);
47     virtual void     setFilePointer  ( int64_t i_offset, seek_mode mode = seek_beginning );
48     virtual size_t   write           ( const void *p_buffer, size_t i_size) { return 0; }
49     virtual uint64   getFilePointer  ( void );
50     virtual void     close           ( void ) { return; }
51 };
52
53