vlc | branch: master | Francois Cartegnie <[email protected]> | Thu Jan 14 23:39:35 2021 +0100| [14e226fe6fdebbb71fece9b3967dfb19d4447456] | committer: Francois Cartegnie
demux: adaptive: add missing override specifier > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=14e226fe6fdebbb71fece9b3967dfb19d4447456 --- modules/demux/adaptive/plumbing/CommandsQueue.hpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/demux/adaptive/plumbing/CommandsQueue.hpp b/modules/demux/adaptive/plumbing/CommandsQueue.hpp index ab4b0d4a7b..fe12de5c55 100644 --- a/modules/demux/adaptive/plumbing/CommandsQueue.hpp +++ b/modules/demux/adaptive/plumbing/CommandsQueue.hpp @@ -57,8 +57,8 @@ namespace adaptive friend class CommandsFactory; public: virtual ~EsOutSendCommand(); - virtual void Execute( es_out_t *out ); - virtual vlc_tick_t getTime() const; + virtual void Execute( es_out_t *out ) override; + virtual vlc_tick_t getTime() const override; const void * esIdentifier() const; protected: @@ -70,7 +70,7 @@ namespace adaptive { friend class CommandsFactory; public: - virtual void Execute( es_out_t *out ); + virtual void Execute( es_out_t *out ) override; protected: EsOutDelCommand( FakeESOutID * ); @@ -81,7 +81,7 @@ namespace adaptive friend class CommandsFactory; public: virtual ~EsOutAddCommand(); - virtual void Execute( es_out_t *out ); + virtual void Execute( es_out_t *out ) override; protected: EsOutAddCommand( FakeESOutID * ); @@ -91,8 +91,8 @@ namespace adaptive { friend class CommandsFactory; public: - virtual void Execute( es_out_t *out ); - virtual vlc_tick_t getTime() const; + virtual void Execute( es_out_t *out ) override; + virtual vlc_tick_t getTime() const override; protected: EsOutControlPCRCommand( int, vlc_tick_t ); @@ -104,7 +104,7 @@ namespace adaptive { friend class CommandsFactory; public: - virtual void Execute( es_out_t *out ); + virtual void Execute( es_out_t *out ) override; protected: EsOutDestroyCommand(); @@ -114,7 +114,7 @@ namespace adaptive { friend class CommandsFactory; public: - virtual void Execute( es_out_t *out ); + virtual void Execute( es_out_t *out ) override; protected: EsOutControlResetPCRCommand(); @@ -124,7 +124,7 @@ namespace adaptive { friend class CommandsFactory; public: - virtual void Execute( es_out_t *out ); + virtual void Execute( es_out_t *out ) override; protected: EsOutMetaCommand( int, vlc_meta_t * ); _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
