diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-09 04:34:02 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-09 04:34:02 +0000 |
commit | 9e430fb84b799f848263e1bbda6ba16dabc1d4f9 (patch) | |
tree | 36a0e61ae594b9b2de86468ccf3813da5ddffab5 /media/cdm | |
parent | 287853f5df9ee14f1e3c7b9075fbfea3fb0f6ddb (diff) | |
download | chromium_src-9e430fb84b799f848263e1bbda6ba16dabc1d4f9.zip chromium_src-9e430fb84b799f848263e1bbda6ba16dabc1d4f9.tar.gz chromium_src-9e430fb84b799f848263e1bbda6ba16dabc1d4f9.tar.bz2 |
Drop data offset in PP_EncryptedBlockInfo.
The data offset will be dropped from the CDM interface in a later CL.
BUG=298569
Review URL: https://codereview.chromium.org/122683002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243766 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/cdm')
-rw-r--r-- | media/cdm/ppapi/cdm_adapter.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/media/cdm/ppapi/cdm_adapter.cc b/media/cdm/ppapi/cdm_adapter.cc index 4395f70..530fffa 100644 --- a/media/cdm/ppapi/cdm_adapter.cc +++ b/media/cdm/ppapi/cdm_adapter.cc @@ -57,7 +57,6 @@ void ConfigureInputBuffer( input_buffer->data = static_cast<uint8_t*>(encrypted_buffer.data()); input_buffer->data_size = encrypted_block_info.data_size; PP_DCHECK(encrypted_buffer.size() >= input_buffer->data_size); - input_buffer->data_offset = encrypted_block_info.data_offset; PP_DCHECK(encrypted_block_info.key_id_size <= arraysize(encrypted_block_info.key_id)); |