comparison libmpdemux/demux_real.c @ 36552:79358001ddb2

Fix spelling in error messages.
author rtogni
date Sun, 19 Jan 2014 18:53:32 +0000
parents ecba0563cd4a
children ee7c40d5c534
comparison
equal deleted inserted replaced
36551:a5764687ff8d 36552:79358001ddb2
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 substream. Ingnoring\n"); 1290 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substream. Ignoring\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 substream. Ingnoring\n"); 1589 mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substream. Ignoring\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