diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2008-06-27 21:36:01 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2008-06-27 21:36:01 +0000 |
commit | ae10e1fd3d14074030732efccb3285b1259ecdd7 (patch) | |
tree | acba65dfc0d0b1cfc2ec594447aca11d30a11a31 /libavcodec/mlp_parser.c | |
parent | bc4c3a55f5a4d41e2a5b65ed10d11a989c66903d (diff) | |
download | ffmpeg-ae10e1fd3d14074030732efccb3285b1259ecdd7.tar.gz |
Seek the file forwards instead of backwards when sync is lost.
Originally committed as revision 14014 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlp_parser.c')
-rw-r--r-- | libavcodec/mlp_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlp_parser.c b/libavcodec/mlp_parser.c index 0f1d69d02f..7f2c89cb25 100644 --- a/libavcodec/mlp_parser.c +++ b/libavcodec/mlp_parser.c @@ -295,7 +295,7 @@ static int mlp_parse(AVCodecParserContext *s, lost_sync: mp->in_sync = 0; - return -1; + return 1; } AVCodecParser mlp_parser = { |