diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-16 10:30:02 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-16 10:30:02 +0000 |
commit | dd680ffab688cb1b9f6ef5c2a8f0973fd839c743 (patch) | |
tree | 68ed173e61ad65d9cbc136634040ff4c9225e438 /media | |
parent | d91220a5c9667e59787c8b835f7687f1e0e8890d (diff) | |
download | chromium_src-dd680ffab688cb1b9f6ef5c2a8f0973fd839c743.zip chromium_src-dd680ffab688cb1b9f6ef5c2a8f0973fd839c743.tar.gz chromium_src-dd680ffab688cb1b9f6ef5c2a8f0973fd839c743.tar.bz2 |
Initialize context_ to NULL.
BUG=None
TEST=None
CID=13358
Review URL: http://codereview.chromium.org/3788001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/video/mft_h264_decode_engine.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/media/video/mft_h264_decode_engine.cc b/media/video/mft_h264_decode_engine.cc index ea59ad6..4558b7c 100644 --- a/media/video/mft_h264_decode_engine.cc +++ b/media/video/mft_h264_decode_engine.cc @@ -154,7 +154,8 @@ namespace media { MftH264DecodeEngine::MftH264DecodeEngine(bool use_dxva) : use_dxva_(use_dxva), state_(kUninitialized), - event_handler_(NULL) { + event_handler_(NULL), + context_(NULL) { memset(&input_stream_info_, 0, sizeof(input_stream_info_)); memset(&output_stream_info_, 0, sizeof(output_stream_info_)); memset(&config_, 0, sizeof(config_)); |