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

Side by Side Diff: chromium/patches/README

Issue 9290059: Initial commit of all previous Chrome build scripts. (Closed) Base URL: http://git.chromium.org/chromium/third_party/ffmpeg.git@master
Patch Set: Drop deprecated subfolder. Created 8 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 Current Status as of November 28, 2011
2
3 from_upstream/
4 36_theora_flush.patch
5 should permit threading of theora
6
7 38_webm_cues_before_first_cluster.patch
8 acolwell: Fixes seeking for WebM files that have the CUES element before
9 the first CLUSTER instead of at the end of the file.
10
11 51_vp3_coefficient_overflow.patch
12 scherkus: Check coefficient index in vp3_dequant()
13
14
15 to_upstream/
16 01_static_pthread_O2.patch
17 rbultje: Nothing done yet. I doubt this will go in upstream.
18 IHF: move to ugly?
19
20 05_respect_flac_dirac_configure.patch
21 rbultje: Nothing done yet. I'll try to get this upstream later, but it's
22 no functional change so lower on my priority list.
23
24 11a_compile_with_disabled_features.patch
25 Add CONFIG_* checks to make sure we don't use sipr/compression if
26 unwanted (e.g. webm doesn't support them).
27
28 11b_mkv_buffer_overflow.patch
29 Remainder of the original patch.
30
31 12_ogg_seek_to_zero.patch
32 rbultje: I've looked into this, but didn't get anywhere yet. I can
33 reproduce the bug but the patch didn't really fix it. I'll try again.
34 IHF: The remainder of 25_ogg_index.patch has been merged into this.
35
36 14_vp8_encode_options.patch
37 Nothing yet.
38
39 15_webp_ffmpeg.patch
40 Nothing yet.
41
42 34_ogg_memcpy.patch
43 cevans: Fixes a buffer overrun. The sequence is:
44 - ogg_save (2 streams)
45 - ogg_read (clears all streams and restarts -> 1 stream)
46 - ogg_restore (tries to copy 2 stream pointers into space for one)
47
48 35_oggdec_duration.patch
49 scherkus: Reverts FFmpeg commit 5901cd6236d97b34fe59a47ba0fd6da8f647d1f1
50 which regressed duration calculation.
51
52 37_VP8_armv6_optimizations.patch
53 ports arm vp8 assembly from libvpx to support tegra2 decoding
54
55 39_VP8_fix_oob_read_writes.patch
56 Fixes a bunch of overreads and overwrites.
57
58 40_MKV_fix_oob_write.patch
59 Fixes an out-of-bounds write if laces==1 in MKV demuxer.
60
61 42_vp8_fix_segmentation_maps.patch
62 rbultje: Associate segmentation_map[] with reference frame rather than
63 decoding instance.
64
65 43_mkv_seekahead_revalidate.patch
66 cevans: avoid caching a pointer that might move due to a realloc()
67
68 44_vorbis_oob_read.patch
69 cevans: avoid the possibility of reading outside a static array of values
70
71 45_mkv_fix_segmap_cache_overflow.patch
72 rbultje: fix overflow in segmentation map caching
73
74 46_vp3_fix_double_free_invalid_read.patch
75 rbultje: fix corruption with corrupt input.
76
77 47_vp3_fix_infloop_and_memleak.patch
78 rbultje: fix memleaks and a potential infinite loop after 46.
79
80 48_vorbis_residue_buffer.patch
81 cevans: manage the writing to the residue buffer a little more tightly
82
83 49_vorbis_buffer_defense.patch
84 cevans: a defensive patch; the Vorbis codec is always going off the end of
85 its output buffer. Now, this should never happen again.
86
87 50_vp8_fix_frame_size_changes.patch
88 acolwell: fixes invalid reads on the segment maps when the frame dimensions
89 change.
90
91 52_vorbis_fix_floor1_vector_int_overflow.patch
92 rbultje: fix integer overflows in floor1[] vector and subsequent stack
93 overflows in inverse db table.
94
95 ugly/
96 07_get_bits_overrun.patch
97 Might get upstreamed as a compile-time macro (i.e., CHECK_FOR_OVERRUNS) but
98 will likely need to be rewritten.
99
100 08_enforce_theora_oob.patch
101 Needs investigating.
102
103 09_enforce_vorbis_oob_divzero.patch
104 Needs investigating.
105
106 10_aac_oob_read.patch
107 Needs investigating.
108
109 30_enforce_mp3_oob.patch
110 Needs investigating.
111
112 31_remove_attribute_deprecated.patch
113 CrOS still complains about deprecated attributes. Should be resolved by
114 changing Chromium code.
115 Rejected upstream.
116
117 41_matroska_cluster_incremental.patch
118 Parse matroska clusters incrementally as opposed to all at once.
119 Not for upstreamining as it needs work to handle SSA.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698