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
⌀ |
---|---|---|---|---|---|---|---|
avformat/movenc: Check return code of ff_iso8601_to_unix_time()
Signed-off-by: Michael Niedermayer <[email protected]>
| f98c3ec5c68d14d7c93c2f9775be4583f7905554 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f98c3ec5c68d14d7c93c2f9775be4583f7905554 | 2015-06-21 04:18:08+02:00 |
avcodec/nvenc: Add support for H.264 High 444 Predictive encoding
Newer versions of the nvenc hardware support The High 444 Predictive profile
of H.264, and can also do lossless encoding under this profile if desired.
This change introduces support for the profile, and exposes the appropriate
presets for requesting lossless encoding.
I tested lossless by generating a baseline sample with testsrc converted
to raw yuv444p, then encoded the sample with nvenc, then did a framemd5
comparision of both the raw video and the nvenc encode. The framemd5
reports were identical.
Signed-off-by: Philip Langdale <[email protected]>
Signed-off-by: Timo Rothenpieler <[email protected]>
| 671bdd4b0977c6cc77bdc55883ac841a7c4af802 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/671bdd4b0977c6cc77bdc55883ac841a7c4af802 | 2015-07-05 13:51:56+02:00 |
aacenc_tns: rework the way coefficients are calculated
This commit abandons the way the specifications state to
quantize the coefficients, makes use of the new LPC float
functions and is much better.
The original way of converting non-normalized float samples
to int32_t which out LPC system expects was wrong and it was
wrong to assume the coefficients that are generated are also
valid. It was essentially a full garbage-in, garbage-out
system and it definitely shows when looking at spectrals
and listening. The high frequencies were very overattenuated.
The new LPC function performs the analysis directly.
The specifications state to quantize the coefficients into
four bit index values using an asin() function which of course
had to have ugly ternary operators because the function turns
negative if the coefficients are negative which when encoding
causes invalid bitstream to get generated.
This deviates from this by using the direct TNS tables, which
are fairly small since you only have 4 bits at most for index
values. The LPC values are directly quantized against the tables
and are then used to perform filtering after the requantization,
which simply fetches the array values.
The end result is that TNS works much better now and doesn't
attenuate anything but the actual signal, e.g. TNS removes
quantization errors and does it's job correctly now.
It might be enabled by default soon since it doesn't hurt and
helps reduce nastyness at low bitrates.
Signed-off-by: Rostislav Pehlivanov <[email protected]>
| f20b67173ca6a05b8c3dee02dad3b7243b96292b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f20b67173ca6a05b8c3dee02dad3b7243b96292b | 2015-08-29 06:47:31+01:00 |
matroskadec: check audio sample rate
And default to 8000 if it is invalid.
An invalid sample rate can trigger av_assert2 in av_rescale_rnd.
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: Andreas Cadhalpun <[email protected]>
| 5b76c82fd7a5f4f36bb901b8c43d7f7319599599 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5b76c82fd7a5f4f36bb901b8c43d7f7319599599 | 2015-06-16 21:45:45+02:00 |
avfilter/geq: assert on pixel format descriptor
inlink->format is supposed to be set to a valid format controlled by query_formats().
| a056636c8131d2e6ca6a8f3b196287af682b16a4 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a056636c8131d2e6ca6a8f3b196287af682b16a4 | 2015-06-13 20:51:43+02:00 |
audiointerleave: Always initialize new_pkt
CC: [email protected]
Bug-Id: CID 609333
| f7e932473314e6ca4c851d49cbde8570b6e66383 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f7e932473314e6ca4c851d49cbde8570b6e66383 | 2015-06-08 13:03:10+01:00 |
ratecontrol: Check memory allocation
| 42df71d9bbb1a5b4bce0bb34417692565c72d390 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/42df71d9bbb1a5b4bce0bb34417692565c72d390 | 2015-05-31 15:03:31+02:00 |
aaccoder: add a new perceptual noise substitution implementation
This commit finalizes the PNS implementation previously added to the encoder
by moving it to a seperate function search_for_pns() and thus making it
coder-generic. This new implementation makes use of the spread field of
the psy bands and the lambda quality feedback paremeter. The spread of the
spectrum in a band prevents PNS from being used excessively and thus preserve
more phase information in high frequencies. The lambda parameter allows
the number of PNS-marked bands to vary based on the lambda parameter and the
amount of bits available, making better choices on which bands are to be marked
as noise. Comparisons with the previous PNS implementation can be found
here: https://trac.ffmpeg.org/attachment/wiki/Encode/AAC/
This is V2 of the patch, the changes from the previous version being that this
version uses the new band->spread metric from aacpsy and normalizes the
energy using the group size. These changes were suggested by Claudio Freire
on the mailing list. Another change is the use of lambda to alter the
frequency threshold. This change makes the actual threshold frequencies
vary between +-2Khz of what's specified, depending on frame encoding performance.
Reviewed-by: Claudio Freire <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 38fd4c2e664a38e17663d2d469c5e0f1ecec3269 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/38fd4c2e664a38e17663d2d469c5e0f1ecec3269 | 2015-07-05 16:39:06+02:00 |
avcodec/proresenc_anatoliy: Check av_frame_alloc() return code
Signed-off-by: Michael Niedermayer <[email protected]>
| b70582e92f034eb17d157fb2ca102a61b0fa66ee | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b70582e92f034eb17d157fb2ca102a61b0fa66ee | 2015-06-02 15:18:23+02:00 |
x264: Check memory allocation
| 9fb483fede7207c1f3965e5ae1ac0ee82e4d7a4e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9fb483fede7207c1f3965e5ae1ac0ee82e4d7a4e | 2015-05-31 15:03:31+02:00 |
rtmpdh: Make sure ret is initialized in the nettle version of bn_hex2bn
Signed-off-by: Martin Storsjö <[email protected]>
| 78efc69e7c990226f4b913721ef1b308ca5bfa04 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/78efc69e7c990226f4b913721ef1b308ca5bfa04 | 2015-05-29 09:42:24+03:00 |
rtmpdh: Remove an unnecessary check in the gcrypt/nettle dh_compute_key
Signed-off-by: Martin Storsjö <[email protected]>
| 8016a1bd3b60e917e1b12748dd80c06c3462c286 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8016a1bd3b60e917e1b12748dd80c06c3462c286 | 2015-05-29 09:42:38+03:00 |
avcodec/hevc_ps: Move log2_ctb_size checks up to prevent undefined shift operations
Fixes CID1292293
Signed-off-by: Michael Niedermayer <[email protected]>
| 04da0d258601e741bbc82f3f0f0e955dda57f107 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/04da0d258601e741bbc82f3f0f0e955dda57f107 | 2015-05-13 14:38:11+02:00 |
avcodec/hevc_ps: Check vps_num_hrd_parameters
Fix CID1239052 part2
Signed-off-by: Michael Niedermayer <[email protected]>
| b195aa5d529040f43ab3acf0079cecbeb111bd57 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b195aa5d529040f43ab3acf0079cecbeb111bd57 | 2015-05-13 14:26:17+02:00 |
avcodec/vqavideo: Check chunk size
Fixes CID1239154
Signed-off-by: Michael Niedermayer <[email protected]>
| 8a62b80ce6c8e87e7937f9a5d68f83882c1c8da2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8a62b80ce6c8e87e7937f9a5d68f83882c1c8da2 | 2015-05-13 00:41:38+02:00 |
avcodec/diracdec: Move buf[] read after size check
Signed-off-by: Michael Niedermayer <[email protected]>
| 5a455dd011151fd7e3f8aced745b206ca1413d29 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5a455dd011151fd7e3f8aced745b206ca1413d29 | 2015-05-05 22:01:58+02:00 |
ffmdec: Check return value of ffm_append_recommended_configuration
Reviewed-by: Lukasz Marek <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 8d15de7eb265fdd81211190d5ef3f9d1665770bf | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8d15de7eb265fdd81211190d5ef3f9d1665770bf | 2015-04-10 14:44:53+02:00 |
msrledec: use signed pixel_ptr in msrle_decode_pal4
This fixes segmentation faults, when pic->linesize[0] is negative.
In that case 'line * pic->linesize[0] + pixel_ptr' is treated as
unsigned and wraps around.
This reverts commit 7d78a964.
The problem was introduced in commit f7e1367f, which should obsolete
that commit.
Signed-off-by: Andreas Cadhalpun <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| ae6fd7300b4e9f81d3b5ba201096ffe7cccf26fb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ae6fd7300b4e9f81d3b5ba201096ffe7cccf26fb | 2015-04-16 15:52:22+02:00 |
alsdec: check sample pointer range in revert_channel_correlation
Also change the type of begin, end and smp to ptrdiff_t to make the
comparison well-defined.
CC: [email protected]
Signed-off-by: Andreas Cadhalpun <[email protected]>
Signed-off-by: Anton Khirnov <[email protected]>
| 94bb1ce882a12b6d7a1fa32715a68121b39ee838 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/94bb1ce882a12b6d7a1fa32715a68121b39ee838 | 2015-05-05 16:06:58+02:00 |
lavf/gif: Add an option max_gif_delay to limit the frame duration.
Allows playback for the sample from ticket #4369 in less than 18 hours.
| 7de0fefeb5b391173fabf65e6e96bb7729b58ceb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7de0fefeb5b391173fabf65e6e96bb7729b58ceb | 2015-03-29 12:31:00+02:00 |
libavformat/mxfenc.c: Add 'Presentation Y offset' metadata
Previously unset, and some software mishandles files if it is absent
Signed-off-by: Tim Nicholson <[email protected]>
Reviewed-by: [email protected]
Signed-off-by: Michael Niedermayer <[email protected]>
| ac9919b9662f28816cf79c1d5c36719160009588 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ac9919b9662f28816cf79c1d5c36719160009588 | 2015-03-30 15:03:41+02:00 |
avisynth: ifdef to avoid implicit function declaration errors
The demuxer doesn't use these functions, so it shouldn't affect
anything. Investigate whether this can be fixed by how headers
are checked in configure.
Signed-off-by: Michael Niedermayer <[email protected]>
| 3a6df0b4bb588288fbf0f60081b20022a838ea79 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3a6df0b4bb588288fbf0f60081b20022a838ea79 | 2015-03-25 16:19:14+01:00 |
lavf: Do not list mov-only codecs in riff tags
Instead check for all mov code-points when demuxing avi
and print a warning if a video codec is found like this.
Signed-off-by: Vittorio Giovara <[email protected]>
| 4326bc364b58e97fc3d89417054a6b7610179a00 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/4326bc364b58e97fc3d89417054a6b7610179a00 | 2015-03-17 13:34:22+00:00 |
swscale: Check memory allocations
CC: [email protected]
Bug-Id: CID 1267888 / CID 1267890
Signed-off-by: Vittorio Giovara <[email protected]>
| e51f22122d23589e93ac4f0b3e570bb925755915 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e51f22122d23589e93ac4f0b3e570bb925755915 | 2015-02-17 12:16:43-05:00 |
nutdec: Check memory allocations
Signed-off-by: Vittorio Giovara <[email protected]>
| 3035d21b5a77df0e9531df397fc06d59488996c7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3035d21b5a77df0e9531df397fc06d59488996c7 | 2015-02-17 12:16:43-05:00 |
af_volume: support using replaygain frame side data
| 06c3cd3c0186803619bc6aad2d8f06c3e9015d15 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/06c3cd3c0186803619bc6aad2d8f06c3e9015d15 | 2014-03-24 06:07:51+01:00 |
swresample/swresample-test: Add () to protect uint_rand() argument
Signed-off-by: Michael Niedermayer <[email protected]>
| 37013fd018ae02679f177f42245f3e0e3c12d587 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/37013fd018ae02679f177f42245f3e0e3c12d587 | 2015-02-16 23:09:09+01:00 |
hqdn3d: check memory allocations and propagate errors
| 22b985d59c007c4422aefe3ef3fca0aa0daafa9f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/22b985d59c007c4422aefe3ef3fca0aa0daafa9f | 2015-01-29 17:33:38+00:00 |
ffmpeg: Print negative times like "-00:05:01.22" instead of "00:-5:-1.-22"
Signed-off-by: Michael Niedermayer <[email protected]>
| 23849339855875b737aee94813b31ddde2e40f9a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/23849339855875b737aee94813b31ddde2e40f9a | 2015-02-11 11:22:27+01:00 |
avfilter/x86/vf_fspp: Fix loop condition for column_fidct()
Signed-off-by: Michael Niedermayer <[email protected]>
| a6f9a5d0f63500564d857df12269a1c6e43bd563 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a6f9a5d0f63500564d857df12269a1c6e43bd563 | 2015-01-28 17:23:27+01:00 |
matroskadec: check return values
CC: [email protected]
Bug-Id: CID 733712
| e0caa1eb4e518111a81801db0d2ccdd2733ba94b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e0caa1eb4e518111a81801db0d2ccdd2733ba94b | 2014-10-24 23:48:51+01:00 |
avcodec/svq3: Check av_mallocs return value
Signed-off-by: Michael Niedermayer <[email protected]>
| 2493558a06402b1bc1a17f139e517bcd39382ba1 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/2493558a06402b1bc1a17f139e517bcd39382ba1 | 2015-01-14 13:23:20+01:00 |
avformat/mpegtsenc: Do not create invalid files from annex b streams without SPS/PPS
use global headers to create SPS/PPS when they are available
Fixes Ticket4248
Signed-off-by: Michael Niedermayer <[email protected]>
| 33650e0e42d6e8e0daf5e403e317a2ce0bf36acb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/33650e0e42d6e8e0daf5e403e317a2ce0bf36acb | 2015-02-12 23:13:15+01:00 |
imgconvert: check memory allocations and propagate errors
| 210461c0a83a5625560fa1d92229200dc7fb869b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/210461c0a83a5625560fa1d92229200dc7fb869b | 2014-12-18 23:27:14+01:00 |
elbg: check memory allocations and propagate errors
| ae2d41ec875965ce4ab9fdd88a5e8ba57cada67a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ae2d41ec875965ce4ab9fdd88a5e8ba57cada67a | 2014-12-18 23:22:59+01:00 |
libavformat: Only use MoveFileExA when targeting the desktop API subset
The MoveFileExA is available in the headers regardless which API
subset is targeted, but it is missing in the Windows Phone link
libraries. When targeting Windows Store apps, the function is
available both in the headers and in the link libraries, and thus
there is no indication for the build system that this function
should be avoided - such an indication is only given by the
Windows App Certification Kit, which forbids using the MoveFileExA
function.
Therefore check the WINAPI_FAMILY defines instead, to figure out
which API subset is targeted.
Signed-off-by: Martin Storsjö <[email protected]>
| 8ebf02f8f530240edf7e45f35f7647ef9dd44a58 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8ebf02f8f530240edf7e45f35f7647ef9dd44a58 | 2014-12-19 23:24:47+02:00 |
configure: do not allow nvenc to be build on cygwin to avoid _WIN32 definition hack
Suggested-by: James Almer <[email protected]>
Reviewed-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| dbdc6e554e48673d43799321911700cb091c9e8e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/dbdc6e554e48673d43799321911700cb091c9e8e | 2014-12-11 04:48:22+01:00 |
avcodec/imc: only check remaining bits in case bits will be read
Signed-off-by: Michael Niedermayer <[email protected]>
| cbf09545f250a4bd12c50c3a96fe481098ab2d49 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/cbf09545f250a4bd12c50c3a96fe481098ab2d49 | 2014-12-04 18:24:50+01:00 |
configure: update libvpx_vp9_encoder check
Required to add support for the aq_mode setting.
Any libvpx snapshot prior to 1.3.0 is not recommended for vp9 encoding for that matter.
Reviewed-by: James Zern <[email protected]>
Signed-off-by: James Almer <[email protected]>
| c2c56d54ee900867690e71e5154593c907229061 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/c2c56d54ee900867690e71e5154593c907229061 | 2014-08-26 00:53:50-03:00 |
avformat/xmv: Check return code of ff_alloc_extradata()
Signed-off-by: Michael Niedermayer <[email protected]>
| ae658efef86b932484a88c52dc9b803bb5d99e3d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ae658efef86b932484a88c52dc9b803bb5d99e3d | 2014-12-15 16:01:05+01:00 |
lpc: always initialize ref and err
CC: [email protected]
Bug-Id: CID 29585 / CID 700759
| 60e0ee7ca25bd3bea54043b0607efe4cd51acaf3 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/60e0ee7ca25bd3bea54043b0607efe4cd51acaf3 | 2014-11-14 20:25:52+01:00 |
avcodec/dvdsubdec: Check all fseek()s return codes
Fixes CID1254660
Signed-off-by: Michael Niedermayer <[email protected]>
| 1de786777e0fb18ec1e44cea058c77e83980b6c4 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1de786777e0fb18ec1e44cea058c77e83980b6c4 | 2014-11-16 17:50:18+01:00 |
hevc: remove superfluous assignments and checks
| 8b573ddda75980f724f779ff75aacc2ff81d9e0e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8b573ddda75980f724f779ff75aacc2ff81d9e0e | 2014-11-17 09:26:45+01:00 |
ffserver_config: improve AVOption handing
AVOption are checked right after found in config file.
It allows to report exact line in config file.
Options provided more than once are threated as errors.
It also fixes flag options handing.
Flags may occur more than once in config file.
Signed-off-by: Lukasz Marek <[email protected]>
| 9c097f1cfc1825882353dc73e24a0d707d2495f2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9c097f1cfc1825882353dc73e24a0d707d2495f2 | 2014-11-03 00:32:25+01:00 |
avformat/mpegts: add scan_all_pmts option
This allows selecting if the demuxer should consider all streams to be
found after the first PMT and add further streams during decoding or if it rather
should scan all that are within the analyze-duration and other limits
Fixes Ticket3762
Signed-off-by: Michael Niedermayer <[email protected]>
| 29b1af40f3a09fafd36bcefb4483353e1b5d82bd | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/29b1af40f3a09fafd36bcefb4483353e1b5d82bd | 2014-11-08 21:35:20+01:00 |
x86/hpeldsp: fix loop in {avg,avg_no_rnd}_pixels16_x2_mmx
Handle it inside the __asm__() block.
Fixes fate-vc1_ilaced_twomv when using the gcc-usan toolchain.
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: James Almer <[email protected]>
| 7292b0477ac8a864af9bf97b63362c40062ab805 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7292b0477ac8a864af9bf97b63362c40062ab805 | 2014-10-23 13:11:05-03:00 |
af_resample: check av_opt_set_dict return value
CC: [email protected]
Bug-Id: CID 1087076
| 0d989dbfc4bc5bc1d563e967449116a7a9865258 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0d989dbfc4bc5bc1d563e967449116a7a9865258 | 2014-10-18 16:15:10+01:00 |
avcodec: make sure color_range is properly initialized
| 147f2e91eece6b9021ff5b7f8a3b5ce053566659 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/147f2e91eece6b9021ff5b7f8a3b5ce053566659 | 2014-10-08 18:17:49+01:00 |
avformat/matroskadec: Fix cluster parsing loop which gathers seek information
Fixes Ticket2263
Fixes Ticket3934
Reviewed-by: Rodger Combs <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| a39201818feab04c029f5b17bad2e7f40c1f2eab | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a39201818feab04c029f5b17bad2e7f40c1f2eab | 2014-10-22 13:40:28+02:00 |
avcodec/vdpau: do not dereference hwctx before checking it for NULL
Signed-off-by: Michael Niedermayer <[email protected]>
| 67ddf21611b904de1ee3eb0206cd2744a135704a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/67ddf21611b904de1ee3eb0206cd2744a135704a | 2014-10-06 17:39:28+02:00 |
x11grab: Check XFixesGetCursorImage return value
It could return NULL if the cursor is outside the screen, the connection
timed out or the system is out of memory.
CC: [email protected]
| 5b9c817dc7577b6d44acc94d73b9c77c52cda489 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5b9c817dc7577b6d44acc94d73b9c77c52cda489 | 2014-10-04 23:46:46+02:00 |
avformat/flvenc: fix codec_id_text check
Signed-off-by: Michael Niedermayer <[email protected]>
| 8cde94ec0db0d033a265745444803ea8729de99c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8cde94ec0db0d033a265745444803ea8729de99c | 2014-10-02 03:58:54+02:00 |
x86/hevc: get rid off packusdw for ssse3 compatibility
cherry picked from commit df8ebe304df453f26c28ff8f11d607f49b90a4c2
Fixes out of array access
Fixes: asan_stack-oob_1046454_9_asan_stack-oob_15a9e7c_170_WP_MAIN10_B_Toshiba_3.bit
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 4ba6371a83c914c978aa22b804f00fb876397d98 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/4ba6371a83c914c978aa22b804f00fb876397d98 | 2014-10-04 21:14:15+02:00 |
avcodec/utils: Add case for jv to avcodec_align_dimensions2()
Fixes out of array accesses
Fixes: asan_heap-oob_12304aa_8_asan_heap-oob_4da4f3_300_intro.jv
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 105654e376a736d243aef4a1d121abebce912e6b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/105654e376a736d243aef4a1d121abebce912e6b | 2014-10-03 04:48:29+02:00 |
Treat all '*.pnm' files as non-text file
This convinces the pre-receive hook to not consider all *.pnm files as
text files to reduce the patch sizes and avoids triggering whitespace
checks,
Contains a correction by Janne Grunau <[email protected]>
| 0f257e29c5520b215e573e7e3abde8e5a4743309 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0f257e29c5520b215e573e7e3abde8e5a4743309 | 2014-11-28 17:52:43-05:00 |
avformat/rtpproto: fix strict aliasing violations with sockaddr
Signed-off-by: Michael Niedermayer <[email protected]>
| e587a428d75d58e2e5a592efd7bff44e1d9294ee | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e587a428d75d58e2e5a592efd7bff44e1d9294ee | 2014-09-15 13:31:00+02:00 |
avformat/network: add union for avoiding strict aliassing violations with sockaddr*
Signed-off-by: Michael Niedermayer <[email protected]>
| 8c1dc1f6ed119c2bffc937efc5f591cfaf0d35b3 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8c1dc1f6ed119c2bffc937efc5f591cfaf0d35b3 | 2014-09-15 13:31:00+02:00 |
avformat: fix probe mime version checks
Signed-off-by: Michael Niedermayer <[email protected]>
| 9694695a21d08ae470b2db6278f92c5c31d07b41 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9694695a21d08ae470b2db6278f92c5c31d07b41 | 2014-07-29 21:02:48+02:00 |
avcodec/hevc: check nb_cpb
Signed-off-by: Michael Niedermayer <[email protected]>
| ba80b8d29b2adc7fd74324c9bd50cd0be7ab2c21 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ba80b8d29b2adc7fd74324c9bd50cd0be7ab2c21 | 2014-07-19 16:51:05+02:00 |
hevc_filter: avoid excessive calls to ff_hevc_get_ref_list()
1) each of the loops run within a single CTB, so the relevant reference
list is constant
2) when that CTB is, or lies on the same slice as, the current one, we
can use a simple access instead of a relatively expensive call to
ff_hevc_get_ref_list()
| 7acdd3a1275bcd9cad48f9632169f6bbaeb39d84 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7acdd3a1275bcd9cad48f9632169f6bbaeb39d84 | 2014-08-09 16:15:51+00:00 |
Write valid free atom when -moov_size is specified.
Fixes ticket #3769.
| 0e70266bbfade1457189cc402cab2cdd7ec94c7b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0e70266bbfade1457189cc402cab2cdd7ec94c7b | 2014-07-18 23:11:11+02:00 |
avcodec/raw: add avpriv_get_raw_pix_fmt_tags()
Used to expose ff_raw_pix_fmt_tags[] to other libav* libraries
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 0ab00a75e41f4399126777e49385c809d8fcc311 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0ab00a75e41f4399126777e49385c809d8fcc311 | 2014-08-07 12:52:38+02:00 |
lavc/g729postfilter: fix make checkheaders.
| 7b78cb3a7049dab91e415e060debdee8151046fa | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7b78cb3a7049dab91e415e060debdee8151046fa | 2012-05-18 23:34:11+02:00 |
lavf/swf: fix make checkheaders.
| 1308fa42ada50e6deb473b61ec731f0d96c2694c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1308fa42ada50e6deb473b61ec731f0d96c2694c | 2012-05-18 23:34:11+02:00 |
avcodec/mpeg12dec: Limit progressive_seq reinitilaization to where the resolution changes
Fixes Ticket3743
Signed-off-by: Michael Niedermayer <[email protected]>
| 4d1fa38d984cba322284cfce416c4c969da58f51 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/4d1fa38d984cba322284cfce416c4c969da58f51 | 2014-06-28 00:16:09+02:00 |
swr: handle initial negative sample index outside DSP function.
Signed-off-by: Michael Niedermayer <[email protected]>
| b785c62681a0a5a330b065e0754d27a313c44c8e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b785c62681a0a5a330b065e0754d27a313c44c8e | 2014-06-14 14:36:18+02:00 |
swresample/resample_template: move division out of loop for float/double swri_resample_linear()
Signed-off-by: Michael Niedermayer <[email protected]>
| 418e5768c68b8688c12e30f2e017688c97249e85 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/418e5768c68b8688c12e30f2e017688c97249e85 | 2014-06-30 04:30:10+02:00 |
avcodec/aacenc: dont use global quality if its negative
Some applications used a negative value as default for "not set"
Signed-off-by: Michael Niedermayer <[email protected]>
| 9a7d332b923b26cd876d33d6a20021a8eee2863f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9a7d332b923b26cd876d33d6a20021a8eee2863f | 2014-05-24 20:32:37+02:00 |
lavf/concatdec: check match_streams() return value.
| c27939d871030ab79d5ef4e40ad6e4388db0c746 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/c27939d871030ab79d5ef4e40ad6e4388db0c746 | 2014-04-29 13:25:59+02:00 |
avformat/h263dec/h263_probe: Check TR
Fixes missdetection of Misdetection_345.mp3
Fixes missdetection of Misdetection_421.mp3
Signed-off-by: Michael Niedermayer <[email protected]>
| cd20b93e2f5171054d6b3dd9daee1e832c1f9090 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/cd20b93e2f5171054d6b3dd9daee1e832c1f9090 | 2014-05-07 03:42:21+02:00 |
resample: drop useless abs()
negative sample_index is handled in the block above.
| eed752d61da332fb13e9893a175a90fed7b1d7d3 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/eed752d61da332fb13e9893a175a90fed7b1d7d3 | 2014-04-11 16:28:11+02:00 |
lavd/pulse_audio_enc: respect minreq while checking buffer fullness
Signed-off-by: Lukasz Marek <[email protected]>
| 5bef4878d3081c25b9f09b22e312451686941ace | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5bef4878d3081c25b9f09b22e312451686941ace | 2014-04-30 00:36:14+02:00 |
log: Factorize check_color_terminal() out
| 061e340c05bde91ac988677e47bc562b04be5c20 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/061e340c05bde91ac988677e47bc562b04be5c20 | 2014-04-03 20:04:34+02:00 |
flacdec: export replaygain tags from Vorbis comments
Signed-off-by: Anton Khirnov <[email protected]>
| 1d55f8d5f6f2cd74fa27170e2be37a72441d9202 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1d55f8d5f6f2cd74fa27170e2be37a72441d9202 | 2014-04-04 17:40:51+02:00 |
avutil/log: fix negative log levels
These where broken by 7763118cae4eb468b032dbd29af15a011c2c233b
Signed-off-by: Michael Niedermayer <[email protected]>
| 49e040e8680365c17f9cfbf94f3a3238afbe718b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/49e040e8680365c17f9cfbf94f3a3238afbe718b | 2014-04-03 22:44:04+02:00 |
ljpeg: check color_range
| bf0d7da7cbbf869605086c2a47cdf87f0a533e24 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/bf0d7da7cbbf869605086c2a47cdf87f0a533e24 | 2014-03-16 23:31:30+01:00 |
ffmpeg_opt: Check ist is valid before using it in audio_channels_map init
Fixes segfault and instead provides an error message
Fixes Ticket3465
Signed-off-by: Michael Niedermayer <[email protected]>
| 8803b970ef98ea51278dece401d23dc870c5aa01 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8803b970ef98ea51278dece401d23dc870c5aa01 | 2014-03-15 22:14:08+01:00 |
avcodec/utils: fix sizeof(AVFrame) dependence in avcodec_encode_audio2()
This is a bit tricky, we allocate a correctly sized AVFrame but then only
copy the compile time AVFrame size, this is to ensure that user applications
which do not use the correct av frame API dont end with out of array reads.
Note, applications using the correct API have set extended_data and the
changed code will never be executed for them.
Signed-off-by: Michael Niedermayer <[email protected]>
| 8ab80707841a73ca7708e1e1aa97f3513fff3d35 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8ab80707841a73ca7708e1e1aa97f3513fff3d35 | 2014-03-18 02:03:30+01:00 |
avcodec/g2meet: fix error returns
Fixes out of array accesses
This should not affect any release
Fixes: 8ab69af9e5a7a7e20fe04cdd25c0d6e7-asan_heap-oob_e72b82_5505_cov_2278389485_g2m4.wmv
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 6b53c1aa822e9c92be52a462dd0aef1c2010ce73 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6b53c1aa822e9c92be52a462dd0aef1c2010ce73 | 2014-03-02 15:22:30+01:00 |
dxva2_h264: set the correct ref frame index in the long slice struct
The latest H.264 DXVA specification states that the index in this
structure should refer to a valid entry in the RefFrameList of the picture
parameter structure, and not to the actual surface index.
Fixes H.264 DXVA2 decoding on recent Intel GPUs (tested on Sandy and Ivy)
Signed-off-by: Michael Niedermayer <[email protected]>
| 276839b8de7ff836a529bbd6221f615a343b23e1 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/276839b8de7ff836a529bbd6221f615a343b23e1 | 2014-03-07 00:33:19+01:00 |
avcodec/h264: use subsample factors of the used pixel format
Fixes out of array read
Fixes: 1cb91c36c4e55463f14aacb9bdf55b38-asan_heap-oob_106cbce_5617_cov_11212800_h264_mmx_chroma_intra_lf.mp4
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 8c55ff393340998faae887dfac19e7ef128e1e58 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8c55ff393340998faae887dfac19e7ef128e1e58 | 2014-02-21 23:53:49+01:00 |
avcodec: fix dxva2 & vaapi after removing the +52 offset from the loop filter parameters
Signed-off-by: Michael Niedermayer <[email protected]>
| 0ad8f73f137dad1f3d0f818e22bdb2949186e9ec | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0ad8f73f137dad1f3d0f818e22bdb2949186e9ec | 2014-02-21 00:21:22+01:00 |
ffmpeg: reduce frame rate for mpeg4 to be within the spec limits
Signed-off-by: Michael Niedermayer <[email protected]>
| 3734c3ea51ae002a85366ee52dbc8f9df4cfd3db | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3734c3ea51ae002a85366ee52dbc8f9df4cfd3db | 2014-02-19 18:40:27+01:00 |
avcodec/frame_thread_encoder: warn about huffyuv limitations
Signed-off-by: Michael Niedermayer <[email protected]>
| 3c7220fc605c99e419ae38f282fc4f853413c758 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3c7220fc605c99e419ae38f282fc4f853413c758 | 2014-02-15 15:16:51+01:00 |
configure: Set default HOSTCFLAGS/HOSTCPPFLAGS after compiler detection
This prevents the default HOSTCFLAGS from getting clobbered by flags
passed to configure on the command line.
| 8267f9363532b23b3b8b4e27491ee2d412a8aec3 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8267f9363532b23b3b8b4e27491ee2d412a8aec3 | 2014-01-22 10:33:04+01:00 |
hevc: Bound check slice_qp
The T-REC-H.265-2013044 page 79 states it has to be in the range
[-s->sps->qp_bd_offset, 51].
Sample-Id: 00001386-google
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
| 0d999333f96a34903448579bf13a3209deaee9da | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0d999333f96a34903448579bf13a3209deaee9da | 2014-01-21 11:59:30+01:00 |
avcodec/mjpegdec: use the correct linesize in the flipping code
Fixes out of array access
No releases should be affected
Depends on 7c3700cd1d8683966b21fffbf02e326d0bd14e06, do not backport without this one
Fixes: asan_heap-oob_14a37fe_9111_cov_1692584941_test4.amv
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 19b41f86457d945e98c236f67faf59d560861a4c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/19b41f86457d945e98c236f67faf59d560861a4c | 2014-01-31 21:47:44+01:00 |
Fix spelling errors in texi files: accomodate -> accommodate allows to -> allows one to choosen -> chosen compability -> compatibility explictly -> explicitly overriden -> overridden specifed -> specified Trasmission -> Transmission
Signed-off-by: Michael Niedermayer <[email protected]>
| 9898bd9a82ad16f7ef2dcc26542827ff92255821 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9898bd9a82ad16f7ef2dcc26542827ff92255821 | 2014-03-06 21:12:40+01:00 |
dnxhdenc: fix mb_rc size
Fixes out of array access with RC_VARIANCE set to 0
Signed-off-by: Michael Niedermayer <[email protected]>
| f1caaa1c61310beba705957e6366f0392a0b005b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f1caaa1c61310beba705957e6366f0392a0b005b | 2014-01-17 20:24:36+01:00 |
configure: Update freetype check to follow upstream
The freetype tutorial suggests to use #include FT_FREETYPE_H.
Bug-Id: 616
| e61b8fa5605b16a02a2a0ea75afbfc31d7832bba | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e61b8fa5605b16a02a2a0ea75afbfc31d7832bba | 2014-01-06 11:44:10+01:00 |
hevc: Reject impossible dependent tile
The tile 0 cannot depend on a previous one.
Prevent an out of array bound load in ff_hevc_cabac_init().
Fixes: asan_heap-oob_e3a924_1630_DBLK_A_MAIN10_VIXS_2.bit
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Reviewed-by: Guillaume Martres <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 48a5b155433ed7af20fb0a5c20ca131958727727 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/48a5b155433ed7af20fb0a5c20ca131958727727 | 2014-01-13 02:51:53+01:00 |
h264: limit allowed pred modes in ff_h264_check_intra_pred_mode() to 3
Higher modes are not allowed for 16x16/chroma, which is what this
function is used for. Otherwise this function would return 0 (vertical
prediction) for invalid higher modes, which could result in invalid
reads.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC:[email protected]
| 7f0e81db3c4ee6f8ce15058bafa72ce928a89f3f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7f0e81db3c4ee6f8ce15058bafa72ce928a89f3f | 2014-01-18 20:41:59+01:00 |
avformat/mxfdec: detect loops during header parsing
The header parser uses forward and backward parsing, making the
bulletproof prevention of loops difficult, thus this simple
detection code.
If someone improves the forward/backward parsing so it cannot loop
then this commit should be reverted
Fixes Ticket3278
Signed-off-by: Michael Niedermayer <[email protected]>
| 1c010fd035c1a14dc73827b84f21f593e969a5d6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1c010fd035c1a14dc73827b84f21f593e969a5d6 | 2014-01-08 04:55:42+01:00 |
doc/ffmpeg: use @command{} for programs mentioned in -override_ffserver
| 6b58488f926af1fa38ceb189e891c2d5925f4633 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6b58488f926af1fa38ceb189e891c2d5925f4633 | 2013-11-27 15:48:19+01:00 |
doc/ffserver: remove more pointless/outdated entries
Mentioning build options, or bugs, or mysterious limitations should not
be done in the manual.
| 39192b76f8008b8b431df096aa962373a7bcd9ff | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/39192b76f8008b8b431df096aa962373a7bcd9ff | 2013-11-28 17:03:08+01:00 |
avformat/electronicarts: check chunk size.
Fix infinite loop
Signed-off-by: Michael Niedermayer <[email protected]>
| 20769d9349ba598822334d666ef1f3e387df2dff | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/20769d9349ba598822334d666ef1f3e387df2dff | 2013-11-11 19:51:12+01:00 |
lavc: deprecate FF_MAX_B_FRAMES
We should not arbitrarily decide the maximum B-frame number for all
encoders supported by Libav, each encoder should be able to set its own
limits.
| aa241229891173b0357eee04e6ca78f806cc9c0c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/aa241229891173b0357eee04e6ca78f806cc9c0c | 2013-11-14 09:41:03+01:00 |
hls: Check whether the AVIOContext contains a new redirected URL
This allows both the main playlist itself as well as the variant
playlists to handle redirects combined with relative URLs.
Signed-off-by: Martin Storsjö <[email protected]>
| 8c929098141ebc94ad3f303521c520bb3dc6d8f6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8c929098141ebc94ad3f303521c520bb3dc6d8f6 | 2013-11-22 14:27:08+02:00 |
flashsv: Check diff_start diff_height values
Fix out of array accesses.
Found-by: ami_stuff
Signed-off-by: Michael Niedermayer <[email protected]>
| 57070b1468edc6ac8cb3696c817f3c943975d4c1 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/57070b1468edc6ac8cb3696c817f3c943975d4c1 | 2013-11-01 19:38:53+01:00 |
avcodec/hevc_sei: check active_seq_parameter_set_id validity
Signed-off-by: Michael Niedermayer <[email protected]>
| 63a37d0e1ec59377af9fb7973ffc847f928ba851 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/63a37d0e1ec59377af9fb7973ffc847f928ba851 | 2013-11-03 02:13:55+01:00 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.