commit_msg
stringlengths
1
24.2k
commit_hash
stringlengths
2
84
project
stringlengths
2
40
source
stringclasses
4 values
labels
int64
0
1
repo_url
stringlengths
26
70
commit_url
stringlengths
74
118
commit_date
stringlengths
25
25
vc1: avoid reading beyond the last line in vc1_draw_sprites() Fixes overread Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Kostya Shishkov <[email protected]>
2bf369b60c7d56dd73887a0156c37676d0fa7e29
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2bf369b60c7d56dd73887a0156c37676d0fa7e29
2012-07-28 13:35:12+02:00
dsputil_mmx: fix incorrect assembly code In file libavcodec/x86/dsputil_mmx.c, function ff_put_pixels_clamped_mmx(), there are two assembly code blocks. In the first block (in the unrolled loop), the instructions "movq 8%3, %%mm1 \n\t" etc have problem. For above instruction, it is clear what the programmer wants: a load from p + 8. But this assembly code doesn’t guarantee that. It only works if the compiler puts p in a register to produce an instruction like this: “movq 8(%edi), %mm1”. During compiler optimization, it is possible that the compiler will be able to constant propagate into p. Suppose p = &x[10000]. Then operand 3 can become 10000(%edi), where %edi holds &x. And the instruction becomes “movq 810000(%edx)”. That is, it will stride by 810000 instead of 8. This will cause the segmentation fault. This error was fixed in the second block of the assembly code, but not in the unrolled loop. How to reproduce: This error is exposed when we build the ffmpeg using Intel C++ Compiler, IPO+PGO optimization. The ffmpeg was crashed when decoding a mjpeg video. Signed-off-by: Michael Niedermayer <[email protected]>
6a2bad2c4f609c2a35672c2e5b9775b0865b4c3a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6a2bad2c4f609c2a35672c2e5b9775b0865b4c3a
2012-07-24 00:55:05+02:00
doc/protocols: document "fifo_size" and "overrun_nonfatal" UDP options Address trac ticket #1511.
469b9ce83fb702b8c988d4dc82cd28c2c6b262cd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/469b9ce83fb702b8c988d4dc82cd28c2c6b262cd
2012-07-19 22:31:41+02:00
mem: introduce av_malloc_array and av_mallocz_array Both function ease allocating large arrays implementing the overflow check inside it.
f3e5e6f05bde31374eb6ea389b56d3979b5e1010
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f3e5e6f05bde31374eb6ea389b56d3979b5e1010
2012-07-14 20:07:25+02:00
mpegvideo: Don't use ff_mspel_motion() for vc1 Using ff_mspel_motion assumes that s (a MpegEncContext poiinter) really is a Wmv2Context. This fixes crashes in error resilience on vc1/wmv3 videos. CC: [email protected] Signed-off-by: Martin Storsjö <[email protected]>
18f2d5cb9c48d06895960f37467576725c9dc2d1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/18f2d5cb9c48d06895960f37467576725c9dc2d1
2012-07-05 12:41:19+03:00
tcp: Check the return value from getsockopt Make sure we actually have an error code in ret, in case getsockopt failed. Signed-off-by: Martin Storsjö <[email protected]>
bb6c1abb0e022e1edaa5b3d8bb5abdff4f0c0ff2
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bb6c1abb0e022e1edaa5b3d8bb5abdff4f0c0ff2
2012-06-19 20:25:07+03:00
rtmp: Fix a possible access to invalid memory location when the playpath is too short. Signed-off-by: Martin Storsjö <[email protected]>
0a9a2257339c8697be31e64b36fa6208132b11bd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0a9a2257339c8697be31e64b36fa6208132b11bd
2012-06-12 14:33:57+03:00
vp3dec: fix null ptr derefernce. Fixes ticket1403 Signed-off-by: Michael Niedermayer <[email protected]>
1125606a1f8bdcabbdd9107831d20e86f0dfeeae
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1125606a1f8bdcabbdd9107831d20e86f0dfeeae
2012-06-17 19:50:58+02:00
ffv1: fix crash caused by version becoming inconsistent Fixes part of Ticket1372 Found-by: Piotr Bandurski <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
97c281d5b7d1c4850a8ba7d9921137634224b2f3
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/97c281d5b7d1c4850a8ba7d9921137634224b2f3
2012-06-02 02:30:55+02:00
aacdec: print debug note when unexpected SCE/CPE is encountered Signed-off-by: Michael Niedermayer <[email protected]>
a3710f1ebb30225ee8f6e88524dbdcb6b50627f4
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a3710f1ebb30225ee8f6e88524dbdcb6b50627f4
2012-05-21 20:34:32+02:00
lavfi/aevalsrc: fix sample rate negotiation, after the last merge Fix crash.
986d2f6ec04a55678335cb3d7f2c2de84594d760
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/986d2f6ec04a55678335cb3d7f2c2de84594d760
2012-05-16 15:28:43+02:00
mpegmux: add stuffing to avoid incomplete PCM frames Fixes https://bugzilla.libav.org/show_bug.cgi?id=244
29d27b54251fe250f6fe512b7759a1405362ae67
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/29d27b54251fe250f6fe512b7759a1405362ae67
2012-05-06 13:18:38+02:00
Mark truncated packets as corrupt in av_get_packet. Manually remove that flag again for formats that read an arbitrary amount of data and thus truncation is not an error. Signed-off-by: Reimar Döffinger <[email protected]>
7effbee66cf457c62f795d9b9ed3a1110b364b89
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7effbee66cf457c62f795d9b9ed3a1110b364b89
2012-05-01 23:20:52+02:00
lavfi: create buffer reference in filters which need to access the ref later Also add internal function ff_null_start_frame_keep_ref(). Fix crash when a following filter (e.g. settb) will unref the reference passed by start_frame(), and then the reference is accessed in end_frame() through inlink->cur_buf.
6b55aab01a5c2e4c9f2851fdb9b7583f184b5241
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6b55aab01a5c2e4c9f2851fdb9b7583f184b5241
2012-04-27 21:38:13+02:00
wmalosslessdec: Reset residues to 0 if they were not decoded from bitstream. If channel residues are have not been decoded from bitstream, they should be initialized to 0 instead of using values from previous subframe. This causes bursts of noise in silent parts of some files. This patch fixes bug #1055 Reviewed-by: Benjamin Larsson <[email protected]> Reviewed-by: Mashiat Sarker Shakkhar <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
3b00fd5985c3ddffe7f66f72dcaa13b478fc7459
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3b00fd5985c3ddffe7f66f72dcaa13b478fc7459
2012-04-12 12:41:53+02:00
mjpeg: fix crash with lowres and flipped images Fixes Ticket1155 Signed-off-by: Michael Niedermayer <[email protected]>
0cd17a6291bdd5e3d89dad2bac96393af92ac9bd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0cd17a6291bdd5e3d89dad2bac96393af92ac9bd
2012-04-12 02:02:30+02:00
latmenc: error out when packet size is too large. Previously it would just silently write out incorrect data. This also fixes a potential integer overflow in the allocation. Signed-off-by: Reimar Döffinger <[email protected]>
8e357e8e759b36e5609ccd12a9e324aee0e8afc8
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8e357e8e759b36e5609ccd12a9e324aee0e8afc8
2012-04-11 22:28:34+02:00
lzw: fix potential integer overflow.
0399fe0fd23ff272282dd093cc2720deb6f87ea8
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0399fe0fd23ff272282dd093cc2720deb6f87ea8
2012-03-29 11:36:14-07:00
h264: Add check for invalid chroma_format_idc Fixes a crash when FF_DEBUG_PICT_INFO is used. Signed-off-by: Ronald S. Bultje <[email protected]>
6ef4063957aa5025c8d2cd757b6a537e4b6874df
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6ef4063957aa5025c8d2cd757b6a537e4b6874df
2012-03-24 15:29:38-07:00
indeo4: fix out-of-bounds function call. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected] Signed-off-by: Kostya Shishkov <[email protected]>
68fd077f68bdde864bb7328d72a040849c616261
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/68fd077f68bdde864bb7328d72a040849c616261
2012-03-21 19:01:08+01:00
segment: fix null pointer dereference Signed-off-by: Paul B Mahol <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
4246032216181c778f7ddf7f2e062cada2ef346d
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4246032216181c778f7ddf7f2e062cada2ef346d
2012-03-22 13:43:26+01:00
Fix uninitialized reads on malformed ogg files. The ogg decoder wasn't padding the input buffer with the appropriate FF_INPUT_BUFFER_PADDING_SIZE bytes. Which led to uninitialized reads in various pieces of parsing code when they thought they had more data than they actually did. Signed-off-by: Dale Curtis <[email protected]> Signed-off-by: Ronald S. Bultje <[email protected]>
ef0d779706c77ca9007527bd8d41e9400682f4e4
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ef0d779706c77ca9007527bd8d41e9400682f4e4
2012-03-08 11:52:15-08:00
mmvideo: fix overreads of the input buffer. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
37fca5daa0bed1fdb651dfc1c38a3b47f79c58a5
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/37fca5daa0bed1fdb651dfc1c38a3b47f79c58a5
2012-03-04 08:14:07+01:00
srtdec: fix a format string vulnerability. Signed-off-by: Michael Niedermayer <[email protected]>
aaa1173de775b9b865a714abcc270816d2f59dff
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/aaa1173de775b9b865a714abcc270816d2f59dff
2012-03-03 02:35:27+01:00
svq3dec: fix overread of the cliping table. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
436f866f92a9483717e376866783346bf8a00e58
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/436f866f92a9483717e376866783346bf8a00e58
2012-03-01 05:25:11+01:00
dca: dont overread dca_default_coeffs. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
d7bce4a274c4fc7453cde2d1c5d8a7a5805718df
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d7bce4a274c4fc7453cde2d1c5d8a7a5805718df
2012-02-29 21:18:54+01:00
rpza: error out on buffer overreads. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected]
78e9852a2e3b198ecd69ffa0deab3fa22a8e5378
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/78e9852a2e3b198ecd69ffa0deab3fa22a8e5378
2012-02-29 11:21:01-08:00
swscale: fix crashes in yuv2yuvX on x86-32. They were introduced in an earlier commit that introduced use of named arguments. One cause was a typo, a second cause appears to be a bug in x264asm that I work around by not using named arguments.
771bab7f573fdb4a5c9456ecaabf15c5a14a22b0
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/771bab7f573fdb4a5c9456ecaabf15c5a14a22b0
2012-02-13 13:41:13-08:00
tta: do not leak memory if bps == 3 In bps == 3 case output is decoded directly. Signed-off-by: Paul B Mahol <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
c6abf214923ae8ee07456c5594f632a10499442b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c6abf214923ae8ee07456c5594f632a10499442b
2012-02-11 02:02:01+01:00
svq3: Prevent illegal reads while parsing extradata. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
9e1db721c4329f4ac166a0bcc002c8d75f831aba
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9e1db721c4329f4ac166a0bcc002c8d75f831aba
2012-02-10 09:57:39-08:00
libavcodec: Don't do av_free(av_malloc(0)) for bitstream filters This fixes crashes on exit when closing a bitstream filter that hasn't allocated any private data, on OS X. Signed-off-by: Martin Storsjö <[email protected]>
e7d4a2a721ae863488f6a3814f9dcdbc6e8f5166
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e7d4a2a721ae863488f6a3814f9dcdbc6e8f5166
2012-02-09 23:13:50+02:00
nsvdec: Fix use of uninitialized streams. Fixes CVE-2011-3940 (Out of bounds read resulting in out of bounds write) Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit 5c011706bc752d34bc6ada31d7df2ca0c9af7c6b) Signed-off-by: Alex Converse <[email protected]>
6a89b41d9780325ba6d89a37f2aeb925aa68e6a3
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6a89b41d9780325ba6d89a37f2aeb925aa68e6a3
2012-01-30 10:14:06-08:00
Fix potential infinite discard loop. Fixes trac issue #438. Seeking in that sample would cause ogg_read_timestamp to fail because ogg_packet would go into a state where all packets of stream 1 would be discarded until the end of the stream. Signed-off-by: Reimar Döffinger <[email protected]>
d7b542ae294aaf818f2a00c5606e009cf931e77c
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d7b542ae294aaf818f2a00c5606e009cf931e77c
2012-02-04 19:13:29+01:00
pthreads: reset got_frames on flush. This fixes memory corruption when seeking in broken streams. a random mpeg4 in nut file was used to debug. Signed-off-by: Michael Niedermayer <[email protected]>
575d494de561049f36f9c5492e05c7d83dd78e75
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/575d494de561049f36f9c5492e05c7d83dd78e75
2012-01-23 19:47:49+01:00
avidec: Fix regression with chunks that are larger than the file. This commit makes the check specific to the case that needs it. Regression was introduced by commit 62adc60b97d854507d07a21b2f370ab5c69e6b7b Author: Michael Niedermayer <[email protected]> Date: Fri Dec 16 06:13:04 2011 +0100 avidec: Check that the header chunks fit in the available filesize. Fixes Ticket771 Bug found by: Diana Elena Muscalu Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
28d634711b0cca18677a48d18416566b6565b567
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/28d634711b0cca18677a48d18416566b6565b567
2012-01-25 06:48:30+01:00
pthread: Change a signal to a broadcast as multiple threads have been seen waiting and deadlocking on it in bug125. Signed-off-by: Michael Niedermayer <[email protected]>
199d4478de102ca7987adb97f2e66a1820a98ebd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/199d4478de102ca7987adb97f2e66a1820a98ebd
2012-01-22 23:07:09+01:00
vorbis: Avoid some out-of-bounds reads Fixes Bug: #190 Chromium Bug: #100543 Related to CVE-2011-3893 Signed-off-by: Reinhard Tartler <[email protected]>
57cd6d709565e84e84385f8f2a9641ca3fa718be
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/57cd6d709565e84e84385f8f2a9641ca3fa718be
2012-01-06 19:58:22+01:00
vcr1dec: Check that there is sufficient input data. Fixes crash. Signed-off-by: Michael Niedermayer <[email protected]>
8e09482e4d27d65bbce2ce5c2f4392216011ed09
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8e09482e4d27d65bbce2ce5c2f4392216011ed09
2011-12-28 19:05:16+01:00
Init s->cdlms[][].recent to order - 1 Not sure if this is correct. But looks like it was giving us off-by-one's when used to index buffers.
be8a0d26dbeec72b8e254e00724f170c28644c98
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/be8a0d26dbeec72b8e254e00724f170c28644c98
2011-11-30 02:17:44+06:00
wma: initialize prev_block_len_bits, next_block_len_bits, and block_len_bits. The initial values are not checked against the number of block sizes. Initializing them to frame_len_bits will result in a block size index of 0 in these cases instead of something that might be out-of-range. Fixes Bug 81.
05d1e45d1f42cc90d1f2f36c546d0096cea126a8
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/05d1e45d1f42cc90d1f2f36c546d0096cea126a8
2011-11-22 13:50:18-05:00
Correct buffer handling for RTCP packets Previous code could read 4 bytes past the end of the buffer on a RTCP_SR packet or offset a pointer by an unchecked external value (payload_len), though neither will reliably cause a crash or other misbehavior beyond garbage timestamps. Additionally, unknown RTCP packet types, even in compounded packets, are now ignored as per RFC 3550 section 6.1, page 22, though currently this only has any practical effect if a sender puts an unrecognized type before RTCP_BYE in a compounded packet, or (incorrectly) does not put RTCP_SR first. Signed-off-by: John Brooks <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
c1847c932b1576e8224c38e112a5fd29fa8a6098
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c1847c932b1576e8224c38e112a5fd29fa8a6098
2011-10-13 03:31:01+02:00
avs: check for out of bound reads Signed-off-by: Janne Grunau <[email protected]>
de049a95f4a8089b2878c7fcef6cac7e88a8f1bf
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/de049a95f4a8089b2878c7fcef6cac7e88a8f1bf
2011-10-10 21:36:12+02:00
bink: Check for various out of bound writes Signed-off-by: Janne Grunau <[email protected]>
a00676e48e49a3d794d6d2063ceca539e945a4a4
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a00676e48e49a3d794d6d2063ceca539e945a4a4
2011-10-08 16:32:01+02:00
mpc8: Check out of bound bands limit Signed-off-by: Janne Grunau <[email protected]>
9bd854b1ff342f82efa6d2ad4e8fefddce5fa731
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9bd854b1ff342f82efa6d2ad4e8fefddce5fa731
2011-10-07 17:15:45+02:00
Fix out of bound reads/writes in the TIFF decoder. Signed-off-by: Michael Niedermayer <[email protected]>
5ca5d432e028ffdd4067b87aed6702168c3207b6
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5ca5d432e028ffdd4067b87aed6702168c3207b6
2011-10-01 02:41:40+02:00
Check for out of bounds writes in the Delphine Software International CIN decoder. Signed-off-by: Michael Niedermayer <[email protected]>
3035c4034b6af3ad47f921e3385196e1b9d44ddf
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3035c4034b6af3ad47f921e3385196e1b9d44ddf
2011-09-30 02:09:58+02:00
Prevent NULL dereference when the palette is missing in the xan decoder. Signed-off-by: Michael Niedermayer <[email protected]>
56ee5a9ad1b385129c40ba4773f99bc5943ae8af
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/56ee5a9ad1b385129c40ba4773f99bc5943ae8af
2011-09-29 06:11:18+02:00
ffmpeg: fix wrong indention that leaked in from merge Signed-off-by: Michael Niedermayer <[email protected]>
2f3dd904f4d3b2df5ea36ab5720d8f8834c54817
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2f3dd904f4d3b2df5ea36ab5720d8f8834c54817
2011-09-28 03:19:22+02:00
oggenc: add missing initializer braces to shut up gcc warning. This fixes the warning: libavformat/oggenc.c:75:7: warning: missing braces around initializer [-Wmissing-braces]
9acffed9e0d7c454b7bc5c947f33cdf8cab3758c
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9acffed9e0d7c454b7bc5c947f33cdf8cab3758c
2011-08-10 21:03:39+02:00
avconv: Replace goto redo on decode fail with continue. This checks for sigterm but otherwise is identical to the previous behavior.
b9630bcf8215034f5a50e1f6835d4c4366413618
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b9630bcf8215034f5a50e1f6835d4c4366413618
2011-08-24 10:13:32-07:00
swscale: extend mmx padding. Fixes a crash when forcing libc to strictly adhere to malloc sizes.
baba2eedacbbaecf55bdb89dbfe32c69799df99f
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/baba2eedacbbaecf55bdb89dbfe32c69799df99f
2011-07-14 13:27:06-07:00
swscale: clip unscaled colorspace conversion path. Prevents overflows on very bright scenes when adding dither, which may lead to black dots.
55eda370cb6fe9e4c21539f3f90fd940fcf7a103
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/55eda370cb6fe9e4c21539f3f90fd940fcf7a103
2011-07-14 13:27:06-07:00
swscale: fix crash in 8-bpc bilinear output without alpha. We accessed the alpha array even it wasn't used and didn't exist, hence leading to a NULL pointer segfault. (cherry picked from commit bf2cba453244a74331238a472fe0e309f116f4d9)
71a04bc19dfb990d3f7cce82b5516e88d2c371f4
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/71a04bc19dfb990d3f7cce82b5516e88d2c371f4
2011-07-11 03:51:46+02:00
swscale: fix overflow in 16-bit vertical scaling. We operated on 31-bits, but with e.g. lanczos scaling, values can add up to beyond 0x80000000, thus leading to output of zeroes. Drop one bit of precision fixes this.
7d7bacf0f1f43f5cc112977fc3b8438e3e4a4a9b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7d7bacf0f1f43f5cc112977fc3b8438e3e4a4a9b
2011-07-08 15:15:30-07:00
swscale: fix crash in 8-bpc bilinear output without alpha. We accessed the alpha array even it wasn't used and didn't exist, hence leading to a NULL pointer segfault.
bf2cba453244a74331238a472fe0e309f116f4d9
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bf2cba453244a74331238a472fe0e309f116f4d9
2011-07-08 15:15:30-07:00
Bump major version for b8e893399ff8755721dc117695ec5ff183c1e07b On architectures such as x86 (both 32 bit and 64bit), the stack element size is fixed, which maintains alignment. Here, this change does not break anything. However, we also support also other architectures where this property is not maintained and therefore, applications will crash horribly. This change effectively forces all applications to be recompiled against libswscale.
07935318598722e6ffe0f9980010a96f076d7152
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/07935318598722e6ffe0f9980010a96f076d7152
2011-06-20 18:01:39+02:00
Make buffer size check consistent and avoid a possible overflow.
7f2228dbfec0268b8b486573041043c0de1aa381
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7f2228dbfec0268b8b486573041043c0de1aa381
2011-06-15 20:21:33+02:00
Fail when lowres value is lower than 0 The attached patch fixes the crash which happens when user passes lowres value lower than 0 to FFplay. ffplay -lowres -1 test.mpg Signed-off-by: Michael Niedermayer <[email protected]>
7a54edaa16be3673a2ae8110d1777462c7f6ed7c
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7a54edaa16be3673a2ae8110d1777462c7f6ed7c
2011-05-25 23:42:56+02:00
In svq3 decoder, check negative mb_type, fix potential crash. Signed-off-by: Michael Niedermayer <[email protected]>
0fa8d19987f03444365a5c7f73b7ecf1520b011e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0fa8d19987f03444365a5c7f73b7ecf1520b011e
2011-05-06 00:30:03+02:00
asfdec: fix parsing of packets that overrun into padding. Signed-off-by: Ronald S. Bultje <[email protected]>
f8b1245922cf4c7692750e9198cf57598f9647d5
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f8b1245922cf4c7692750e9198cf57598f9647d5
2011-05-03 22:14:04-04:00
scale: fix leak occurring when a scale filter is reconfigured This currently only occurrs in vsrc_buffer in case of mid-stream size/format change. Fix trac issue #124.
f97905e61d7cb86987d7d4f5fabcfc0d6b57ddbb
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f97905e61d7cb86987d7d4f5fabcfc0d6b57ddbb
2011-05-02 16:46:24+02:00
bink: prevent overflows within binkidct by using int-sized intermediate array Signed-off-by: Ronald S. Bultje <[email protected]>
e211e255aa399d68239ffa42c9cc7a52eb3d55a9
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e211e255aa399d68239ffa42c9cc7a52eb3d55a9
2011-02-25 15:24:35-05:00
Do not fail DVB sub decoding because of a few padding bytes Instead of returning an error when bytes are left over, just return the number of actually used bytes as other decoders do. Instead add a special case so an error will be returned when none of the data looks valid to avoid making debugging a pain. Signed-off-by: Janne Grunau <[email protected]> (cherry picked from commit 4a72765a1c94b05bd3053b1f34f8457a3b71d714)
20708223dbd35b69a1b7cb542ee340c7c22af504
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/20708223dbd35b69a1b7cb542ee340c7c22af504
2011-02-11 02:54:09+01:00
sapenc: Free AVStream->info on cleanup This fixes yet another memory leak, present since SVN rev 25418. Signed-off-by: Mans Rullgard <[email protected]> (cherry picked from commit 1f56f5ed6d68f6492e213944e145e04e4d4dca13)
a991b8dec654ad09a35494e0cabbbc157bb04dab
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a991b8dec654ad09a35494e0cabbbc157bb04dab
2011-02-04 03:10:12+01:00
Use av_fast_malloc instead of av_realloc. This should be faster, is less code and fixes issue 2524 (allocation error would lead to crash).
e7b95918fca1c3d057d35f77ba58ee2d00d03151
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e7b95918fca1c3d057d35f77ba58ee2d00d03151
2011-01-24 19:35:20+01:00
Make x11grab cursor drawing suck less This new version: 1. Works on 24-bit and 32-bit input, not just 32-bit. 2. Doesn't try to run on 16-bit or 8-bit, instead of outright crashing. 3. Does proper alpha-blending, so cursor shadows look correct. 4. Doesn't swap R and B. Mostly fixes issue 1997. Fixes issue 2056. Originally committed as revision 25690 to svn://svn.ffmpeg.org/ffmpeg/trunk
8ce803db51a28eb662b6271b2b223e0312bdb3d2
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8ce803db51a28eb662b6271b2b223e0312bdb3d2
2010-11-07 18:04:46+00:00
Add missing NULL checks, fix crash. Originally committed as revision 25181 to svn://svn.ffmpeg.org/ffmpeg/trunk
120119225a5363f89822addb472085631d2157bc
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/120119225a5363f89822addb472085631d2157bc
2010-09-24 20:01:38+00:00
Handle av_base64_decode return value garbled sdp would cause crash otherwise. Originally committed as revision 24191 to svn://svn.ffmpeg.org/ffmpeg/trunk
dc6cf61e331557eb275a44d7a31df8e781bbb22b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/dc6cf61e331557eb275a44d7a31df8e781bbb22b
2010-07-11 11:54:48+00:00
avfilter: do not crash on null link src/dst in avfilter_destroy() Originally committed as revision 24719 to svn://svn.ffmpeg.org/ffmpeg/trunk
0bb7408e557f5d5ee3f8c1d001012e5c204c20b4
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0bb7408e557f5d5ee3f8c1d001012e5c204c20b4
2010-08-06 22:25:36+00:00
Fix warning: ffmpeg.c: In function 'new_audio_stream': ffmpeg.c:665: warning: 'best' may be used uninitialized in this function ffmpeg.c:665: note: 'best' was declared here Originally committed as revision 24033 to svn://svn.ffmpeg.org/ffmpeg/trunk
947cbeca16c7a30322e02feea440e1e67801ab9a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/947cbeca16c7a30322e02feea440e1e67801ab9a
2010-07-03 23:22:25+00:00
ffmpeg: replace MAX_STREAMS by an arbitrary sanity check Originally committed as revision 25304 to svn://svn.ffmpeg.org/ffmpeg/trunk
84fd51e5ad41147c12d63471f98fb68361258646
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/84fd51e5ad41147c12d63471f98fb68361258646
2010-10-01 21:56:09+00:00
aacenc: Use exact values when quantizing, not fuzzy values. This requires us to code small escapes; we can't avoid it. Originally committed as revision 23135 to svn://svn.ffmpeg.org/ffmpeg/trunk
4d986b71721ddf26ab8563b933ec8dd3ec88e59c
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4d986b71721ddf26ab8563b933ec8dd3ec88e59c
2010-05-14 16:49:40+00:00
vp3: avoid buffer overread in coeff decode I couldn't measure it to be slower for normal interframe videos. For the worst case, high-bitrate intra-only videos, it can be 0.7% slower. Originally committed as revision 22416 to svn://svn.ffmpeg.org/ffmpeg/trunk
f50dafa8fcefac0fc3a0e010eb444c1b5acaccc9
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f50dafa8fcefac0fc3a0e010eb444c1b5acaccc9
2010-03-10 00:59:32+00:00
aacsbr: Fail early on illegal envelope counts. Originally committed as revision 22381 to svn://svn.ffmpeg.org/ffmpeg/trunk
ed1d112931776f40c5fc759204b79c78dfee5f9a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ed1d112931776f40c5fc759204b79c78dfee5f9a
2010-03-09 10:25:42+00:00
Fixed buffer overread in flashsv decoder. Originally committed as revision 22210 to svn://svn.ffmpeg.org/ffmpeg/trunk
b8fb21e902f83d8bd8dc340a52cadfd64e685774
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b8fb21e902f83d8bd8dc340a52cadfd64e685774
2010-03-04 19:10:44+00:00
Fix integer overflow warnings in h264.h Fixes: h264.h: In function 'fill_filter_caches': h264.h:1216:73: warning: integer overflow in expression h264.h:1307:81: warning: integer overflow in expression Originally committed as revision 21813 to svn://svn.ffmpeg.org/ffmpeg/trunk
cd12c37729ec4a2433d3835af89e5039611f5950
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cd12c37729ec4a2433d3835af89e5039611f5950
2010-02-13 20:57:13+00:00
Fix heap overflow with -async. Fixes issue1666 Originally committed as revision 21390 to svn://svn.ffmpeg.org/ffmpeg/trunk
7a086a852cca662ceb54d88383d74dd366914dd6
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7a086a852cca662ceb54d88383d74dd366914dd6
2010-01-23 01:25:19+00:00
Move band checksum verifying into preprocessor condition, so compiler won't complain about missing function prototype. Originally committed as revision 21752 to svn://svn.ffmpeg.org/ffmpeg/trunk
f7d649185b62a83ab58514207151f2a8059090fb
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f7d649185b62a83ab58514207151f2a8059090fb
2010-02-11 07:54:40+00:00
Use the correct chroma values for the data[] array used in draw_slice(). The chroma values to use are supposed to be those of the input format, not that of the output format, the latter case was causing crashes and chroma issues. Originally committed as revision 20660 to svn://svn.ffmpeg.org/ffmpeg/trunk
b37aa4de2deb79aeb2b8c52a1696d796cde7ce72
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b37aa4de2deb79aeb2b8c52a1696d796cde7ce72
2009-11-29 18:02:19+00:00
Fix an integer overflow in the AAC encoder. Originally committed as revision 19470 to svn://svn.ffmpeg.org/ffmpeg/trunk
932e6a5a4c78250e3cab4f65215214fb0dbf51f7
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/932e6a5a4c78250e3cab4f65215214fb0dbf51f7
2009-07-20 18:27:17+00:00
Add a got_picture flag to MJpegDecodeContext which indicates if its picture element is valid. Skip the code handling SOS and EOI if not, since it can not work without a valid AVPicture. This fixes a crash with mjpeg/smclockmjpeg.avi.1.0 from issue 1240 where the decoder returned an invalid AVPicture. Originally committed as revision 19342 to svn://svn.ffmpeg.org/ffmpeg/trunk
643fd8a198ddb67225f5edd503f8f151d13635a3
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/643fd8a198ddb67225f5edd503f8f151d13635a3
2009-07-04 18:20:35+00:00
oggenc: Change error log text. An error here does not necessarily mean corrupted data. Originally committed as revision 19248 to svn://svn.ffmpeg.org/ffmpeg/trunk
87b4dd3b96b9616367b07c7f1317fa2d8810ae6f
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/87b4dd3b96b9616367b07c7f1317fa2d8810ae6f
2009-06-21 20:18:29+00:00
free Track and unset priv_data to avoid double free, fix memleak Originally committed as revision 18836 to svn://svn.ffmpeg.org/ffmpeg/trunk
8be080aebb817e45bdfbb9d13a405f900ecc6b99
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8be080aebb817e45bdfbb9d13a405f900ecc6b99
2009-05-15 05:33:05+00:00
Add a ff_h264_free_context function and call it from the H.264 parser. This ensures that the parser will no longer leak memory for all SPS/PPS it encounters. Originally committed as revision 18406 to svn://svn.ffmpeg.org/ffmpeg/trunk
15861962a7a9e64fbe75f5cc0dc7d1c032db8dd5
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/15861962a7a9e64fbe75f5cc0dc7d1c032db8dd5
2009-04-10 07:01:55+00:00
Remove redundant assert(render) in ff_xvmc_init_block(). The immediately following if condition checks render and does an assert if it fails. Originally committed as revision 17304 to svn://svn.ffmpeg.org/ffmpeg/trunk
967d2ae616a1fc6ffc2c00810e09c232dfdb7911
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/967d2ae616a1fc6ffc2c00810e09c232dfdb7911
2009-02-15 01:24:09+00:00
Init state to -1 in h264 parser. Fix: ==22063== Conditional jump or move depends on uninitialised value(s) ==22063== at 0x811A4B7: ff_find_start_code (mpegvideo.c:99) ==22063== by 0x82F5B74: parse_nal_units (h264_parser.c:132) ==22063== by 0x82F5A68: h264_parse (h264_parser.c:261) [...] ==22063== Uninitialised value was created by a stack allocation ==22063== at 0x82F5AF5: parse_nal_units (h264_parser.c:112) Originally committed as revision 18479 to svn://svn.ffmpeg.org/ffmpeg/trunk
8fa0ae060b759d00c8d8f4070b36c16b3dbf0d8a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8fa0ae060b759d00c8d8f4070b36c16b3dbf0d8a
2009-04-13 03:29:19+00:00
Fix an exploit in indeo by checking we are not writing out of the strip array. Fixes issue 655 Originally committed as revision 16802 to svn://svn.ffmpeg.org/ffmpeg/trunk
a44cb89b0f53d55dd1814138ba6526ecaf985f12
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a44cb89b0f53d55dd1814138ba6526ecaf985f12
2009-01-26 09:41:23+00:00
av_free() -> av_freep(), patch by Reimar Doffinger, see discussion in "rmdec.c: double free" thread on mailinglist. Originally committed as revision 16379 to svn://svn.ffmpeg.org/ffmpeg/trunk
7d204e67e8f991bfdfb6a6e91b6855b6c5a782c0
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7d204e67e8f991bfdfb6a6e91b6855b6c5a782c0
2008-12-28 23:25:17+00:00
Fix remotely exploitable arbitrary code execution vulnerability. Found by Tobias Klein / tk // trapkit / de / See: http://www.trapkit.de/advisories/TKADV2009-004.txt Originally committed as revision 16846 to svn://svn.ffmpeg.org/ffmpeg/trunk
0838cfdc8a10185604db5cd9d6bffad71279a0e8
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0838cfdc8a10185604db5cd9d6bffad71279a0e8
2009-01-28 13:37:26+00:00
bump lavf micro version to allow checking for the matroska/ASS bugfix in r15211 Originally committed as revision 15232 to svn://svn.ffmpeg.org/ffmpeg/trunk
74cf4819704968432c0bd1fa0aceff11da79c535
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/74cf4819704968432c0bd1fa0aceff11da79c535
2008-09-07 00:05:30+00:00
Test a var for overflow just after it is set Originally committed as revision 15223 to svn://svn.ffmpeg.org/ffmpeg/trunk
4fdb41a84bc4cbc50600f1ba5ab6af64c69ca092
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4fdb41a84bc4cbc50600f1ba5ab6af64c69ca092
2008-09-06 11:46:29+00:00
Correct pulse amplitude application - a negative or 0 coefficient implies the pulse is subtracted, else it is added. Also avoid a divide by 0. Based on a patch by Alex Converse (alex converse gmail com) Fixes part of issue632 Originally committed as revision 15294 to svn://svn.ffmpeg.org/ffmpeg/trunk
febcbd65fa3d00cfdfbfabd1c2a8fb8e659e1ca1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/febcbd65fa3d00cfdfbfabd1c2a8fb8e659e1ca1
2008-09-11 01:22:34+00:00
Fix a mem leak in vc1_decode_frame(). Patch by Erik Hovland erik hovland org Originally committed as revision 14277 to svn://svn.ffmpeg.org/ffmpeg/trunk
8d8d2b73914a47cf9ce5ca4ff96de6fd067b84a6
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8d8d2b73914a47cf9ce5ca4ff96de6fd067b84a6
2008-07-18 07:15:50+00:00
matroskadec: avoid potential mem leak fix CID120 Originally committed as revision 13635 to svn://svn.ffmpeg.org/ffmpeg/trunk
34ae40971b3299c075878f32479c8059d7acc2bf
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/34ae40971b3299c075878f32479c8059d7acc2bf
2008-06-02 23:27:14+00:00
As *_static are not deallocated anymore except on program termination we do not need to keep track of them anymore. Fixes CID117 RUN2 and various race conditions. Originally committed as revision 13571 to svn://svn.ffmpeg.org/ffmpeg/trunk
b9c8388710a06544812739eedc0a40d3451491dc
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b9c8388710a06544812739eedc0a40d3451491dc
2008-05-30 23:26:09+00:00
no need to sleep to hide crashes Originally committed as revision 13225 to svn://svn.ffmpeg.org/ffmpeg/trunk
38baa83c8ae88a1bae2b23b967ecd5f46981fd0b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/38baa83c8ae88a1bae2b23b967ecd5f46981fd0b
2008-05-21 21:24:32+00:00
Provide non null class name to avoid crash with ffmpeg -h. Originally committed as revision 12300 to svn://svn.ffmpeg.org/ffmpeg/trunk
f15e6b869fc1ff3ffef1b1ac7b394e2155b5fafe
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f15e6b869fc1ff3ffef1b1ac7b394e2155b5fafe
2008-03-03 19:53:27+00:00
fix memory leaks in vp3 decoder Originally committed as revision 12191 to svn://svn.ffmpeg.org/ffmpeg/trunk
6f4e2b5a9564d012c05ba361020768c925dda5e1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6f4e2b5a9564d012c05ba361020768c925dda5e1
2008-02-24 18:56:52+00:00
fix crash on non-AltiVec powered machines: MPV_common_init_altivec doesn't check mm_flags Patch by Alexander Strange %astrange A ithinksw PP com % Originally committed as revision 12137 to svn://svn.ffmpeg.org/ffmpeg/trunk
3518c5a96b0417f6e66bd0c8c64bd2b32d936064
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3518c5a96b0417f6e66bd0c8c64bd2b32d936064
2008-02-18 21:35:31+00:00
Dont crash if resampling is requested but no audio packets are ever processed. Originally committed as revision 11449 to svn://svn.ffmpeg.org/ffmpeg/trunk
8e4270c551533598a8c9861f7c75eae04d0e38ac
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8e4270c551533598a8c9861f7c75eae04d0e38ac
2008-01-07 20:42:45+00:00