2 /*****************************************************************************
3 * mkv.cpp : matroska demuxer
4 *****************************************************************************
5 * Copyright (C) 2003-2004 the VideoLAN team
8 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9 * Steve Lhomme <steve.lhomme@free.fr>
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.
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.
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 *****************************************************************************/
27 /*****************************************************************************
29 *****************************************************************************/
30 class vlc_stream_io_callback: public IOCallback
38 vlc_stream_io_callback( stream_t *, bool );
40 virtual ~vlc_stream_io_callback()
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);
49 virtual uint64 getFilePointer ( void );
50 virtual void close ( void );