diff options
author | dalecurtis@chromium.org <dalecurtis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-13 22:24:21 +0000 |
---|---|---|
committer | dalecurtis@chromium.org <dalecurtis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-13 22:24:21 +0000 |
commit | 52fb9c27e801672992f1b5c3cc63516e2b39776d (patch) | |
tree | 296b3664f9b2ea306500cc4d3eedb88dbd917256 /media/media.gyp | |
parent | 82d1954da4ed99c892c137736820ed1e19ad9e35 (diff) | |
download | chromium_src-52fb9c27e801672992f1b5c3cc63516e2b39776d.zip chromium_src-52fb9c27e801672992f1b5c3cc63516e2b39776d.tar.gz chromium_src-52fb9c27e801672992f1b5c3cc63516e2b39776d.tar.bz2 |
Cleanup OPUS decoder. Remove extraneous transforms and copies.
Various cleanups:
- Fixes start trimming after seeks.
- Patches FFmpegDemuxer to workaround FFmpeg pre-stripping codec delay.
- Switches decoding to float on all platforms.
- Decodes directly into the AudioBuffer instead of making a copy.
- Switches various error logs to actually be DLOG(ERROR).
- Various tiny code cleanups.
- Rolls DEPS for a couple more OPUS FFmpeg fixes.
BUG=104241, 166752, 168524, 315165, 328207
TEST=opus decoding still works.
Review URL: https://codereview.chromium.org/100503006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240775 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/media.gyp')
-rw-r--r-- | media/media.gyp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/media/media.gyp b/media/media.gyp index fe3b797..97e2f5d 100644 --- a/media/media.gyp +++ b/media/media.gyp @@ -560,6 +560,10 @@ 'base/media.h', 'base/media_stub.cc', ], + 'sources!': [ + 'filters/opus_audio_decoder.cc', + 'filters/opus_audio_decoder.h', + ], 'conditions': [ ['android_webview_build==0', { 'dependencies': [ |