Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(912)

Unified Diff: media/filters/video_decode_engine.h

Issue 3156046: Changed mft_h264_decoder's API to match with video_decode_engine.h. Also chan... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/media.gyp » ('j') | media/mf/mft_h264_decoder.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_decode_engine.h
===================================================================
--- media/filters/video_decode_engine.h (revision 57106)
+++ media/filters/video_decode_engine.h (working copy)
@@ -72,6 +72,7 @@
public:
struct EventHandler {
public:
+ virtual ~EventHandler() {}
Alpha Left Google 2010/08/24 23:03:33 good catch.
virtual void OnInitializeComplete(const VideoCodecInfo& info) = 0;
virtual void OnUninitializeComplete() = 0;
virtual void OnFlushComplete() = 0;
@@ -95,7 +96,7 @@
const VideoCodecConfig& config) = 0;
// Uninitialize the engine. Engine should destroy all resources and call
- // EventHandler::OnInitializeDone().
+ // EventHandler::OnUninitializeComplete().
virtual void Uninitialize() = 0;
// Flush the engine. Engine should return all the buffers to owner ( which
« no previous file with comments | « no previous file | media/media.gyp » ('j') | media/mf/mft_h264_decoder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698