Commit 2b28165d authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

mkv: typedef struct is useless in C++

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 05345249
......@@ -174,7 +174,7 @@ struct matroska_stream_c
/*****************************************************************************
* definitions of structures and functions used by this plugins
*****************************************************************************/
typedef struct
struct mkv_track_t
{
// ~mkv_track_t();
......@@ -220,9 +220,9 @@ typedef struct
int i_compression_type;
KaxContentCompSettings *p_compression_data;
} mkv_track_t;
};
typedef struct
struct mkv_index_t
{
int i_track;
int i_block_number;
......@@ -231,7 +231,7 @@ typedef struct
int64_t i_time;
bool b_key;
} mkv_index_t;
};
#endif /* _MKV_HPP_ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment