ChangeLog.
[dcpomatic.git] / src / lib / audio_decoder.cc
index 1f5868583675314df9158517d6159c2c13bce7ef..c0ef02f65d5ab5518dcb7e53aa145b1ff3f9a598 100644 (file)
@@ -32,8 +32,9 @@ using std::cout;
 using boost::optional;
 using boost::shared_ptr;
 
-AudioDecoder::AudioDecoder (shared_ptr<const Film> film)
+AudioDecoder::AudioDecoder (shared_ptr<const Film> film, shared_ptr<const AudioContent> content)
        : Decoder (film)
+       , _audio_content (content)
        , _audio_position (0)
 {
 
@@ -45,3 +46,13 @@ AudioDecoder::audio (shared_ptr<const AudioBuffers> data, AudioContent::Frame fr
        Audio (data, frame);
        _audio_position = frame + data->frames ();
 }
+
+/** This is a bit odd, but necessary when we have (e.g.) FFmpegDecoders with no audio.
+ *  The player needs to know that there is no audio otherwise it will keep trying to
+ *  pass() the decoder to get it to emit audio.
+ */
+bool
+AudioDecoder::has_audio () const
+{
+       return _audio_content->audio_channels () > 0;
+}