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

Unified Diff: content/common/gpu/media/h264_parser.cc

Issue 10538083: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | « chrome/browser/download/download_file_picker.cc ('k') | media/audio/async_socket_io_handler_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/media/h264_parser.cc
diff --git a/content/common/gpu/media/h264_parser.cc b/content/common/gpu/media/h264_parser.cc
index 4744a7680bfd27f2c40fbcc488a96bf47b254bd2..ace3dabed033c7991c6d747c35c8226b530a0541 100644
--- a/content/common/gpu/media/h264_parser.cc
+++ b/content/common/gpu/media/h264_parser.cc
@@ -54,7 +54,8 @@ H264Parser::H264BitReader::H264BitReader()
: data_(NULL),
bytes_left_(0),
curr_byte_(0),
- num_remaining_bits_in_curr_byte_(0) {
+ num_remaining_bits_in_curr_byte_(0),
+ prev_two_bytes_(0) {
}
H264Parser::H264BitReader::~H264BitReader() {}
« no previous file with comments | « chrome/browser/download/download_file_picker.cc ('k') | media/audio/async_socket_io_handler_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698