summaryrefslogtreecommitdiff
path: root/libavformat/sccdec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-06-13 12:23:29 +0200
committerPaul B Mahol <onemda@gmail.com>2020-06-13 12:26:00 +0200
commit416dc133b953ab2dd78297f6272f1062b0586b57 (patch)
treebd7123b0f712614c099f321fbfc16af666fb79d1 /libavformat/sccdec.c
parent0c2623d3aad066fa5deffae4716af463b14091ab (diff)
downloadffmpeg-416dc133b953ab2dd78297f6272f1062b0586b57.tar.gz
avformat/sccdec: move pos variables outside of loop
Ensures that sub->pos is always correct.
Diffstat (limited to 'libavformat/sccdec.c')
-rw-r--r--libavformat/sccdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sccdec.c b/libavformat/sccdec.c
index 955e39f74c..0eb1dd307e 100644
--- a/libavformat/sccdec.c
+++ b/libavformat/sccdec.c
@@ -64,6 +64,7 @@ static int scc_read_header(AVFormatContext *s)
SCCContext *scc = s->priv_data;
AVStream *st = avformat_new_stream(s, NULL);
char line[4096], line2[4096];
+ int64_t current_pos, next_pos;
int64_t ts_start, ts_end;
int count = 0, ret = 0;
ptrdiff_t len2, len;
@@ -79,7 +80,6 @@ static int scc_read_header(AVFormatContext *s)
st->codecpar->codec_id = AV_CODEC_ID_EIA_608;
while (!ff_text_eof(&tr)) {
- int64_t current_pos, next_pos;
char *saveptr = NULL, *lline;
int hh1, mm1, ss1, fs1, i;
int hh2, mm2, ss2, fs2;