Commit fccc37ca authored by Michael Niedermayer's avatar Michael Niedermayer

repeat an even number of characters in occured

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 24e52709
...@@ -3212,7 +3212,7 @@ static int decode_studio_vol_header(Mpeg4DecContext *ctx, GetBitContext *gb) ...@@ -3212,7 +3212,7 @@ static int decode_studio_vol_header(Mpeg4DecContext *ctx, GetBitContext *gb)
* Decode MPEG-4 headers. * Decode MPEG-4 headers.
* *
* @param header If set the absence of a VOP is not treated as error; otherwise, it is treated as such. * @param header If set the absence of a VOP is not treated as error; otherwise, it is treated as such.
* @return <0 if an error occured * @return <0 if an error occurred
* FRAME_SKIPPED if a not coded VOP is found * FRAME_SKIPPED if a not coded VOP is found
* 0 else * 0 else
*/ */
......
...@@ -798,7 +798,7 @@ static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos) ...@@ -798,7 +798,7 @@ static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
id == MATROSKA_ID_CLUSTER || id == MATROSKA_ID_CHAPTERS) { id == MATROSKA_ID_CLUSTER || id == MATROSKA_ID_CHAPTERS) {
/* Prepare the context for parsing of a level 1 element. */ /* Prepare the context for parsing of a level 1 element. */
matroska_reset_status(matroska, id, -1); matroska_reset_status(matroska, id, -1);
/* Given that we are here means that an error has occured, /* Given that we are here means that an error has occurred,
* so treat the segment as unknown length in order not to * so treat the segment as unknown length in order not to
* discard valid data that happens to be beyond the designated * discard valid data that happens to be beyond the designated
* end of the segment. */ * end of the segment. */
...@@ -1331,7 +1331,7 @@ static int ebml_parse(MatroskaDemuxContext *matroska, ...@@ -1331,7 +1331,7 @@ static int ebml_parse(MatroskaDemuxContext *matroska,
// current element (i.e. how much would be skipped); if there were // current element (i.e. how much would be skipped); if there were
// more than a few skipped elements in a row and skipping the current // more than a few skipped elements in a row and skipping the current
// element would lead us more than SKIP_THRESHOLD away from the last // element would lead us more than SKIP_THRESHOLD away from the last
// known good position, then it is inferred that an error occured. // known good position, then it is inferred that an error occurred.
// The dependency on the number of unknown elements in a row exists // The dependency on the number of unknown elements in a row exists
// because the distance to the last known good position is // because the distance to the last known good position is
// automatically big if the last parsed element was big. // automatically big if the last parsed element was big.
......
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