diff options
author | Clément Bœsch <u@pkh.me> | 2015-03-06 20:39:45 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-03-06 20:42:43 +0100 |
commit | 1dab67b647ef6939d4f92bc7a1c43719a4a0b5f0 (patch) | |
tree | 99cf67da0becd1bb173c101b20a53930f1082dfb | |
parent | 0d4549c2d6881116079ef6fe8db2cd71c00a1578 (diff) | |
download | ffmpeg-1dab67b647ef6939d4f92bc7a1c43719a4a0b5f0.tar.gz |
avcodec/samidec: make sure to properly restore parsing context after a tag
(cherry picked from commit 70082a1e533deed6688938232e6e66abbd62b0fa)
-rw-r--r-- | libavcodec/samidec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/samidec.c b/libavcodec/samidec.c index 7705f93e7b..47850e2126 100644 --- a/libavcodec/samidec.c +++ b/libavcodec/samidec.c @@ -91,6 +91,7 @@ static int sami_paragraph_to_ass(AVCodecContext *avctx, const char *src) break; if (*p == '>') p++; + continue; } if (!av_isspace(*p)) av_bprint_chars(dst, *p, 1); |