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

Unified Diff: media/filters/ffmpeg_demuxer.cc

Issue 46015: Buffer interface is not uint8*. Slight change to way data buffers are create... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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/audio_renderer_base.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/ffmpeg_demuxer.cc
===================================================================
--- media/filters/ffmpeg_demuxer.cc (revision 11456)
+++ media/filters/ffmpeg_demuxer.cc (working copy)
@@ -29,8 +29,8 @@
}
// Buffer implementation.
- virtual const char* GetData() const {
- return reinterpret_cast<const char*>(packet_->data);
+ virtual const uint8* GetData() const {
+ return reinterpret_cast<const uint8*>(packet_->data);
}
virtual size_t GetDataSize() const {
« no previous file with comments | « media/filters/audio_renderer_base.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698