From f30798ecaab6c9d4758942a9d0e344dbf4940a54 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 3 May 2003 19:53:06 +0000 Subject: [PATCH] No more temporary storage of the frames read. The timecode_scale is initialized because of default values not being written to the file anymore. --- r_matroska.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/r_matroska.h b/r_matroska.h index df85eb0c1..c4aaaa78a 100644 --- a/r_matroska.h +++ b/r_matroska.h @@ -13,7 +13,7 @@ /*! \file - \version \$Id: r_matroska.h,v 1.7 2003/05/02 21:49:42 mosu Exp $ + \version \$Id: r_matroska.h,v 1.8 2003/05/03 19:53:06 mosu Exp $ \brief class definitions for the Matroska reader \author Moritz Bunkus */ @@ -94,9 +94,6 @@ private: float segment_duration, last_timecode; - int64_t block_timecode, block_duration, block_ref1, block_ref2; - mkv_track_t *block_track; - public: mkv_reader_c(track_info_t *nti) throw (error_c); virtual ~mkv_reader_c(); @@ -118,9 +115,6 @@ private: virtual mkv_track_t *find_track_by_num(uint32_t num, mkv_track_t *c = NULL); virtual void verify_tracks(); virtual int packets_available(); - virtual void add_buffer(DataBuffer &dbuffer); - virtual void free_buffers(); - virtual void handle_blocks(); };