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

Unified Diff: source/patched-ffmpeg-mt/libavcodec/mpegaudio.h

Issue 2850032: ffmpeg update to june 23 version which fixes mp4 crash on still frames with 3... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: Created 10 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
Index: source/patched-ffmpeg-mt/libavcodec/mpegaudio.h
===================================================================
--- source/patched-ffmpeg-mt/libavcodec/mpegaudio.h (revision 50820)
+++ source/patched-ffmpeg-mt/libavcodec/mpegaudio.h (working copy)
@@ -156,6 +156,8 @@
int dither_state;
int error_recognition;
AVCodecContext* avctx;
+ void (*apply_window_mp3)(MPA_INT *synth_buf, MPA_INT *window,
+ int *dither_state, OUT_INT *samples, int incr);
} MPADecodeContext;
/* layer 3 huffman tables */
@@ -175,7 +177,8 @@
INTFLOAT sb_samples[SBLIMIT]);
void ff_mpa_synth_init_float(MPA_INT *window);
-void ff_mpa_synth_filter_float(MPA_INT *synth_buf_ptr, int *synth_buf_offset,
+void ff_mpa_synth_filter_float(MPADecodeContext *s,
+ MPA_INT *synth_buf_ptr, int *synth_buf_offset,
MPA_INT *window, int *dither_state,
OUT_INT *samples, int incr,
INTFLOAT sb_samples[SBLIMIT]);
« no previous file with comments | « source/patched-ffmpeg-mt/libavcodec/mpeg4audio.c ('k') | source/patched-ffmpeg-mt/libavcodec/mpegaudiodec.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698