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

Unified Diff: media/base/mock_ffmpeg.cc

Issue 174027: Fix Issue 160529 in a nice way (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | « media/base/mock_ffmpeg.h ('k') | media/filters/ffmpeg_demuxer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/mock_ffmpeg.cc
===================================================================
--- media/base/mock_ffmpeg.cc (revision 23787)
+++ media/base/mock_ffmpeg.cc (working copy)
@@ -77,7 +77,6 @@
// FFmpeg stubs that delegate to the FFmpegMock instance.
extern "C" {
-
void avcodec_init() {
media::MockFFmpeg::get()->AVCodecInit();
}
@@ -174,6 +173,9 @@
}
}
+int av_dup_packet(AVPacket* packet) {
+ return media::MockFFmpeg::get()->AVDupPacket(packet);
+}
} // extern "C"
} // namespace media
« no previous file with comments | « media/base/mock_ffmpeg.h ('k') | media/filters/ffmpeg_demuxer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698