summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2011-01-04 19:02:01 +0000
committerAlexander Levin <al.le@rockbox.org>2011-01-04 19:02:01 +0000
commit92f602f48f43843a61529ad83c2a95e94ec93627 (patch)
treeb8f65934b997531d55b64f9c112c969ec94a8b8e
parentc1d8840b3151b5c6793f4ade09b9a17b05dbaded (diff)
downloadrockbox-92f602f48f43843a61529ad83c2a95e94ec93627.tar.gz
rockbox-92f602f48f43843a61529ad83c2a95e94ec93627.zip
mpeg_parser: fix a typo in the comment
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28964 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/mpegplayer/mpeg_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_parser.c b/apps/plugins/mpegplayer/mpeg_parser.c
index 572bd1b13e..7c7b0c30ac 100644
--- a/apps/plugins/mpegplayer/mpeg_parser.c
+++ b/apps/plugins/mpegplayer/mpeg_parser.c
@@ -291,7 +291,7 @@ static void init_times(struct stream *str)
291 291
292 /* Probe for many for the start because a stamp or two could be anomalous. 292 /* Probe for many for the start because a stamp or two could be anomalous.
293 * Video also can also have things out of order. How many? There isn't any 293 * Video also can also have things out of order. How many? There isn't any
294 * "right" value but just a few seems suffient to filter some bad cases. 294 * "right" value but just a few seems sufficient to filter some bad cases.
295 * Too many and file loading could take too long. */ 295 * Too many and file loading could take too long. */
296 for (i = 5; i > 0;) 296 for (i = 5; i > 0;)
297 { 297 {