summaryrefslogtreecommitdiff
path: root/src/plugins/old/ebml_extractor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/old/ebml_extractor.c')
-rw-r--r--src/plugins/old/ebml_extractor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/old/ebml_extractor.c b/src/plugins/old/ebml_extractor.c
index f7daa9a..0d4fc91 100644
--- a/src/plugins/old/ebml_extractor.c
+++ b/src/plugins/old/ebml_extractor.c
@@ -734,7 +734,7 @@ struct ebml_state
int reported_ebml;
int valid_ebml;
uint64_t ebml_version;
- uint64_t ebml_read_version;
+ uint64_t ebml_READ_version;
uint64_t ebml_max_id_length;
uint64_t ebml_max_size_length;
char *doctype;
@@ -796,7 +796,7 @@ clean_ebml_state_ebml (struct ebml_state *state)
state->reported_ebml = 0;
state->valid_ebml = 0;
state->ebml_version = 1;
- state->ebml_read_version = 1;
+ state->ebml_READ_version = 1;
state->ebml_max_id_length = 4;
state->ebml_max_size_length = 8;
state->doctype = NULL;
@@ -1699,7 +1699,7 @@ EXTRACTOR_ebml_extract_method (struct EXTRACTOR_PluginList *plugin,
state->ebml_version = uint_value;
break;
case EBMLID_READ_VERSION:
- state->ebml_read_version = uint_value;
+ state->ebml_READ_version = uint_value;
if (uint_value > 1)
{
/* We don't support EBML versions > 1 */