diff options
Diffstat (limited to 'src/lib/decoder.h')
| -rw-r--r-- | src/lib/decoder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 31cf9d97d..2af9157b4 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -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; |
