]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/hdsenc.c
avformat/nutdec: remove unused variable
[ffmpeg] / libavformat / hdsenc.c
index 1a3814d7e350f4bdeb136afafaaec33c6a9628b0..f22875d0cc1e8b0c1e015806349e4abaaa2a5843 100644 (file)
@@ -520,7 +520,7 @@ static int hds_write_packet(AVFormatContext *s, AVPacket *pkt)
     HDSContext *c = s->priv_data;
     AVStream *st = s->streams[pkt->stream_index];
     OutputStream *os = &c->streams[s->streams[pkt->stream_index]->id];
-    int64_t end_dts = (os->fragment_index) * (int64_t)c->min_frag_duration;
+    int64_t end_dts = os->fragment_index * (int64_t)c->min_frag_duration;
     int ret;
 
     if (st->first_dts == AV_NOPTS_VALUE)