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 ...@@ -174,7 +174,7 @@ struct matroska_stream_c
/***************************************************************************** /*****************************************************************************
* definitions of structures and functions used by this plugins * definitions of structures and functions used by this plugins
*****************************************************************************/ *****************************************************************************/
typedef struct struct mkv_track_t
{ {
// ~mkv_track_t(); // ~mkv_track_t();
...@@ -220,9 +220,9 @@ typedef struct ...@@ -220,9 +220,9 @@ typedef struct
int i_compression_type; int i_compression_type;
KaxContentCompSettings *p_compression_data; KaxContentCompSettings *p_compression_data;
} mkv_track_t; };
typedef struct struct mkv_index_t
{ {
int i_track; int i_track;
int i_block_number; int i_block_number;
...@@ -231,7 +231,7 @@ typedef struct ...@@ -231,7 +231,7 @@ typedef struct
int64_t i_time; int64_t i_time;
bool b_key; bool b_key;
} mkv_index_t; };
#endif /* _MKV_HPP_ */ #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