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

Unified Diff: media/filters/ffmpeg_video_decode_engine.h

Issue 2804042: Incomplete changes to make scoped_ptr_malloc use plain functions. (Closed)
Patch Set: chrome now builds & links Created 10 years, 5 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 | « media/filters/ffmpeg_audio_decoder.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/ffmpeg_video_decode_engine.h
diff --git a/media/filters/ffmpeg_video_decode_engine.h b/media/filters/ffmpeg_video_decode_engine.h
index 3941c525470d14768f6ce4a70ce87b520de078e8..837608ad0867384ed685641de20938c0cdd8ce19 100644
--- a/media/filters/ffmpeg_video_decode_engine.h
+++ b/media/filters/ffmpeg_video_decode_engine.h
@@ -51,7 +51,7 @@ class FFmpegVideoDecodeEngine : public VideoDecodeEngine {
AVCodecContext* codec_context_;
AVStream* av_stream_;
State state_;
- scoped_ptr_malloc<AVFrame, ScopedPtrAVFree> av_frame_;
+ scoped_ptr_malloc<AVFrame, FreeFnAdapter<av_free> > av_frame_;
scoped_ptr<FillThisBufferCallback> fill_this_buffer_callback_;
scoped_ptr<EmptyThisBufferCallback> empty_this_buffer_callback_;
« no previous file with comments | « media/filters/ffmpeg_audio_decoder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698