diff options
-rw-r--r-- | libavformat/rtspdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index a7a7e2d045..eb7de3b663 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -76,9 +76,9 @@ static int rtsp_read_play(AVFormatContext *s) if (!rtpctx || rtsp_st->stream_index < 0) continue; st = s->streams[rtsp_st->stream_index]; - rtpctx->range_start_offset = - av_rescale_q(reply->range_start, AV_TIME_BASE_Q, - st->time_base); + rtpctx->range_start_offset = + av_rescale_q(reply->range_start, AV_TIME_BASE_Q, + st->time_base); } } } |