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
vorbisdec: remove unneeded buf_size==0 check
e551a6f49a13f2e992c42bc00a8b45ad636e52ad
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e551a6f49a13f2e992c42bc00a8b45ad636e52ad
2011-11-10 10:25:46-05:00
rtsp: Initialize the media_type_mask in the rtp guessing demuxer The media_type_mask is initialized via AVOptions for the rtsp and sdp demuxers, but it isn't available as an option for the rtp guessing demuxer (since it doesn't really make sense there). Therefore, it must be manually initialized instead, since a zero value means no media types at all are accepted. Signed-off-by: Martin Storsjö <[email protected]>
30266038bdfdecd244edbd91f19e19cb159a74ab
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/30266038bdfdecd244edbd91f19e19cb159a74ab
2011-12-02 11:52:47+02:00
g726: wrap the decoder functions with a CONFIG_ADPCM_G726_DECODER check
7abb73d4ba8aeeb18b8adbd0f19b8caa4ec51f39
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7abb73d4ba8aeeb18b8adbd0f19b8caa4ec51f39
2011-11-01 21:23:04-04:00
vsrc_mandelbrot: check bailout only once every 8 iterations, this is around 10% faster. Signed-off-by: Michael Niedermayer <[email protected]>
649d3932db83763a49073a185189d338adbb3b9d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/649d3932db83763a49073a185189d338adbb3b9d
2011-11-19 14:15:56+01:00
alacdec: remove unneeded NULL or zero-size packet checks. This is already done in avcodec_decode_audio3()
30f3e7b524cc31155db7a1b0057f651312f6341e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/30f3e7b524cc31155db7a1b0057f651312f6341e
2011-10-26 11:50:17-04:00
avio: Check for invalid buffer length.
ab2940691ba76e1a9b0ce608db0dfc45021d741e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ab2940691ba76e1a9b0ce608db0dfc45021d741e
2011-10-16 23:56:21-07:00
lavf: use number of output pictures for delay checks. This fixes false positives of has_codec_delay_been_guessed() for streams where not every input picture generates an output picture, such as interlaced H264.
38a4be3fa7a7bb83f0a553577427e916a7bda390
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/38a4be3fa7a7bb83f0a553577427e916a7bda390
2011-10-28 23:42:57-07:00
smacker: check buffer size before reading output size
cf044f8bff0d28dbc34492f18b0d18b3ba8bad9d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cf044f8bff0d28dbc34492f18b0d18b3ba8bad9d
2011-10-11 07:48:16-04:00
mp3on4: ensure that the frame channel count does not exceed the codec channel count. This also allows for checking output data size based on the actual number of channel instead of the maximum number of channels.
53c8443ad2376a50c76e5d7c69435bd01b0abc42
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/53c8443ad2376a50c76e5d7c69435bd01b0abc42
2011-10-21 12:32:35-04:00
error_resilience: fix the check for missing references in ff_er_frame_end() for H264 Signed-off-by: Janne Grunau <[email protected]>
e8ac80fb2c587cc507d9533af8f4313924ee05a1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e8ac80fb2c587cc507d9533af8f4313924ee05a1
2011-10-10 21:37:36+02:00
qdm2: check output buffer size before decoding
7d49f79f1cd47783a963a757a6563b9cac29db62
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7d49f79f1cd47783a963a757a6563b9cac29db62
2011-10-03 21:34:19-04:00
vp6: Reset the internal state when aborting key frames header parsing It prevents leaving the state only half initialized. Signed-off-by: Janne Grunau <[email protected]>
a72cad0a6c05aa74940101e937cb3dc602d7d67b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a72cad0a6c05aa74940101e937cb3dc602d7d67b
2011-10-07 00:37:32+02:00
http: Change the chunksize AVOption into chunked_post The chunksize internal variable has two different uses - for reading, it's the amount of data left of the current chunk (or -1 if the server doesn't send data in chunked mode), where it's only an internal state variable. For writing, it's used to decide whether to enable chunked encoding (by default), by using the value 0, or disable chunked encoding (value -1). This, while consistent, doesn't make much sense to expose as an AVOption. This splits the usage of the internal variable into two variables, chunksize which is used for reading (as before), and chunked_post which is the user-settable option, with the values 0 and 1, where 1 is default. Signed-off-by: Martin Storsjö <[email protected]>
6149485f6c6c2e600987a2759d97c546d4cf5da0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6149485f6c6c2e600987a2759d97c546d4cf5da0
2011-11-10 13:21:26+02:00
avconv: use correct output stream index when checking max_frames
9b921a8272cfcf5168a03042a6d84091cd33ee7b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9b921a8272cfcf5168a03042a6d84091cd33ee7b
2011-09-25 08:28:14+02:00
h264: fix intra 16x16 mode check when using mbaff and constrained_intra_pred. Signed-off-by: Michael Niedermayer <[email protected]>
a4fd95b5d511384ed3ce388d8d20a16b1c4c0530
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a4fd95b5d511384ed3ce388d8d20a16b1c4c0530
2011-10-02 21:20:57+02:00
aacsbr: prevent multiple ff_aac_sbr_ctx_init() Signed-off-by: Michael Niedermayer <[email protected]>
ad51833a1a0a31ea39fa5542c1ec3851feb6630c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ad51833a1a0a31ea39fa5542c1ec3851feb6630c
2011-09-23 22:31:57+02:00
rv34: Check for invalid slices offsets Signed-off-by: Martin Storsjö <[email protected]>
fe476e5a9b5a1e56e53f1fa62374778fa00ec1fd
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fe476e5a9b5a1e56e53f1fa62374778fa00ec1fd
2011-09-22 10:35:06+03:00
h264: ff_h264_decode_extradata: check buffer args The buffer size and pointer were not checked prior to testing the first byte of the buffer. These were sometimes checked before calling, but it is better to add it inside the function as it takes buf and size arguments. Signed-off-by: Alexander Strasser <[email protected]>
715f259bf949b06df1b5ed0307606dc258754c99
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/715f259bf949b06df1b5ed0307606dc258754c99
2011-09-25 17:16:44+02:00
wavpack: Check error codes rather than working around error conditions.
dba2b63a98bdcac7bda1a8a2c48950518c075e17
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/dba2b63a98bdcac7bda1a8a2c48950518c075e17
2011-09-08 11:02:43-07:00
Don't override duration from file header with bitrate duration This is most noticable on matroska files which has duration as part of it's header.
cdced09ef6e40212bc69486c6d314a7f48e5647d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cdced09ef6e40212bc69486c6d314a7f48e5647d
2011-09-14 20:08:43+02:00
configure: disable hardware capabilities ELF section with suncc on Solaris x86 When using suncc to build, the Solaris linker will mark an executable with each instruction set encountered by the Solaris assembler. As our libraries contain their own guards for processor-specific code, instead suppress generation of the HWCAPS ELF section on Solaris x86 only. Signed-off-by: Janne Grunau <[email protected]>
87a74f478f1c9ff21c2c0101a498506ce6b1d631
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/87a74f478f1c9ff21c2c0101a498506ce6b1d631
2011-09-24 14:47:49+02:00
AVOptions: remove AVOption.offset <= 0 checks They will only ever be <=0 if the option is broken, in which case this check is hiding a bug.
4dbcdfa86d1405f7e5c0ec14a4be7d2fb5903d7b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4dbcdfa86d1405f7e5c0ec14a4be7d2fb5903d7b
2011-09-07 11:20:29+02:00
general.texi: remove reference to --enable-memalign-hack, no longer required
978e711b2cacf6d9515f7c5e32e76a4013aec0d2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/978e711b2cacf6d9515f7c5e32e76a4013aec0d2
2011-06-24 11:53:20+02:00
lavf: add a forgotten NULL check in convert_format_parameters().
84bd2b4bf5ca544e29c48634ac8b2899c58b0d9d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/84bd2b4bf5ca544e29c48634ac8b2899c58b0d9d
2011-06-18 17:42:44+02:00
ARM: remove check for PLD instruction PLD is present in ARMv5TE and later, which is checked for separately. Signed-off-by: Mans Rullgard <[email protected]>
a3e1f80e8ba28151ea5d84c15ecf454b8170aa13
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a3e1f80e8ba28151ea5d84c15ecf454b8170aa13
2011-06-29 21:57:03+01:00
lavf: initialize demuxer private options.
9749cdf7754e600ff50dc255519fdb7bb5aad800
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9749cdf7754e600ff50dc255519fdb7bb5aad800
2011-05-26 20:03:26+02:00
avfilter: check malloc return values.
0699dbb8478886826dedb1c33a0b74142a1cd863
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0699dbb8478886826dedb1c33a0b74142a1cd863
2011-05-03 22:35:23-04:00
wav: update size check for ds64 Signed-off-by: Michael Niedermayer <[email protected]>
c9614bb22c98c513c010e1e14b12349a8cc74d8c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c9614bb22c98c513c010e1e14b12349a8cc74d8c
2011-06-03 15:48:08+02:00
ffmpeg: fix negative verbosity. Signed-off-by: Anton Khirnov <[email protected]>
d1991f51f3298e91f9e4cca1f581b486fbd29ec3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d1991f51f3298e91f9e4cca1f581b486fbd29ec3
2011-05-10 07:17:21+02:00
applehttp: Expose the stream bitrate via metadata This helps callers to intelligently switch between bitrate variants. Signed-off-by: Martin Storsjö <[email protected]>
fe8e039460064ad765c37736dadd123478c5ff1f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fe8e039460064ad765c37736dadd123478c5ff1f
2011-04-21 14:13:09+03:00
indeo2: remove unnecessary release_buffer() call This was preventing reget_buffer() to return a buffer with the same data, which was resulting in playback artifacts. Fix trac issue #116.
fd37eac4958a2544599d1b0fce1b153ebd7cd7da
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fd37eac4958a2544599d1b0fce1b153ebd7cd7da
2011-04-27 11:50:45+02:00
Merge remote-tracking branch 'ffmpeg-mt/master' * ffmpeg-mt/master: DUPLICATE mingw32 compilation after 'unbreak avcodec_thread_init' pthread: validate_thread_parameters() ignored slice-threading being intentionally off DUPLICATE Remove unnecessary parameter from ff_thread_init() and fix behavior Signed-off-by: Michael Niedermayer <[email protected]>
d0df2934ca63a1d5c31602e6558f341bd738bd07
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d0df2934ca63a1d5c31602e6558f341bd738bd07
2011-04-08 03:03:03+02:00
img2: return AVERROR(EINVAL) in case of invalid filename pattern In write_packet(), return AVERROR(EINVAL) rather than AVERROR(EIO) if the provided output filename pattern is not valid. Indeed this has to be considered a configuration error rather than an I/O error. Allow a less confusing error report. Signed-off-by: Stefano Sabatini <[email protected]>
9bf81b49cff3945a76ac776f086a1d1adc120e6d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9bf81b49cff3945a76ac776f086a1d1adc120e6d
2011-04-21 12:09:15+02:00
fade: fix draw_slice() check on fade->factor value draw_slice() checks that the fade factor is < 65536 and only calculates the fade if so. But the fade factor is clipped in end_frame() by av_clip_uint16() to 65535, so the fade is calculated for every frame. This patch alters the check so that it compares with < 65535 (UINT16_MAX).
19d82cb14cc5967b8e09b242da1c2aa2d32be028
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/19d82cb14cc5967b8e09b242da1c2aa2d32be028
2011-03-18 23:25:33+01:00
x86: check for AVX support This adds configure and runtime checks for AVX support on x86 CPUs. Signed-off-by: Mans Rullgard <[email protected]> (cherry picked from commit 87f1355f9b4fc11414d0e6a91404203c2745f89f)
cdeba2de821df504ca799c103e48f3e9a92241f9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cdeba2de821df504ca799c103e48f3e9a92241f9
2011-02-20 19:05:47+01:00
Make avfilter_parse_graph() output a more meaningful message when an invalid filterchain is detected. Originally committed as revision 25936 to svn://svn.ffmpeg.org/ffmpeg/trunk
9241cd2095fe8395e02be5556d657d06f65ba91f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9241cd2095fe8395e02be5556d657d06f65ba91f
2010-12-12 13:39:16+00:00
Make truncated mpeg4 GOP header check a bit more specific. Signed-off-by: Michael Niedermayer <[email protected]>
499c2d41d75fdadbf65daa9eaf743f61632f14f8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/499c2d41d75fdadbf65daa9eaf743f61632f14f8
2011-02-14 14:45:46+01:00
Add instructions how to check out a specific svn revision with git Signed-off-by: Janne Grunau <[email protected]>
a1c68a438cfeb7ef1a3556faf9c88985cfd4c04f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a1c68a438cfeb7ef1a3556faf9c88985cfd4c04f
2011-01-17 11:33:43+01:00
In mxf muxer, check the return value of gmtime, fix #2494 Originally committed as revision 26343 to svn://svn.ffmpeg.org/ffmpeg/trunk
6dc7dc08ed66524f174ad2c0a5e32178a1173434
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6dc7dc08ed66524f174ad2c0a5e32178a1173434
2011-01-14 22:36:23+00: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]> (cherry picked from commit f162e988aa0dc8df93079b5ebf452ec281ab8793)
91d51ee4b5ea070df991d3dd46a6cca6a64e6155
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/91d51ee4b5ea070df991d3dd46a6cca6a64e6155
2011-01-23 19:32:09+01:00
Limit number of samples decoded for WavPack mono mode, so decoded samples will fit into output buffer. Originally committed as revision 26269 to svn://svn.ffmpeg.org/ffmpeg/trunk
c392cc0a649dc5d2d4efd9ca11b937222e0d2a12
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c392cc0a649dc5d2d4efd9ca11b937222e0d2a12
2011-01-08 19:23:24+00:00
Convert a for() loop into a while() loop for the downward part of the exponent delta limiting. Originally committed as revision 26035 to svn://svn.ffmpeg.org/ffmpeg/trunk
cdedf7e6254024c643532d45ac7c68e84e50eb01
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cdedf7e6254024c643532d45ac7c68e84e50eb01
2010-12-16 21:09:08+00:00
spdifenc: fix byte order on big-endian systems There is a check for HAVE_BIGENDIAN when outputting the IEC 61937 stream. On big-endian systems the payload data is not byteswapped, causing in effect the outputted payload data to be in a different byte order on big-endian than on little-endian systems. However, the IEC 61937 preamble (and the final odd byte if present) is always outputted in the same byte order. This means that on big-endian systems the headers have a different byte order than the payload, preventing useful use of the output. Fix that by outputting the data in a format suitable for sending to an audio device in S16LE format by default. Output as big-endian (S16BE) is added as an AVOption. This makes the muxer output the same on all archs by default. Signed-off-by: Janne Grunau <[email protected]> (cherry picked from commit 57f2c9aed9fecbb1e6798ec33613141afe74fd31)
af1e8ffdad4ae0a6d73e8d26d5893739e3c7a389
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/af1e8ffdad4ae0a6d73e8d26d5893739e3c7a389
2011-02-14 23:58:19+01:00
Support filters and decoders that dont support negative linesizes. This patch is based on work by stefano. Originally committed as revision 26108 to svn://svn.ffmpeg.org/ffmpeg/trunk
0ccabeeaef77e240f2a44f78271a8914a23e239b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0ccabeeaef77e240f2a44f78271a8914a23e239b
2010-12-27 15:10:21+00:00
ffserver: use a local MAX_STREAMS limit Originally committed as revision 25495 to svn://svn.ffmpeg.org/ffmpeg/trunk
aff8810172f35e1a4e5d1aa180591760add2b6e6
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/aff8810172f35e1a4e5d1aa180591760add2b6e6
2010-10-15 19:09:54+00:00
properly check for FF_API_MAX_STREAMS instead of LIBAVFORMAT_VERSION_MAJOR Originally committed as revision 25382 to svn://svn.ffmpeg.org/ffmpeg/trunk
61138c43e08b7bb039fbcf50f1e71d6e735e04a5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/61138c43e08b7bb039fbcf50f1e71d6e735e04a5
2010-10-06 21:43:46+00:00
In mov demuxer, check that nb_streams is valid before using it in read_dac3 Originally committed as revision 25240 to svn://svn.ffmpeg.org/ffmpeg/trunk
6d19fd5c26cc2971a9925376f52e57c286d2326b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6d19fd5c26cc2971a9925376f52e57c286d2326b
2010-09-28 00:33:21+00:00
Add missing existence checks in opt_default(). Originally committed as revision 25179 to svn://svn.ffmpeg.org/ffmpeg/trunk
d860aaf8cd1ff566f4587643bf3cd7cf713f4c32
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d860aaf8cd1ff566f4587643bf3cd7cf713f4c32
2010-09-24 16:32:08+00:00
ARM: change return type of AV_RN16() to unsigned This prevents gcc inserting useless UXTH instructions, at least in some cases. Originally committed as revision 25212 to svn://svn.ffmpeg.org/ffmpeg/trunk
3288177150eae9a9f11b6a5e4574f0ccd5fe9f57
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3288177150eae9a9f11b6a5e4574f0ccd5fe9f57
2010-09-26 21:01:20+00:00
VP8 H/V inner loopfilter MMX/MMXEXT/SSE2 optimizations. Originally committed as revision 24250 to svn://svn.ffmpeg.org/ffmpeg/trunk
a711eb48295dfa6c8556bbd7aa55e7cc4d0e19d6
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a711eb48295dfa6c8556bbd7aa55e7cc4d0e19d6
2010-07-15 23:02:34+00:00
VP8 MBedge loopfilter MMX/MMX2/SSE2 functions for both luma (width=16) and chroma (width=8). Originally committed as revision 24378 to svn://svn.ffmpeg.org/ffmpeg/trunk
e9e456d850f967cf802a4e66fe59426be51faa37
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e9e456d850f967cf802a4e66fe59426be51faa37
2010-07-20 22:58:56+00:00
Check for fcntl() Originally committed as revision 23902 to svn://svn.ffmpeg.org/ffmpeg/trunk
534a2231f69638c3fdd998853ba4158ed79322a8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/534a2231f69638c3fdd998853ba4158ed79322a8
2010-06-30 10:38:01+00:00
Remove hack in MP3 probe that was meant as a work-around for large ID3v2 tags which no longer works since ID3v2 handling was moved to generic code. In addition, in caused false-positives for all files starting with one or more 0-bytes. Originally committed as revision 25929 to svn://svn.ffmpeg.org/ffmpeg/trunk
b72daad0621f46719723f5b93bf9924b52c76ce5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b72daad0621f46719723f5b93bf9924b52c76ce5
2010-12-11 21:34:50+00:00
Implement chroma (width=8) inner loopfilter MMX/MMX2/SSE2 functions. Originally committed as revision 24339 to svn://svn.ffmpeg.org/ffmpeg/trunk
1878f685c0f69d1bf0acc78c5fc09dae03ac48d5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1878f685c0f69d1bf0acc78c5fc09dae03ac48d5
2010-07-19 21:53:28+00:00
Save a register (or regsize of stackspace for x86-32) for the no-loop mbedge loopfilter functions, by re-using space that holds a variable that we no longer need. Originally committed as revision 24510 to svn://svn.ffmpeg.org/ffmpeg/trunk
2a180c69eacdc6854957aabae3b0e3ee4d4fd774
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2a180c69eacdc6854957aabae3b0e3ee4d4fd774
2010-07-26 14:00:15+00:00
Add missing check to av_get_token(). Originally committed as revision 23594 to svn://svn.ffmpeg.org/ffmpeg/trunk
5ba949fe904e7beed2d601ba3664f8da247be703
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5ba949fe904e7beed2d601ba3664f8da247be703
2010-06-13 09:27:09+00:00
RTSP: Add the auth credentials to the HTTP tunnel URL, too Originally committed as revision 23651 to svn://svn.ffmpeg.org/ffmpeg/trunk
10ed37b5d159e28025dbbfc37e9619b3cf57874d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/10ed37b5d159e28025dbbfc37e9619b3cf57874d
2010-06-19 21:57:45+00:00
Remove unnecessary checks before calling free Feel free to revert if you can specify a concrete case where this actually is necessary. Originally committed as revision 23006 to svn://svn.ffmpeg.org/ffmpeg/trunk
d50fc2d07b7bd5ebbc8f8636c1c3245ab3503bb5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d50fc2d07b7bd5ebbc8f8636c1c3245ab3503bb5
2010-05-01 21:02:23+00:00
Skip cmdutils_common_opts.h fragment in checkheaders Originally committed as revision 22333 to svn://svn.ffmpeg.org/ffmpeg/trunk
9b55e2e7276be0fc7edabafbd26d9c423ff16040
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9b55e2e7276be0fc7edabafbd26d9c423ff16040
2010-03-08 18:43:38+00:00
Check whether COMPILE_ALTIVEC is defined, not if it is set to a 0/1 value. COMPILE_ALTIVEC is never set to 1, it is just #defined. Originally committed as revision 30937 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
81bbd840fe49cb9cc91f236b0e5671b5b822cacd
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/81bbd840fe49cb9cc91f236b0e5671b5b822cacd
2010-03-19 09:57:36+00:00
Fix compile error on mingw where ETIMEDOUT is missing (because it's a WSA error). This patch also changes FF_NETERROR() to be an AVERROR(), i.e. it is always negative, whereas it was previously positive. Originally committed as revision 22887 to svn://svn.ffmpeg.org/ffmpeg/trunk
4aecee7fc34d5eb3dccf2b8ff070cd1029a14d96
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4aecee7fc34d5eb3dccf2b8ff070cd1029a14d96
2010-04-15 18:27:27+00:00
Make wmaprodec.c:decode_init() return AVERROR_INVALIDDATA / AVERROR_PATCHWELCOME in case of invalid / unsupported number of channels specified, rather than return AVERROR_NOTSUPP. Originally committed as revision 22674 to svn://svn.ffmpeg.org/ffmpeg/trunk
c5c20ae4367905f0cf3080d46aa3bed3806134b9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c5c20ae4367905f0cf3080d46aa3bed3806134b9
2010-03-25 21:01:35+00:00
Move CODEC_FLAG_GRAY check to outer loop Originally committed as revision 21805 to svn://svn.ffmpeg.org/ffmpeg/trunk
161e8cf42c1a42b1a60f94f745d1b053cb910959
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/161e8cf42c1a42b1a60f94f745d1b053cb910959
2010-02-13 18:59:25+00:00
Make sure a set r_frame_rate is not overriden by a guess. Also make sure we dont waste time in this case with collecting timestamps. Originally committed as revision 21957 to svn://svn.ffmpeg.org/ffmpeg/trunk
0e5f33f2426dae28725b14468b61cbad052da240
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0e5f33f2426dae28725b14468b61cbad052da240
2010-02-22 10:19:46+00:00
aac: Keep decode_band_types() from eating all padding at the end of a buffer. Due to a shortcoming in the AAC specification, if an all zero buffer is fed to section data decoding it will never terminate. That means without a buffer exhaustion check decode_band_types() will consume all input buffer padding. Worse if a get_bits() implementation that returns zeros when padding is exhausted is used, the function will never terminate. The fixes that by added a buffer exhaustion check in the sectioning decoding loop. Originally committed as revision 22044 to svn://svn.ffmpeg.org/ffmpeg/trunk
c4a90caae249a8bafb7534bac41f7ae89229a672
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c4a90caae249a8bafb7534bac41f7ae89229a672
2010-02-24 23:56:52+00:00
Correcting wrong looking stream_id validity check in avidec. Originally committed as revision 21642 to svn://svn.ffmpeg.org/ffmpeg/trunk
1ac08937991e1d68f8e9d5c54097fbf1eeb8a152
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1ac08937991e1d68f8e9d5c54097fbf1eeb8a152
2010-02-05 11:50:44+00:00
Redesign packet queue full check to be more robust. Originally committed as revision 21555 to svn://svn.ffmpeg.org/ffmpeg/trunk
79ee46836578e78ef9539f0232cd1f589ee2e2dc
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/79ee46836578e78ef9539f0232cd1f589ee2e2dc
2010-01-30 21:27:17+00:00
configure: rename a variable in check_asm Originally committed as revision 21302 to svn://svn.ffmpeg.org/ffmpeg/trunk
3784e82e9cce5d5440602e573f2dbd440388d758
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3784e82e9cce5d5440602e573f2dbd440388d758
2010-01-18 23:12:53+00:00
Move the qp check to skip the loop filter up. Originally committed as revision 21274 to svn://svn.ffmpeg.org/ffmpeg/trunk
44a5e7b64c1e12b373aca3266d086de4e50c94d3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/44a5e7b64c1e12b373aca3266d086de4e50c94d3
2010-01-18 00:20:44+00:00
Remove redundant initialization of the palette, it is part of the context and that one is always 0-initialized already. Originally committed as revision 21398 to svn://svn.ffmpeg.org/ffmpeg/trunk
ab8075a2dac453e4bb720184ad9841d24f7055a4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ab8075a2dac453e4bb720184ad9841d24f7055a4
2010-01-23 15:19:34+00:00
configure: pass extra flags to check_cc from check_ld Originally committed as revision 21264 to svn://svn.ffmpeg.org/ffmpeg/trunk
2a194acd95d7a55fd91193bd1c3874e7b11ce421
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2a194acd95d7a55fd91193bd1c3874e7b11ce421
2010-01-17 19:05:50+00:00
Don't initialize normal horizontal filter if MMX2 filter is used. Originally committed as revision 30313 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2e3e8031ec32b8b819e253151d228ba20394adbe
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2e3e8031ec32b8b819e253151d228ba20394adbe
2010-01-15 19:50:59+00:00
Move +52 from the loop filter to the alpha/beta offsets in the context. This should fix a segfault, also it might be faster on systems where the +52 wasnt free. Originally committed as revision 21406 to svn://svn.ffmpeg.org/ffmpeg/trunk
0c32e19d584ba6ddbc27f0a796260404daaf4b6a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0c32e19d584ba6ddbc27f0a796260404daaf4b6a
2010-01-23 18:05:30+00:00
Simplified deblocking checks. Patch by Dark Shikari Originally committed as revision 20751 to svn://svn.ffmpeg.org/ffmpeg/trunk
bfb5a8cec6261307c5c1e972873e77a830eac9ff
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bfb5a8cec6261307c5c1e972873e77a830eac9ff
2009-12-06 15:38:05+00:00
Faster checks in reverse_dc_prediction. Patch by Dark Shikari Originally committed as revision 20750 to svn://svn.ffmpeg.org/ffmpeg/trunk
50ba3fd7133e0b57216a9a1c2b8a1300fa1f8434
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/50ba3fd7133e0b57216a9a1c2b8a1300fa1f8434
2009-12-06 15:33:48+00:00
Move variable declaration to inside of loop. Originally committed as revision 20053 to svn://svn.ffmpeg.org/ffmpeg/trunk
3b6c5ad2f67cc8eeeec89fb9d497ec79c1f3948a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3b6c5ad2f67cc8eeeec89fb9d497ec79c1f3948a
2009-09-27 06:38:57+00:00
Remove unnecessary calls to avcodec_check_dimensions, the check is already done at a higher level. Originally committed as revision 20229 to svn://svn.ffmpeg.org/ffmpeg/trunk
4a49ab77c6bb2348992e1e70b14f2d1efaf7ddbb
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4a49ab77c6bb2348992e1e70b14f2d1efaf7ddbb
2009-10-13 20:13:28+00:00
Check masterbook index and subclass book index. 14_floor_masterbook_index.patch by chrome Originally committed as revision 19991 to svn://svn.ffmpeg.org/ffmpeg/trunk
993092dcd3fb7ec84fdd1cd3b28a3973740b22bf
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/993092dcd3fb7ec84fdd1cd3b28a3973740b22bf
2009-09-23 12:17:54+00:00
Let pmt override stream info when encoutered later in the ts file. Do not set codec id based on pes start code, this is unreliable. Fix gazeta-20090408-1456-aa.ts Originally committed as revision 20474 to svn://svn.ffmpeg.org/ffmpeg/trunk
b3f9f7a33337e9b64e6044b0010e2722fa0b2f9c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b3f9f7a33337e9b64e6044b0010e2722fa0b2f9c
2009-11-08 03:17:08+00:00
Check thread count as multithreaded decoding is not supported. Fixes issue1292 Originally committed as revision 19801 to svn://svn.ffmpeg.org/ffmpeg/trunk
e43198af4f1d42f847eea533f39717f8b9e5a93b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e43198af4f1d42f847eea533f39717f8b9e5a93b
2009-09-09 21:44:48+00:00
Check num_units_in_tick/time_scale to be valid and within the range we support. based on a patch by chrome Originally committed as revision 19979 to svn://svn.ffmpeg.org/ffmpeg/trunk
7bf3d0c44e06860d2ae26dc7b7764d64beabb727
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7bf3d0c44e06860d2ae26dc7b7764d64beabb727
2009-09-23 09:58:44+00:00
Check buffer size for idcin check, otherwise false positives are too likely for small probe buffer sizes due to 0-padding (see probetest results). Originally committed as revision 19838 to svn://svn.ffmpeg.org/ffmpeg/trunk
8466ab59b21257ff254b4c17ef428458bac645d9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8466ab59b21257ff254b4c17ef428458bac645d9
2009-09-14 15:44:05+00:00
Actually use all the codebooks we are iterating over in the two-loop scalefactor search. Originally committed as revision 19472 to svn://svn.ffmpeg.org/ffmpeg/trunk
0193992252f31dbb50ce55bb9a48623e26654df4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0193992252f31dbb50ce55bb9a48623e26654df4
2009-07-20 20:32:27+00:00
Add extra validation checks to ff_vorbis_len2vlc. They should not be necessary, but it seems like a reasonable precaution. Originally committed as revision 19374 to svn://svn.ffmpeg.org/ffmpeg/trunk
5e039e1b4c0fe25c76faa7ea107db60264edb757
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5e039e1b4c0fe25c76faa7ea107db60264edb757
2009-07-08 19:39:23+00:00
Protect mmx2 filter code buffers so they are not executable and writeable at the same time (only mmap for now). Originally committed as revision 29509 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
072877888521ffd81a56821350cde68939789560
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/072877888521ffd81a56821350cde68939789560
2009-08-13 18:29:54+00:00
Use normal check_func test for math functions Originally committed as revision 19434 to svn://svn.ffmpeg.org/ffmpeg/trunk
ad420e25e221072710242ff50eab1ad0374f2507
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ad420e25e221072710242ff50eab1ad0374f2507
2009-07-15 08:22:06+00:00
Rename invalid option name "gop" to "g" in opt_target(), so that -target *-dvd works correctly. Patch by Lou Logan <$firstname@fakeoutdoorsman com>. Originally committed as revision 19447 to svn://svn.ffmpeg.org/ffmpeg/trunk
64cd8050714bb2c4a3a410e374c17ae645f3b55f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/64cd8050714bb2c4a3a410e374c17ae645f3b55f
2009-07-16 22:32:41+00:00
check that len is not negative Originally committed as revision 18961 to svn://svn.ffmpeg.org/ffmpeg/trunk
a5685be502e510d97c950f1cac8043c7ce1f5ecf
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a5685be502e510d97c950f1cac8043c7ce1f5ecf
2009-05-27 00:46:20+00:00
Make sure buffer end remains constant within the loop otherwise ff_find_start_code could read over the buffer size Originally committed as revision 19142 to svn://svn.ffmpeg.org/ffmpeg/trunk
4db819bc7f47f1fe41caec63ad6122d2c999c95c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4db819bc7f47f1fe41caec63ad6122d2c999c95c
2009-06-10 14:56:50+00:00
mlpdec: Prettify substream parity check. Originally committed as revision 18237 to svn://svn.ffmpeg.org/ffmpeg/trunk
d544dcdf38411c8f4ebd872d69f89f087cf69751
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d544dcdf38411c8f4ebd872d69f89f087cf69751
2009-03-30 03:37:19+00:00
check if feed and stream already exist before registering new one Originally committed as revision 18057 to svn://svn.ffmpeg.org/ffmpeg/trunk
637af098fd7518a9190987ee1aba1b55ecb58e8b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/637af098fd7518a9190987ee1aba1b55ecb58e8b
2009-03-20 00:55:00+00:00
configure: remove redundant alsa/asoundlib.h check Originally committed as revision 17650 to svn://svn.ffmpeg.org/ffmpeg/trunk
92971e91ecab34b296dccffa02ab3cb6ea95d9fa
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/92971e91ecab34b296dccffa02ab3cb6ea95d9fa
2009-02-27 21:15:12+00:00
Make sure spatial_decomposition_count is not too large for picture size. this led to an infinite loop in mirror(). Originally committed as revision 18396 to svn://svn.ffmpeg.org/ffmpeg/trunk
eebbb33abfe82bb3b044ff1f1cb0b263bde9402b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/eebbb33abfe82bb3b044ff1f1cb0b263bde9402b
2009-04-09 20:23:13+00:00
Add key_frame to AVCodecParserContext, used in libavformat. Initialized to -1 in parser.c for backward compatibility. Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17442 to svn://svn.ffmpeg.org/ffmpeg/trunk
6363af44da7471ba8f67ce8204b3b853a7d3cb30
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6363af44da7471ba8f67ce8204b3b853a7d3cb30
2009-02-18 23:46:05+00:00
Check if -lrt is required for nanosleep, as is the case on Solaris. inspired by a patch from Fabian Groffen, grobian gentoo org Originally committed as revision 17537 to svn://svn.ffmpeg.org/ffmpeg/trunk
75ecf1490093f391275f86b277bf3bc7eed84b8a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/75ecf1490093f391275f86b277bf3bc7eed84b8a
2009-02-23 01:56:08+00:00
Check ff_xvmc_field_start() result in all cases. Originally committed as revision 17290 to svn://svn.ffmpeg.org/ffmpeg/trunk
9e494ab77cdf519eb5de8056c00469c78bf8a7e8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9e494ab77cdf519eb5de8056c00469c78bf8a7e8
2009-02-14 22:46:20+00:00
Add necessary #includes to pass 'make checkheaders'. Originally committed as revision 16933 to svn://svn.ffmpeg.org/ffmpeg/trunk
f8a32581fa04ce97bddafc42e8a567efffaa61e2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f8a32581fa04ce97bddafc42e8a567efffaa61e2
2009-02-02 09:22:06+00:00
Move VDPAU check, make future VDPAU patches smaller. Originally committed as revision 16508 to svn://svn.ffmpeg.org/ffmpeg/trunk
7eb6ed78ea191c48279fc208f676807cfd3d732d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7eb6ed78ea191c48279fc208f676807cfd3d732d
2009-01-09 22:22:40+00:00
Add missing headers to allow 'make checkheaders' to pass. Originally committed as revision 16481 to svn://svn.ffmpeg.org/ffmpeg/trunk
0d9efa287a04ab00858ba7bc64c4965a8a2f5e45
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0d9efa287a04ab00858ba7bc64c4965a8a2f5e45
2009-01-07 18:42:24+00:00
Remove unacceptable NULL pointer hack from mc code. Originally committed as revision 16225 to svn://svn.ffmpeg.org/ffmpeg/trunk
17779f39b684cd8e545768155c37e97e604489b8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/17779f39b684cd8e545768155c37e97e604489b8
2008-12-18 23:52:32+00:00