From c0ab72986401e62f51bc1ae22c2c2385a94a887d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 27 Sep 2015 00:41:45 +0100 Subject: const fix. --- src/lib/ffmpeg.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/ffmpeg.cc b/src/lib/ffmpeg.cc index 9d5aa92ec..29dee2c86 100644 --- a/src/lib/ffmpeg.cc +++ b/src/lib/ffmpeg.cc @@ -314,7 +314,7 @@ FFmpeg::pts_offset (vector > audio_streams, option /* Now adjust so that the video pts starts on a frame */ if (first_video) { - ContentTime fvc = first_video.get() + po; + ContentTime const fvc = first_video.get() + po; po += fvc.round_up (video_frame_rate) - fvc; } -- cgit v1.2.3