diff options
author | Dale Curtis <[email protected]> | 2013-12-12 05:31:43 +0100 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2013-12-12 05:33:02 +0100 |
commit | 9c0dd7b462303169c40ce22540f11b5b9c5110f3 (patch) | |
tree | ae225ee3423891781e3665ed7dde80481854ec60 | |
parent | 3efe5e3b094ae8561b31416adb80de33ccd04234 (diff) |
avformat/oggdec: reset end_trimming in ogg_reset()
Fixes the output when seeking back to the start
Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r-- | libavformat/oggdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c index a099eb382e..78cfbd6af5 100644 --- a/libavformat/oggdec.c +++ b/libavformat/oggdec.c @@ -142,6 +142,7 @@ static int ogg_reset(AVFormatContext *s) if (start_pos <= s->data_offset) { os->lastpts = 0; } + os->end_trimming = 0; } ogg->page_pos = -1; |