No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / dcp_decoder.cc
index 8b2765d449689036b716f9e37cc6d16470b98c7e..0ec50e0cd24ff9a52523707a121ddb50acb22544 100644 (file)
@@ -55,7 +55,7 @@ DCPDecoder::DCPDecoder (shared_ptr<const DCPContent> c)
 }
 
 bool
-DCPDecoder::pass (PassReason)
+DCPDecoder::pass ()
 {
        if (_reel == _reels.end () || !_dcp_content->can_be_played ()) {
                return true;
@@ -63,7 +63,7 @@ DCPDecoder::pass (PassReason)
 
        float const vfr = _dcp_content->video_frame_rate ();
        int64_t const frame = _next.frames (vfr);
-       
+
        if ((*_reel)->main_picture ()) {
                shared_ptr<dcp::PictureAsset> asset = (*_reel)->main_picture()->asset ();
                shared_ptr<dcp::MonoPictureAsset> mono = dynamic_pointer_cast<dcp::MonoPictureAsset> (asset);
@@ -76,7 +76,7 @@ DCPDecoder::pass (PassReason)
                                shared_ptr<ImageProxy> (new J2KImageProxy (stereo->get_frame (entry_point + frame), asset->size(), dcp::EYE_LEFT)),
                                frame
                                );
-                       
+
                        video (
                                shared_ptr<ImageProxy> (new J2KImageProxy (stereo->get_frame (entry_point + frame), asset->size(), dcp::EYE_RIGHT)),
                                frame
@@ -111,7 +111,7 @@ DCPDecoder::pass (PassReason)
                        ++_reel;
                }
        }
-       
+
        return false;
 }