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

Unified Diff: media/filters/vpx_video_decoder.cc

Issue 1469783002: Cleanup: Correctly spell success(ful). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format media Created 5 years, 1 month 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/cast/sender/video_sender_unittest.cc ('k') | net/der/parse_values.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/vpx_video_decoder.cc
diff --git a/media/filters/vpx_video_decoder.cc b/media/filters/vpx_video_decoder.cc
index 180c002a4158be9ea893e718603179c731977465..d9721b0c9474e6aa83867d395d8dbad900473aaf 100644
--- a/media/filters/vpx_video_decoder.cc
+++ b/media/filters/vpx_video_decoder.cc
@@ -118,8 +118,8 @@ class VpxVideoDecoder::MemoryPool
// being used by libvpx. Parameters:
// |user_priv| Private data passed to libvpx (pointer to memory pool).
// |fb| Pointer to the frame buffer that's being released.
- static int32 ReleaseVP9FrameBuffer(void *user_priv,
- vpx_codec_frame_buffer *fb);
+ static int32 ReleaseVP9FrameBuffer(void* user_priv,
+ vpx_codec_frame_buffer* fb);
// Generates a "no_longer_needed" closure that holds a reference to this pool.
base::Closure CreateFrameCallback(void* fb_priv_data);
@@ -216,7 +216,8 @@ int32 VpxVideoDecoder::MemoryPool::GetVP9FrameBuffer(
}
int32 VpxVideoDecoder::MemoryPool::ReleaseVP9FrameBuffer(
- void *user_priv, vpx_codec_frame_buffer *fb) {
+ void* user_priv,
+ vpx_codec_frame_buffer* fb) {
DCHECK(user_priv);
DCHECK(fb);
VP9FrameBuffer* frame_buffer = static_cast<VP9FrameBuffer*>(fb->priv);
@@ -351,7 +352,7 @@ void VpxVideoDecoder::Decode(const scoped_refptr<DecoderBuffer>& buffer,
bound_decode_cb.Run(kDecodeError);
return;
}
- // We might get a successfull VpxDecode but not a frame if only a partial
+ // We might get a successful VpxDecode but not a frame if only a partial
// decode happened.
if (video_frame.get())
output_cb_.Run(video_frame);
« no previous file with comments | « media/cast/sender/video_sender_unittest.cc ('k') | net/der/parse_values.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698