Fix up parent / child member naming confusion.
[dcpomatic.git] / src / lib / decoder.h
index 31cf9d97d42e94c400f4e5c1df07da5dbbf91c7b..2af9157b4da6175ae78c5f666ee9763f05afcf0e 100644 (file)
@@ -81,8 +81,8 @@ public:
        void go ();
 
        /** @return the index of the last video frame to be processed */
-       int video_frame () const {
-               return _video_frame;
+       int video_frame_index () const {
+               return _video_frame_index;
        }
 
        virtual std::vector<AudioStream> audio_streams () const {
@@ -134,7 +134,7 @@ private:
        void emit_audio (uint8_t* data, int size);
        
        /** last video frame to be processed */
-       int _video_frame;
+       int _video_frame_index;
 
        std::list<boost::shared_ptr<FilterGraph> > _filter_graphs;