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
ffmpeg: move resample_changed check within the #if !CONFIG_AVFILTER The check and the corresponding message in do_video_out() are unnecessary in the libavfilter path, as a similar check and message are performed within the buffer source.
a851fa7fecc7dbf681b046c8ddcd46bd842c792f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a851fa7fecc7dbf681b046c8ddcd46bd842c792f
2011-05-07 12:03:58+02:00
Drop checkheaders from check, its useless Signed-off-by: Michael Niedermayer <[email protected]>
bc6047223fda5070d007e605c8fd7cf02b8403aa
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bc6047223fda5070d007e605c8fd7cf02b8403aa
2011-04-06 23:21:44+02:00
ape: check that number of seektable entries is equal to number of frames fixes issue2480 Signed-off-by: Anton Khirnov <[email protected]>
29a290439ba28fde00b2a27d5afef863c63abb37
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/29a290439ba28fde00b2a27d5afef863c63abb37
2011-04-01 09:34:44+02:00
VP8: init one less near_mv This one didn't actually need to be initialized.
891b1f15a7e45a2a5f91cb4c27d11259ef8e012f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/891b1f15a7e45a2a5f91cb4c27d11259ef8e012f
2011-02-17 15:25:28-08:00
replace FFMPEG with LIBAV in FFMPEG_CONFIGURATION also update the multiple inclusion guards in config.h|mak
29ba091136a5e04574f7bfc1b17536c923958f6f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/29ba091136a5e04574f7bfc1b17536c923958f6f
2011-03-16 21:54:39+01:00
bswap: use native types for av_bwap16(). This prevents a call to bytestream_get_be16() using a movzwl both before and after the ror instruction, which is obviously inefficient. Arm uses the same trick also. Sintel decoding goes from (avg+SD) 9.856 +/- 0.003 to 9.797 +/- 0.003 sec. Signed-off-by: Ronald S. Bultje <[email protected]>
15919ee48f507a4ca17147e7247f5cb68f752c2c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/15919ee48f507a4ca17147e7247f5cb68f752c2c
2011-04-22 20:05:48-04:00
fade: make draw_slice() chroma check against planes 1 and 2 draw_slice() checks that planes 0 and 1 of AVFilterBufferRef's data are not NULL before manipulating planes 1 and 2. This patch makes the check against planes 1 and 2. More senseful and possibly more robust.
1527e689cfe3d1f0062f7d3935bad6ed027b3bc8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1527e689cfe3d1f0062f7d3935bad6ed027b3bc8
2011-03-18 23:25:33+01:00
Remove redundant checks against MIN_CACHE_BITS With the removal of the libmpeg2 bitstream reader, MIN_CACHE_BITS is always >= 25, so tests against smaller values can be removed. Signed-off-by: Mans Rullgard <[email protected]>
f162e988aa0dc8df93079b5ebf452ec281ab8793
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f162e988aa0dc8df93079b5ebf452ec281ab8793
2011-01-23 16:41:04+00:00
mmvideo: remove some conditional statements by limiting range of half_horiz and half_vert parameters to [0,1] Originally committed as revision 26299 to svn://svn.ffmpeg.org/ffmpeg/trunk
091bc6ca8c643bfece2c70ff2404c7b31574e1f1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/091bc6ca8c643bfece2c70ff2404c7b31574e1f1
2011-01-10 12:16:33+00:00
matroskadec: add generic element length validation. This validate the length of a mkv element directly after reading it. This has the advantage that it is easy to add new limits and makes it less likely to forget to add checks and also avoids issues like bits of the length value above the first 32 being ignored because the parsing functions only takes an int. Previously discussed in the "mkv 0-byte integer parsing" thread. Signed-off-by: Ronald S. Bultje <[email protected]>
95ec3d4cacd084e2448c3a1aba420e7d8f00e19b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/95ec3d4cacd084e2448c3a1aba420e7d8f00e19b
2011-02-06 21:36:53-05:00
add new streams API without MAX_STREAMS limit (disabled until next major bump) Originally committed as revision 25381 to svn://svn.ffmpeg.org/ffmpeg/trunk
38aab35f47c3c7a559c3180568695c6ad21d62ac
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/38aab35f47c3c7a559c3180568695c6ad21d62ac
2010-10-06 20:56:14+00:00
Don't use nested loops to iterate valid sample rates. Eliminates a goto and mirrors the bitrate validation. Originally committed as revision 25980 to svn://svn.ffmpeg.org/ffmpeg/trunk
99ca4f73f0a2085d8b3c7636f4734825894c42dc
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/99ca4f73f0a2085d8b3c7636f4734825894c42dc
2010-12-14 14:52:25+00:00
tiny_psnr: check fread() return values Originally committed as revision 24148 to svn://svn.ffmpeg.org/ffmpeg/trunk
cd3cb048d995c522cfd892d0603e1e0e96bcab6d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cd3cb048d995c522cfd892d0603e1e0e96bcab6d
2010-07-09 23:26:36+00:00
ARM: remove two insns from NEON chroma loop filter Originally committed as revision 24243 to svn://svn.ffmpeg.org/ffmpeg/trunk
8c55333c99ef78b6624062261625f0cfcf360d1c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8c55333c99ef78b6624062261625f0cfcf360d1c
2010-07-15 06:45:11+00:00
Add CRC check to the ALS decoder. Originally committed as revision 23889 to svn://svn.ffmpeg.org/ffmpeg/trunk
cbb39648c1699820f92d36b577caeaac44fa3250
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cbb39648c1699820f92d36b577caeaac44fa3250
2010-06-29 16:56:28+00:00
Check whether IBM or Apple PPC assembler syntax is used This checks which assembler syntax is supported and defines macros for register names accordingly. Originally committed as revision 23952 to svn://svn.ffmpeg.org/ffmpeg/trunk
2f0c136e1f584a0d6c7826376ce4809a39ec81c9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2f0c136e1f584a0d6c7826376ce4809a39ec81c9
2010-07-01 23:21:27+00:00
avienc : Avoid creating invalid AVI files when muxing subtitle streams other than XSUB. Originally committed as revision 23766 to svn://svn.ffmpeg.org/ffmpeg/trunk
d6a93490629007a789d8b7f956caeb978cebb7c4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d6a93490629007a789d8b7f956caeb978cebb7c4
2010-06-25 04:29:02+00:00
Skip the tablegen fragments in checkheaders Originally committed as revision 22336 to svn://svn.ffmpeg.org/ffmpeg/trunk
8eecdc8b789e3fa5b640ddd26e29e9254a1dffe3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8eecdc8b789e3fa5b640ddd26e29e9254a1dffe3
2010-03-08 18:43:47+00:00
Revert "Fix libx264 configure check to use pkg-config if available." There are problems using pkg-config, and a better solution is being worked on. Originally committed as revision 22914 to svn://svn.ffmpeg.org/ffmpeg/trunk
60877ad941f22738dadde20d63f0894af7853484
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/60877ad941f22738dadde20d63f0894af7853484
2010-04-19 19:37:31+00:00
unroll tiny and trivial loop. Same speed but clearer. Originally committed as revision 22051 to svn://svn.ffmpeg.org/ffmpeg/trunk
c2186cbddcc8e13608bc2243785b4dbc02700ac3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c2186cbddcc8e13608bc2243785b4dbc02700ac3
2010-02-25 12:51:32+00:00
Do loop filter per-row rather than per-frame 3% faster on Elephants_Dream_HD-q7-aq7.ogg on my penryn Originally committed as revision 21778 to svn://svn.ffmpeg.org/ffmpeg/trunk
256c0662ef4c7dc9fb03c95d96ba8833a1f54b13
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/256c0662ef4c7dc9fb03c95d96ba8833a1f54b13
2010-02-12 22:01:29+00:00
Use ff_url_join for assembling URLs, instead of snprintf This ensures proper escaping of numerical IPv6 addresses. The RTSP (de)muxer needs its own network initialization, since it isn't a protocol and url_open hasn't been called yet. Originally committed as revision 22226 to svn://svn.ffmpeg.org/ffmpeg/trunk
57b5555c91a9792e3ac99102b3d1a5c44b45fdd9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/57b5555c91a9792e3ac99102b3d1a5c44b45fdd9
2010-03-05 22:35:21+00:00
Check direct_8x8_inference_flag. Originally committed as revision 21668 to svn://svn.ffmpeg.org/ffmpeg/trunk
1c3ce2cd3ef3df47eccb0245017a6d2f3d5308b4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1c3ce2cd3ef3df47eccb0245017a6d2f3d5308b4
2010-02-07 15:12:37+00:00
configure: fix cosmetic typo in check_mathfunc Originally committed as revision 21748 to svn://svn.ffmpeg.org/ffmpeg/trunk
6b73c0aedcbd4645259c45196400180949de238f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6b73c0aedcbd4645259c45196400180949de238f
2010-02-10 22:14:25+00:00
Special check for math.h functions These are often, contrary to standards, implemented only as macros or compiler-builtin functions without an actual symbol definition. Originally committed as revision 21734 to svn://svn.ffmpeg.org/ffmpeg/trunk
645d26520a1a1900a89f2811eb78a5d637ca7877
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/645d26520a1a1900a89f2811eb78a5d637ca7877
2010-02-09 22:55:13+00:00
Remove is_complex from loop_filter() its useless there in its current form. Originally committed as revision 21423 to svn://svn.ffmpeg.org/ffmpeg/trunk
77d40dce93f47c37beeac9b8634a4848560efdf7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/77d40dce93f47c37beeac9b8634a4848560efdf7
2010-01-24 17:02:44+00:00
Cosmetic (restructure RGB ljpeg check to be more readable) Originally committed as revision 20793 to svn://svn.ffmpeg.org/ffmpeg/trunk
a1a63143f182729c40037b4fb8d8f9d84039e7ab
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a1a63143f182729c40037b4fb8d8f9d84039e7ab
2009-12-10 20:05:04+00:00
Huffyuv: Fix a valgrind warning in get_vlc2(). The padding in bitstream_buffer wasn't initialized. Originally committed as revision 20257 to svn://svn.ffmpeg.org/ffmpeg/trunk
6ec8eadda49a6688f275f0f213ef98005c47e126
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6ec8eadda49a6688f275f0f213ef98005c47e126
2009-10-16 22:52:23+00:00
patcheck: check that pix_fmt etc. initializers are const Originally committed as revision 20493 to svn://svn.ffmpeg.org/ffmpeg/trunk
260dfb1a3c5e24f1a95810d03faf8fbdf6eeff8c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/260dfb1a3c5e24f1a95810d03faf8fbdf6eeff8c
2009-11-09 23:12:44+00:00
Deprecate and mark for deletion the function guess_stream_format(), and clone its code to ffserver_guess_format() in ffserver.c. guess_stream_format() is hackish since it relies on some undocumented properties of the name of the muxers (wich is currently only relevant for the ASF muxer), and has no use outside ffserver.c. Originally committed as revision 20987 to svn://svn.ffmpeg.org/ffmpeg/trunk
1642ee4337988523207ee8f30be9281e6919d95a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1642ee4337988523207ee8f30be9281e6919d95a
2009-12-31 14:12:58+00:00
Fix an issue uncovered by commit 20623: The init functions of mpc7 and mpc8 check whether the vlc has been initialized already and return early if this is the case (eg by calling init a second time). But avctx->sample_fmt and channel_layout is set after the vlc initialization, causing it not to be set on the second call of init. Move all manipulations of avctx before the initialization of the vlc, so that it is always set. Originally committed as revision 20668 to svn://svn.ffmpeg.org/ffmpeg/trunk
76c4a644eef92f1a15af11825486f5593bfb0051
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/76c4a644eef92f1a15af11825486f5593bfb0051
2009-11-30 10:25:20+00:00
Rearrange loop structure for approx. 35-50% faster calc_transform_coeffs_cpl() depending on content. Originally committed as revision 20055 to svn://svn.ffmpeg.org/ffmpeg/trunk
8b11b44ea73f8052c8c2b606532037df848b1d76
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8b11b44ea73f8052c8c2b606532037df848b1d76
2009-09-27 07:16:51+00:00
check av_new_stream return value, patch by Kent Mein, mein at cs dot umn dot edu Originally committed as revision 19701 to svn://svn.ffmpeg.org/ffmpeg/trunk
b01c7b756e98eb6767d0947a4a42e43f1b51bcdc
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b01c7b756e98eb6767d0947a4a42e43f1b51bcdc
2009-08-25 19:58:21+00:00
Make sure AVSubtitle is initialized, memset it to 0. Originally committed as revision 19642 to svn://svn.ffmpeg.org/ffmpeg/trunk
df47d24501343228c8a489f4647916447fe74580
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/df47d24501343228c8a489f4647916447fe74580
2009-08-15 00:46:33+00:00
Use CFLAGS in check_cpp Originally committed as revision 19414 to svn://svn.ffmpeg.org/ffmpeg/trunk
9e7f32775c3c6317f2e1ddf92e7a9c55449b3418
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9e7f32775c3c6317f2e1ddf92e7a9c55449b3418
2009-07-12 14:13:32+00:00
Check for HAVE_ISATTY. Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19505 to svn://svn.ffmpeg.org/ffmpeg/trunk
a2f4324bb649472b05a2f054c604fbddcc723ee1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a2f4324bb649472b05a2f054c604fbddcc723ee1
2009-07-24 00:13:59+00:00
Protect config.mak against multiple inclusion Some of the values set here are modified by the main makefiles and should not be reset when config.mak is included again. Originally committed as revision 19417 to svn://svn.ffmpeg.org/ffmpeg/trunk
8c6d2da5be7af7b939c59ee53b22b598af07cb0e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8c6d2da5be7af7b939c59ee53b22b598af07cb0e
2009-07-12 21:13:57+00:00
Add missing header inclusion guard. Originally committed as revision 18647 to svn://svn.ffmpeg.org/ffmpeg/trunk
5499a313228d2345da41f6f6202a6f789706d442
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5499a313228d2345da41f6f6202a6f789706d442
2009-04-21 21:51:01+00:00
Remove 2 ++ from check_pes() that are useless, found by CSA. Originally committed as revision 18577 to svn://svn.ffmpeg.org/ffmpeg/trunk
e8c93839148a168aedc978388f14c3599dd072f8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e8c93839148a168aedc978388f14c3599dd072f8
2009-04-17 18:08:39+00:00
Move VC1 loop filter to DSPContext Originally committed as revision 18520 to svn://svn.ffmpeg.org/ffmpeg/trunk
0e58865d6e86bbb664d92311c0f81c65e0213c35
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0e58865d6e86bbb664d92311c0f81c65e0213c35
2009-04-15 06:20:22+00:00
Make sure that values generated for ff_vorbis_len2vlc in vorbis_parse_setup_hdr_codebooks are in the valid range (<=32). Originally committed as revision 19373 to svn://svn.ffmpeg.org/ffmpeg/trunk
1de4ba71555fcd2cc3d9bcef004c2c70b475a465
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1de4ba71555fcd2cc3d9bcef004c2c70b475a465
2009-07-08 19:31:04+00:00
check if feed max file size is too small Originally committed as revision 18109 to svn://svn.ffmpeg.org/ffmpeg/trunk
64159a588b505d879c57078d223d8e617a36ff04
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/64159a588b505d879c57078d223d8e617a36ff04
2009-03-21 10:32:43+00:00
Fix H.264 bitstream field log2_max_pic_order_cnt_lsb_minus4 if sps.poc_type == 0. Patch by Stephen Warren, swarren nvidia com Originally committed as revision 17854 to svn://svn.ffmpeg.org/ffmpeg/trunk
49caac24132c06e2f14b275da9048588c7da63d0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/49caac24132c06e2f14b275da9048588c7da63d0
2009-03-06 08:03:26+00:00
change macroblock loop in inter frames so that after a slice header the skip count is always parsed first Originally committed as revision 17558 to svn://svn.ffmpeg.org/ffmpeg/trunk
88db5551cf1ced4ea3e5e8bd5b684d2dc74b1ed2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/88db5551cf1ced4ea3e5e8bd5b684d2dc74b1ed2
2009-02-24 15:54:51+00:00
Make pcm_read_seek treat negative time stamps as 0, this avoids incorrectly seeking before data_offset and is more consistent with how the generic index seeking code handles it. Originally committed as revision 17964 to svn://svn.ffmpeg.org/ffmpeg/trunk
bd36f175ab902fb6f1554ca3b4d9181228d628a3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bd36f175ab902fb6f1554ca3b4d9181228d628a3
2009-03-14 20:50:54+00:00
shorten: trivial simplification of signature check Originally committed as revision 16908 to svn://svn.ffmpeg.org/ffmpeg/trunk
a95d00b2877b9264d6958395e8e2937e02722181
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a95d00b2877b9264d6958395e8e2937e02722181
2009-01-31 22:30:49+00:00
Patch check script. Note, before you flame me that its dirty, i did post it to ffmpeg-dev and asked for a review and threatened to commit. Originally committed as revision 17055 to svn://svn.ffmpeg.org/ffmpeg/trunk
6c2dd77eb273645e502f83a8537b091877d3a21d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6c2dd77eb273645e502f83a8537b091877d3a21d
2009-02-08 12:55:17+00:00
better header_size check Originally committed as revision 16830 to svn://svn.ffmpeg.org/ffmpeg/trunk
59afda9f61c8d3b23699e72939858ce25b4ed2a8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/59afda9f61c8d3b23699e72939858ce25b4ed2a8
2009-01-27 21:01:47+00:00
Replace snprintf() with av_strlcpy(). Fixes the following warning on some systems: audioconvert.c:131: warning: format not a string literal and no format arguments Patch by Patrik patrik A yes D nu Originally committed as revision 17110 to svn://svn.ffmpeg.org/ffmpeg/trunk
862c1d2f0573c81ed0929b685c55959906b4300c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/862c1d2f0573c81ed0929b685c55959906b4300c
2009-02-09 23:11:26+00:00
Fix check_func_headers. The reference to the function under test was being optimized out by gcc when the headers lied about the function existing, rendering the test useless in that situation. This new test throws a warning in mingw-w64, but that should not be a problem. Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19440 to svn://svn.ffmpeg.org/ffmpeg/trunk
2b2c2a8179144db8858d91c55c2eb807e7d443ba
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2b2c2a8179144db8858d91c55c2eb807e7d443ba
2009-07-16 16:02:50+00:00
Use '#if defined()' for OS-specific preprocessor checks. Avoids some warnings about undefined preprocessor directives. Originally committed as revision 16869 to svn://svn.ffmpeg.org/ffmpeg/trunk
67a7e4dbcfdc3903cdb2595394fd6c926a28dee3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/67a7e4dbcfdc3903cdb2595394fd6c926a28dee3
2009-01-30 23:50:13+00:00
H.264 loopfilter speed tweaks Originally committed as revision 16240 to svn://svn.ffmpeg.org/ffmpeg/trunk
aac8b76983e340bc744d3542d676f72efa3b474f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/aac8b76983e340bc744d3542d676f72efa3b474f
2008-12-19 14:49:17+00:00
a table for upcoming RV30 loop filtering Originally committed as revision 16235 to svn://svn.ffmpeg.org/ffmpeg/trunk
bbc888d0c50edac459d5af14fdcfa7dbfcc08073
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bbc888d0c50edac459d5af14fdcfa7dbfcc08073
2008-12-19 06:29:35+00:00
Fix svq3 decoding, is_complex was not initialized. Originally committed as revision 16184 to svn://svn.ffmpeg.org/ffmpeg/trunk
54dab661743b7d345552e14d142b326e9bcf2496
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/54dab661743b7d345552e14d142b326e9bcf2496
2008-12-17 03:41:48+00:00
Check that cpb_count is within the allowed range. Originally committed as revision 16010 to svn://svn.ffmpeg.org/ffmpeg/trunk
d23b28c78b56f53f3f0e74edb0f15a3b451207ad
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d23b28c78b56f53f3f0e74edb0f15a3b451207ad
2008-12-05 21:44:18+00:00
Revert adding controversial 'make checkheaders' item to the development policy. Originally committed as revision 15743 to svn://svn.ffmpeg.org/ffmpeg/trunk
a56fbe2ac85a5a7258fa0cd91c608008ba3d15b4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a56fbe2ac85a5a7258fa0cd91c608008ba3d15b4
2008-10-29 22:51:54+00:00
configure: simplify PPC dcbzl check Originally committed as revision 15606 to svn://svn.ffmpeg.org/ffmpeg/trunk
5eb39de901d84c189abf272a56a836527ca75bef
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5eb39de901d84c189abf272a56a836527ca75bef
2008-10-12 21:15:59+00:00
Initialize next/last_picture* as the generic code does not always set them to sane values. Originally committed as revision 15412 to svn://svn.ffmpeg.org/ffmpeg/trunk
07dff5c7a421b346a23c685259eb6e88abacb5d3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/07dff5c7a421b346a23c685259eb6e88abacb5d3
2008-09-25 14:29:35+00:00
vp6dec: ensure we don't try to use a buffer with negative size this should never happen in valid vp6 bitstream fix issue684 Originally committed as revision 15610 to svn://svn.ffmpeg.org/ffmpeg/trunk
40056c32df9fb6db2774dcc0d4f87cbfd759058e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/40056c32df9fb6db2774dcc0d4f87cbfd759058e
2008-10-13 00:10:53+00:00
Simplify: move division by constant off the loop Originally committed as revision 15402 to svn://svn.ffmpeg.org/ffmpeg/trunk
a987a126fd29bb234e82a7ea699d4ca3326c684c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a987a126fd29bb234e82a7ea699d4ca3326c684c
2008-09-24 20:03:58+00:00
merge declaration and init. variable is not used outside the loop. Originally committed as revision 15090 to svn://svn.ffmpeg.org/ffmpeg/trunk
e1747bfa4ed91f3673a77e6d302715ef5ca41959
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e1747bfa4ed91f3673a77e6d302715ef5ca41959
2008-08-31 02:35:58+00:00
Fix an invalid free in the AVI muxer when an unsupported audio track is added. patch by Laurent Aimar, fenrir via.ecp fr Originally committed as revision 15159 to svn://svn.ffmpeg.org/ffmpeg/trunk
d1c2156bc6e3fd723ba8fff02815a3cc2f8769b7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d1c2156bc6e3fd723ba8fff02815a3cc2f8769b7
2008-09-02 22:53:42+00:00
get essence container ul in header and set it per track, check for unsupported codec Originally committed as revision 15071 to svn://svn.ffmpeg.org/ffmpeg/trunk
a2f55f22b342202e6925561b9ee0b7ec76e8bcd0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a2f55f22b342202e6925561b9ee0b7ec76e8bcd0
2008-08-30 23:54:24+00:00
dca: Set data_size outside block loop. Originally committed as revision 15021 to svn://svn.ffmpeg.org/ffmpeg/trunk
a7bc9d1b71efa2918c31fca34c5c1a0f1ac4433f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a7bc9d1b71efa2918c31fca34c5c1a0f1ac4433f
2008-08-29 10:12:44+00:00
Add missing stdint.h header to fix 'make checkheaders'. Originally committed as revision 14816 to svn://svn.ffmpeg.org/ffmpeg/trunk
82ed0b763a10eeb8b75fd1a94867e18a8b072cf4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/82ed0b763a10eeb8b75fd1a94867e18a8b072cf4
2008-08-17 19:15:33+00:00
Declare struct SwsContext before using it, fixes the checkheaders warning: libswscale/swscale_internal.h:58: warning: `struct SwsContext' declared inside parameter list libswscale/swscale_internal.h:58: warning: its scope is only this definition or declaration, which is probably not what you want Originally committed as revision 28353 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
1615fb91a110ef6cf2d8058e43b9cd5ff40cd3da
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1615fb91a110ef6cf2d8058e43b9cd5ff40cd3da
2009-01-25 12:03:28+00:00
Check for sys/select.h and poll.h unconditionally, not just if ffserver is enabled. The headers are used throughout the code. Originally committed as revision 14755 to svn://svn.ffmpeg.org/ffmpeg/trunk
bf6ce82d817eb59f8329a231ab846e57087c3bb0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bf6ce82d817eb59f8329a231ab846e57087c3bb0
2008-08-14 14:03:32+00:00
Fix infinite loop at EOF. Originally committed as revision 14231 to svn://svn.ffmpeg.org/ffmpeg/trunk
54347c2f51a9aae0f45a55069513ffb340014e10
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/54347c2f51a9aae0f45a55069513ffb340014e10
2008-07-14 16:18:29+00:00
dont use C-asm loops and unroll once float_to_int16_3dnow() 30% faster Originally committed as revision 14102 to svn://svn.ffmpeg.org/ffmpeg/trunk
63b737d4f9c118853a4f8d9af641335629bdf3ab
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/63b737d4f9c118853a4f8d9af641335629bdf3ab
2008-07-07 20:46:03+00:00
More correct ref comparison in the loop filter. Originally committed as revision 14322 to svn://svn.ffmpeg.org/ffmpeg/trunk
72caa912f24f31a2a958831382f2485354e38702
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/72caa912f24f31a2a958831382f2485354e38702
2008-07-21 18:06:23+00:00
check for ARM NEON assembler support Originally committed as revision 13667 to svn://svn.ffmpeg.org/ffmpeg/trunk
6b18d2780e3f30fdaab944e8d97f02ba48c7edbf
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6b18d2780e3f30fdaab944e8d97f02ba48c7edbf
2008-06-05 19:51:15+00:00
Add a point to the checklist about checking new demuxers/decoders against damaged input. Originally committed as revision 12669 to svn://svn.ffmpeg.org/ffmpeg/trunk
b885e0dbe63094afe7f9fdc2cafab949a5deae72
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b885e0dbe63094afe7f9fdc2cafab949a5deae72
2008-04-02 18:58:41+00:00
check pkt stream index before returning packet, prevent segfault Originally committed as revision 13224 to svn://svn.ffmpeg.org/ffmpeg/trunk
2ea2340e34e8dbd18903a7fca8cc9cc037fd9487
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2ea2340e34e8dbd18903a7fca8cc9cc037fd9487
2008-05-21 21:04:42+00:00
Fix previously broken x86_64 check, simplifying it in the process. Originally committed as revision 12475 to svn://svn.ffmpeg.org/ffmpeg/trunk
6fce759141bca41a4074d34659e370d874c3124e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6fce759141bca41a4074d34659e370d874c3124e
2008-03-17 09:43:32+00:00
Simplify MANGLE macro preprocessor condition checks. Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
edfd6975cfdff72cf400f76b91a945e563360e76
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/edfd6975cfdff72cf400f76b91a945e563360e76
2008-03-17 09:22:11+00:00
Properly check for AltiVec CFLAGS instead of guessing based on compiler vendor. Originally committed as revision 12448 to svn://svn.ffmpeg.org/ffmpeg/trunk
4477b9f4243d88368917b40873295d3b8f05bbef
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4477b9f4243d88368917b40873295d3b8f05bbef
2008-03-15 15:54:20+00:00
warning is only valid for mov Originally committed as revision 11667 to svn://svn.ffmpeg.org/ffmpeg/trunk
c8134d7104a7170c95a7cd19faacdec756437694
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c8134d7104a7170c95a7cd19faacdec756437694
2008-01-30 13:22:04+00:00
simplify by checking min matching len Originally committed as revision 11560 to svn://svn.ffmpeg.org/ffmpeg/trunk
c9c55a56996836e7783fb27018834f230c553c98
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c9c55a56996836e7783fb27018834f230c553c98
2008-01-19 13:16:00+00:00
Rewrite fill_default_ref_list(), the old code was obfuscated beyond repair with hacks. new code is ~60lines old was ~200 Fixes at least: FRExt/HCHP2_HHI_A.264 one sample also get decoded much better: FRExt/FRExt1_Panasonic.avc (PSNR 11 -> 80) (no i do not know why, the old code was too a big mess to figure out what it did) Originally committed as revision 14398 to svn://svn.ffmpeg.org/ffmpeg/trunk
d4f7d8386693beb987382ece8bb7499955620388
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d4f7d8386693beb987382ece8bb7499955620388
2008-07-25 21:46:15+00:00
fix -lm check Originally committed as revision 10620 to svn://svn.ffmpeg.org/ffmpeg/trunk
fdf885983c878e6976a72311c56a0efefa725d11
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fdf885983c878e6976a72311c56a0efefa725d11
2007-09-29 20:25:06+00:00
Fix used references indexes in the loop filter. Disable filter_mb_fast() as it optimized the incorrect code. Fixes at least: BA3_SVA_C.264 CABA3_SVA_B.264 CABACI3_Sony_B.jsv CAFI1_SVA_C.264 camp_mot_frm0_full.26l CAWP5_TOSHIBA_E.264 CVFI2_SVA_C.264 CVSE3_Sony_H.jsv CVWP2_TOSHIBA_E.264 CVWP5_TOSHIBA_E.264 SL1_SVA_B.264 Originally committed as revision 14315 to svn://svn.ffmpeg.org/ffmpeg/trunk
41f5c62f5cdf17c74d7d3822cfa8db1da734719a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/41f5c62f5cdf17c74d7d3822cfa8db1da734719a
2008-07-20 18:06:41+00:00
support flv with invalid header fixes issue43 Originally committed as revision 10887 to svn://svn.ffmpeg.org/ffmpeg/trunk
c8652b5714d80b35e67491ebe2265146df76eaac
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c8652b5714d80b35e67491ebe2265146df76eaac
2007-10-31 22:10:34+00:00
do not use "strings" in endian check Originally committed as revision 10252 to svn://svn.ffmpeg.org/ffmpeg/trunk
e89d9fd89cd81099c9b6bd99b2209a7d5f966d67
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e89d9fd89cd81099c9b6bd99b2209a7d5f966d67
2007-08-27 14:19:04+00:00
remove useless check Originally committed as revision 9733 to svn://svn.ffmpeg.org/ffmpeg/trunk
109d30e9f1fbe4de416fcdbcc1442aaf43f85d00
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/109d30e9f1fbe4de416fcdbcc1442aaf43f85d00
2007-07-18 11:56:36+00:00
prevent exit missuse Originally committed as revision 8536 to svn://svn.ffmpeg.org/ffmpeg/trunk
c367d06702b3a9cb6b5cf02435f76c5dd5f321e7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c367d06702b3a9cb6b5cf02435f76c5dd5f321e7
2007-03-27 21:47:03+00:00
add some length checks Originally committed as revision 8501 to svn://svn.ffmpeg.org/ffmpeg/trunk
7a28b7714e4503149f773782a19708c773f3d62d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7a28b7714e4503149f773782a19708c773f3d62d
2007-03-24 23:57:42+00:00
There is no guarantee that every stream will have a start_time found (though it is likely), so check that the start_time is defined before calculating a duration. (patch by neilb suse de) Originally committed as revision 10138 to svn://svn.ffmpeg.org/ffmpeg/trunk
bf494092b03f107e35ab6ad70be324f23a193c2b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bf494092b03f107e35ab6ad70be324f23a193c2b
2007-08-18 00:45:44+00:00
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com% unrolls some loops, utilizing all 8 xmm registers. fft-test shows ~10% speed up in (I)FFT and ~8% speed up in (I)MDCT on Dothan Originally committed as revision 9017 to svn://svn.ffmpeg.org/ffmpeg/trunk
25e4f8aaeee05a963146ebf8cd1d01817dba91d6
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/25e4f8aaeee05a963146ebf8cd1d01817dba91d6
2007-05-13 16:32:32+00:00
factorize fill_rectangle() remove more silly ref_count checks use list_count where appropriate Originally committed as revision 8000 to svn://svn.ffmpeg.org/ffmpeg/trunk
8d6947bc7d50732202f5a6c10633169c9d4e08bc
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8d6947bc7d50732202f5a6c10633169c9d4e08bc
2007-02-16 21:50:37+00:00
add a check before find_frame_end call Patch by Limin Wang % lance P lmwang A gmail P com % Original thread: date: 04/09/2007 03:54 PM subject: [Ffmpeg-devel] [PATCH] fix segment fault in h264_parse if buf_size is zero Originally committed as revision 8714 to svn://svn.ffmpeg.org/ffmpeg/trunk
3b77e48f0a4b6d660cd7eb14cd56f93fcb426ae2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3b77e48f0a4b6d660cd7eb14cd56f93fcb426ae2
2007-04-11 14:04:47+00:00
Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux, mbardiaux mediaxim dot be. Originally committed as revision 7794 to svn://svn.ffmpeg.org/ffmpeg/trunk
65d999d6cfc4190f26156a0878d1599d9085c7e9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/65d999d6cfc4190f26156a0878d1599d9085c7e9
2007-02-01 09:45:05+00:00
adding assert to protect delayed_pic Originally committed as revision 7661 to svn://svn.ffmpeg.org/ffmpeg/trunk
9170e34537bd31f0abadee874ed28a855a6a619a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9170e34537bd31f0abadee874ed28a855a6a619a
2007-01-23 12:45:57+00:00
Simplify GPl check. patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7793 to svn://svn.ffmpeg.org/ffmpeg/trunk
541184974ca11be6a7bb6fc4ff4ed804de62b524
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/541184974ca11be6a7bb6fc4ff4ed804de62b524
2007-02-01 00:52:39+00:00
handle limit>32 for set_ur_golomb_jpegls() Originally committed as revision 6754 to svn://svn.ffmpeg.org/ffmpeg/trunk
76aca7a8bfa4d050e1e88245bbbb324665d43691
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/76aca7a8bfa4d050e1e88245bbbb324665d43691
2006-10-22 04:52:15+00:00
Fix compilation with PIC enabled, BRANCHLESS_GET_CABAC is defined under !PIC but gets used without a check for !PIC. Originally committed as revision 6834 to svn://svn.ffmpeg.org/ffmpeg/trunk
d5cd50ed73dc70707c24a9ae06bb8b77c68f5e67
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d5cd50ed73dc70707c24a9ae06bb8b77c68f5e67
2006-10-29 13:14:37+00:00
Move block size check to decoder Originally committed as revision 6688 to svn://svn.ffmpeg.org/ffmpeg/trunk
4ec0beaa593860796feead14132506226a1edf0e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4ec0beaa593860796feead14132506226a1edf0e
2006-10-14 05:01:05+00:00
Another hack to allow the Cinepak decoder to detect both types of deviant Cinepak data. Tested against both known FILM files, several CPK files, and normal CVID-encoded files. Originally committed as revision 7215 to svn://svn.ffmpeg.org/ffmpeg/trunk
10f865c9b753c296055c3d86060bd98411fb4f68
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/10f865c9b753c296055c3d86060bd98411fb4f68
2006-12-02 22:27:18+00:00
fix constraint violation: libavformat is not allowed to modify state of caller, including rng state Originally committed as revision 5249 to svn://svn.ffmpeg.org/ffmpeg/trunk
f880199375ee661c22128febd531a7faa122ff0f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f880199375ee661c22128febd531a7faa122ff0f
2006-03-30 16:44:32+00:00
fix probing of 02-Penguin.flac = a single startcode should not override extension based detection Originally committed as revision 6025 to svn://svn.ffmpeg.org/ffmpeg/trunk
a1c69e0b5097be8fa76c3882f535c6600b0e56b6
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a1c69e0b5097be8fa76c3882f535c6600b0e56b6
2006-08-19 08:39:00+00:00
don't arbitrarily limit delta_qp Originally committed as revision 5026 to svn://svn.ffmpeg.org/ffmpeg/trunk
db8a64cba0ae8ae9d0d7c0b8a7801996ed2c958e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/db8a64cba0ae8ae9d0d7c0b8a7801996ed2c958e
2006-02-16 01:16:12+00:00