Merge master.
[dcpomatic.git] / src / lib / sndfile_decoder.cc
index c37a8447483ba49d3e39ade148d08ebfd26f6841..602014d5883d2dba1381588bb44a7036debc9c96 100644 (file)
@@ -74,7 +74,7 @@ SndfileDecoder::pass ()
        /* Do things in half second blocks as I think there may be limits
           to what FFmpeg (and in particular the resampler) can cope with.
        */
-       sf_count_t const block = _sndfile_content->content_audio_frame_rate() / 2;
+       sf_count_t const block = _sndfile_content->audio_frame_rate() / 2;
        sf_count_t const this_time = min (block, _remaining);
 
        int const channels = _sndfile_content->audio_channels ();