aboutsummaryrefslogtreecommitdiff
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
734 int reported_ebml; 734 int reported_ebml;
735 int valid_ebml; 735 int valid_ebml;
736 uint64_t ebml_version; 736 uint64_t ebml_version;
737 uint64_t ebml_read_version; 737 uint64_t ebml_READ_version;
738 uint64_t ebml_max_id_length; 738 uint64_t ebml_max_id_length;
739 uint64_t ebml_max_size_length; 739 uint64_t ebml_max_size_length;
740 char *doctype; 740 char *doctype;
@@ -796,7 +796,7 @@ clean_ebml_state_ebml (struct ebml_state *state)
796 state->reported_ebml = 0; 796 state->reported_ebml = 0;
797 state->valid_ebml = 0; 797 state->valid_ebml = 0;
798 state->ebml_version = 1; 798 state->ebml_version = 1;
799 state->ebml_read_version = 1; 799 state->ebml_READ_version = 1;
800 state->ebml_max_id_length = 4; 800 state->ebml_max_id_length = 4;
801 state->ebml_max_size_length = 8; 801 state->ebml_max_size_length = 8;
802 state->doctype = NULL; 802 state->doctype = NULL;
@@ -1699,7 +1699,7 @@ EXTRACTOR_ebml_extract_method (struct EXTRACTOR_PluginList *plugin,
1699 state->ebml_version = uint_value; 1699 state->ebml_version = uint_value;
1700 break; 1700 break;
1701 case EBMLID_READ_VERSION: 1701 case EBMLID_READ_VERSION:
1702 state->ebml_read_version = uint_value; 1702 state->ebml_READ_version = uint_value;
1703 if (uint_value > 1) 1703 if (uint_value > 1)
1704 { 1704 {
1705 /* We don't support EBML versions > 1 */ 1705 /* We don't support EBML versions > 1 */