diff options
author | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-20 20:34:46 +0000 |
---|---|---|
committer | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-20 20:34:46 +0000 |
commit | d5e3134ae95c77ba72383c4299d47140b5c57468 (patch) | |
tree | ec439794cea7f374c44aafcb9de095d3ba5d9319 /third_party | |
parent | 55f773b1a8a98dd59d73071f7294e928712d64a7 (diff) | |
download | chromium_src-d5e3134ae95c77ba72383c4299d47140b5c57468.zip chromium_src-d5e3134ae95c77ba72383c4299d47140b5c57468.tar.gz chromium_src-d5e3134ae95c77ba72383c4299d47140b5c57468.tar.bz2 |
Temporary fix for MP3 decoding by duplicating packets before handing them to the decoder.
Turns out packets filled out by av_read_frame() were being modifying on subsequent calls to av_read_frame(). Might be a case of setting the data pointer to internal memory as opposed to allocated memory.
Review URL: http://codereview.chromium.org/115561
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16525 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/ffmpeg/avcodec-52.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/ffmpeg/avcodec-52.def b/third_party/ffmpeg/avcodec-52.def index e567dc9..5c0ebab 100644 --- a/third_party/ffmpeg/avcodec-52.def +++ b/third_party/ffmpeg/avcodec-52.def @@ -1,6 +1,7 @@ LIBRARY avcodec-52 EXPORTS av_get_bits_per_sample_format + av_new_packet avcodec_alloc_context avcodec_alloc_frame avcodec_decode_audio2 |