Mercurial > mplayer.hg
comparison libmpdemux/demux_real.c @ 36549:d59d34ca145b
Grammar fix in error messages.
author | rtogni |
---|---|
date | Sun, 19 Jan 2014 17:31:41 +0000 |
parents | b72ae5f17e3a |
children | ecba0563cd4a |
comparison
equal
deleted
inserted
replaced
36548:b72ae5f17e3a | 36549:d59d34ca145b |
---|---|
1285 num_mlti = stream_read_word(demuxer->stream); | 1285 num_mlti = stream_read_word(demuxer->stream); |
1286 if (num_mlti != 1) { | 1286 if (num_mlti != 1) { |
1287 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with %d substreams.\n", num_mlti); | 1287 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with %d substreams.\n", num_mlti); |
1288 priv->is_mlti = 1; | 1288 priv->is_mlti = 1; |
1289 } else | 1289 } else |
1290 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substreams. Ingnoring\n"); | 1290 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substream. Ingnoring\n"); |
1291 if (num_mlti > MAX_MLTIIDX) { | 1291 if (num_mlti > MAX_MLTIIDX) { |
1292 mp_msg(MSGT_DEMUX,MSGL_ERR,"Too many (%d) MLTI audio, truncating; expect problems. Please report to Mplayer developers.\n", num_mlti); | 1292 mp_msg(MSGT_DEMUX,MSGL_ERR,"Too many (%d) MLTI audio, truncating; expect problems. Please report to Mplayer developers.\n", num_mlti); |
1293 num_mlti = MAX_MLTIIDX - 1; // Limit to max MLTI | 1293 num_mlti = MAX_MLTIIDX - 1; // Limit to max MLTI |
1294 } | 1294 } |
1295 ra_size = stream_read_dword(demuxer->stream); // Size of the following .ra chunk | 1295 ra_size = stream_read_dword(demuxer->stream); // Size of the following .ra chunk |
1584 num_mlti = stream_read_word(demuxer->stream); | 1584 num_mlti = stream_read_word(demuxer->stream); |
1585 if (num_mlti != 1) { | 1585 if (num_mlti != 1) { |
1586 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in video with %d substreams.\n", num_mlti); | 1586 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in video with %d substreams.\n", num_mlti); |
1587 priv->is_mlti = 1; | 1587 priv->is_mlti = 1; |
1588 } else | 1588 } else |
1589 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substreams. Ingnoring\n"); | 1589 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substream. Ingnoring\n"); |
1590 if (num_mlti > MAX_MLTIIDX) { | 1590 if (num_mlti > MAX_MLTIIDX) { |
1591 mp_msg(MSGT_DEMUX,MSGL_ERR,"Too many (%d) MLTI video, truncating; expect problems. Please report to Mplayer developers.\n", num_mlti); | 1591 mp_msg(MSGT_DEMUX,MSGL_ERR,"Too many (%d) MLTI video, truncating; expect problems. Please report to Mplayer developers.\n", num_mlti); |
1592 num_mlti = MAX_MLTIIDX - 1; // Limit to max MLTI | 1592 num_mlti = MAX_MLTIIDX - 1; // Limit to max MLTI |
1593 } | 1593 } |
1594 vido_size = stream_read_dword(demuxer->stream); // Size of the following .vido chunk | 1594 vido_size = stream_read_dword(demuxer->stream); // Size of the following .vido chunk |