]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/sbgdec.c
avcodec/aic: unbreak decoding of files with slice_width != 16
[ffmpeg] / libavformat / sbgdec.c
index bb020d7f9a26473aed8e8abe4f75340e6fc19df5..cbedd120fbf2756154f0f723eebb362133e80d1a 100644 (file)
@@ -927,7 +927,7 @@ static void expand_timestamps(void *log, struct sbg_script *s)
         }
     }
     if (s->start_ts == AV_NOPTS_VALUE)
-        s->start_ts = s->opt_start_at_first ? s->tseq[0].ts.t : now;
+        s->start_ts = (s->opt_start_at_first && s->tseq) ? s->tseq[0].ts.t : now;
     s->end_ts = s->opt_duration ? s->start_ts + s->opt_duration :
                 AV_NOPTS_VALUE; /* may be overridden later by -E option */
     cur_ts = now;