Fix spelling mistakes

This commit is contained in:
Moritz Bunkus 2014-11-05 08:43:28 +01:00
parent 2bd5541d5f
commit 88f488ce84
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ theora_parse_identification_header(unsigned char *buffer,
for (i = 0; 6 > i; ++i)
header.theora_string[i] = bc.get_bits(8);
if (strncmp(header.theora_string, "theora", 6))
throw mtx::theora::header_parsing_x(boost::format(Y("Wrong identifaction string: '%|1$6s|' != 'theora'")) % header.theora_string);
throw mtx::theora::header_parsing_x(boost::format(Y("Wrong identification string: '%|1$6s|' != 'theora'")) % header.theora_string);
header.vmaj = bc.get_bits(8);
header.vmin = bc.get_bits(8);

View File

@ -1328,7 +1328,7 @@ ogm_v_theora_demuxer_c::initialize() {
display_width = theora.display_width;
display_height = theora.display_height;
} catch (mtx::theora::header_parsing_x &e) {
mxerror_tid(reader->m_ti.m_fname, track_id, boost::format(Y("The Theora identifaction header could not be parsed (%1%).\n")) % e.error());
mxerror_tid(reader->m_ti.m_fname, track_id, boost::format(Y("The Theora identification header could not be parsed (%1%).\n")) % e.error());
}
}