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
⌀ |
---|---|---|---|---|---|---|---|
lavc/motion_est: Fix undefined negative left shifts.
| b6a83962453463aa814bb79aeaa7145732158f02 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b6a83962453463aa814bb79aeaa7145732158f02 | 2017-04-19 23:33:33+02:00 |
avcodec/pixlet: Reorder rlen check
This changes nothing but is nicer looking as this checks rlen
Maybe this helps coverity remove CID1397743
Signed-off-by: Michael Niedermayer <[email protected]>
| c94d551ea7b39c4e467e146cd347c407e8eb38ee | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/c94d551ea7b39c4e467e146cd347c407e8eb38ee | 2017-04-10 13:11:15+02:00 |
vp9: split out loopfilter functions in their own source file.
| b823bbc10cc7b8674bb2dea50bd5dfc081e28620 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b823bbc10cc7b8674bb2dea50bd5dfc081e28620 | 2017-03-28 18:04:26-04:00 |
ffmpeg: count packets when queued
Because write_packet() fakely writes packets to muxer by queueing
them when muxer hasn't been initialized, it should also increment
frame_number fakely.
This is required because code in do_streamcopy() rely on
frame_number.
Should fix Ticket6227
Reviewed-by: James Almer <[email protected]>
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: Muhammad Faiz <[email protected]>
| c4be288fdbe1993110f1abd28ea57587cb2bc221 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/c4be288fdbe1993110f1abd28ea57587cb2bc221 | 2017-05-03 01:47:32+07:00 |
lavc/hwaccel: fix header copyright
It was done on a whim because of the FATE header check and was actually
meant to be removed before pushing.
Also, nobody in review spotted it.
Reviewed-by: wm4
| 6476bb84bca36b4af5427c5e733fd7b33a985700 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6476bb84bca36b4af5427c5e733fd7b33a985700 | 2017-03-21 12:38:20+01:00 |
x86util: Port all macros to cpuflags
Also do some small cosmetic changes: Drop pointless _MMX suffix from ABSD2
macro name, drop pointless check for MMX support, we always assume MMX is
available in our SIMD code, fix spelling.
| 994c4bc10751e39c7ed9f67ffd0c0dea5223daf2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/994c4bc10751e39c7ed9f67ffd0c0dea5223daf2 | 2017-03-14 17:23:32+01:00 |
mpeg SVCD compatibility, SCR fixes, standard compliance
- fixed VBR+constrained bitstream header flags for non-VCD
- more sane (and SVCD compatible) value for video stream->max_buffer_size
- always write at least one PES header stuffing byte for MPEG-2 to
prevent accidental start code generation
- do not write more than 16 stuffing bytes in a PES header (not
allowed). Use padding packets instead.
- include a PES extension in the first MPEG-2 packet
- fill the first pack of SVCD files with padding
- "sanity hack" that prevents the SCR from overtaking the PTS for non-VCD
- fixed VCD PTS values to correspond to the SCR
- always include DTS in the first SVCD packet (fixes lots of
compatibility problems with DVD players)
patch by (Hauke Duden <H.NS.Duden at gmx dot net>)
Originally committed as revision 3078 to svn://svn.ffmpeg.org/ffmpeg/trunk
| 224944895efe6ac23e3b8f9d35abfee9f5c6c440 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/224944895efe6ac23e3b8f9d35abfee9f5c6c440 | 2004-04-26 22:16:06+00:00 |
arm: vp9itxfm: Template the quarter/half idct32 function
This reduces the number of lines and reduces the duplication.
Also simplify the eob check for the half case.
If we are in the half case, we know we at least will need to do the
first three slices, we only need to check eob for the fourth one,
so we can hardcode the value to check against instead of loading
from the min_eob array.
Since at most one slice can be skipped in the first pass, we can
unroll the loop for filling zeros completely, as it was done for
the quarter case before.
This allows skipping loading the min_eob pointer when using the
quarter/half cases.
This is cherrypicked from libav commit
98ee855ae0cc118bd1d20921d6bdb14731832462.
Signed-off-by: Martin Storsjö <[email protected]>
| b7a565fe71d16747209bd66955a54c9b54abc5dd | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b7a565fe71d16747209bd66955a54c9b54abc5dd | 2017-03-19 22:53:22+02:00 |
avcodec/h264: add avx 8-bit 4:2:2 chroma h intra deblock/loop filter
~1.37x faster (147 vs. 108 cycles) compared to mmxext function
| cd893b9307b8c871fec067928dc613fa987e38c3 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/cd893b9307b8c871fec067928dc613fa987e38c3 | 2017-02-27 13:22:06+01:00 |
MAINTAINERS: Add Rodger Combs to ffmpeg-security
Rodger Combs will be added to the ffmpeg-security alias when this patch is applied
Reviewed-by: Paul B Mahol <[email protected]>
Reviewed-by: Clément Bœsch <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 7f62368bacdbf6fdc769876f5e4ad5a18afb46ef | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7f62368bacdbf6fdc769876f5e4ad5a18afb46ef | 2017-02-28 01:13:52+01:00 |
avformat/hlsenc: fix cid 1401346 Dereferencing pointer error
check if proto is null before av_strcasecmp
CID: 1401346
Signed-off-by: Steven Liu <[email protected]>
| 0c0aef1caf0cb5dd3b294f9fff923175036bd985 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0c0aef1caf0cb5dd3b294f9fff923175036bd985 | 2017-02-21 23:38:39+08:00 |
aacdec: do not mutate input packet metadata
Apparently the demuxer outputs the wrong padding for HE-AAC (based on
the raw sample rate, or so). aacdec contains a hack to adjust the muxer
padding accordingly before it's used to trim the decoder output. This
modified the packet side data, which in combination with the old
decoding API would change the packet the user passed to the decoder.
This is clearly not allowed, and it breaks running some gapless fate
tests with "-fflags +keepside" applied (without keepside, the packet
metadata is typically newly allocated, essentially making a copy and not
modifying the user's input packet).
This should probably be fixed in the demuxer (and consequently also the
muxer), but for now only fix the immediate problem.
Regression since 946ed78f5f8 (2012).
| fcfc78cbabb6b454aa9e39ad32ae7a766dcf33d8 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/fcfc78cbabb6b454aa9e39ad32ae7a766dcf33d8 | 2017-03-09 10:16:12+01:00 |
avcodec/opusenc: Add () protecting macro arguments
Signed-off-by: Michael Niedermayer <[email protected]>
| 1fa8884aeb942d934e30cc8e8a419ef8d458f7ea | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1fa8884aeb942d934e30cc8e8a419ef8d458f7ea | 2017-02-16 13:24:11+01:00 |
configure: Check for xcb as well as xcb-shape before enabling libxcb
Newer versions of libxcb have xcb-foo pkg-config files that do not declare
their xcb dependency so that required linker flags will not be generated.
| 871b4f3654636ed64560e86b9faa33828d195ceb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/871b4f3654636ed64560e86b9faa33828d195ceb | 2017-02-15 10:33:34+01:00 |
avcodec/flac: Check bps in ff_flac_parse_streaminfo()
| 020d53ebdb581ea5a493239537cb0f5cc54809e9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/020d53ebdb581ea5a493239537cb0f5cc54809e9 | 2016-12-03 23:37:27+01:00 |
tests/api/api-seek-test: check all compute_crc_of_packets() calls
Signed-off-by: Michael Niedermayer <[email protected]>
| 7679c38b3b57125007aa67b009665c8d3e8d6bcc | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7679c38b3b57125007aa67b009665c8d3e8d6bcc | 2016-12-06 15:42:07+01:00 |
tests/ffserver-regression.sh: give wget a timeout and prevent retries
Reviewed-by: "Reynaldo H. Verdejo Pinochet" <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 6216127d0cb953e812d96f61e252b52076da1586 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6216127d0cb953e812d96f61e252b52076da1586 | 2016-11-29 19:26:26+01:00 |
avcodec/aac_adtstoasc_bsf: validate and forward extradata if the stream is already ASC
Fixes ticket #5973
Reviewed-by: Hendrik Leppkes <[email protected]>
Signed-off-by: James Almer <[email protected]>
| 6e1902bab4349a79c45807af18ebf5b50f7b436b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6e1902bab4349a79c45807af18ebf5b50f7b436b | 2016-11-25 18:24:56-03:00 |
avutil/cpu: remove the |checked| static variable
Remove the |checked| variable because the invalid value of -1 for
|flags| can be used to indicate the same condition. Also rename |flags|
to |cpu_flags| because there are a local variable and a function
parameter named |flags| in the same file.
Co-author: Dmitry Vyukov of Google
Signed-off-by: Michael Niedermayer <[email protected]>
| 29fb49194bedc74ac9be0b49b6b42dcfeb6222d9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/29fb49194bedc74ac9be0b49b6b42dcfeb6222d9 | 2016-11-23 22:35:25+01:00 |
vp9_mc_template: limit assert to SCALED == 0
The handling of the other block sizes was limited to 'SCALED == 0' in
commit dc96c0f9fc96bf4167633befc074394062793322, so this assert should
be disabled, too, as it can now be triggered.
Reviewed-by: Ronald S. Bultje <[email protected]>
Signed-off-by: Andreas Cadhalpun <[email protected]>
| 7112b56a3413b68261e3db0314343e26c75be83b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7112b56a3413b68261e3db0314343e26c75be83b | 2016-11-13 12:38:15+01:00 |
configure: Drop redundant and partly bogus vaapi/vdpau header checks
These are taken care of more correctly by the library checks.
| af451ac0de6776e97d6a3ff95eac257b7964002e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/af451ac0de6776e97d6a3ff95eac257b7964002e | 2016-12-09 08:42:08+01:00 |
lavc/utils.c: Make sure skip_samples never goes negative.
Signed-off-by: Sasi Inguva <[email protected]>
Reviewed-by: Derek Buitenhuis <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 18108f36183836e9651f79f4c779737264318aa1 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/18108f36183836e9651f79f4c779737264318aa1 | 2016-11-10 17:44:47+01:00 |
ffserver: check for codec match using AVStream.codecpar
Compare using AVCodecParameters instead of the deprecated
AVStream.codec field
Signed-off-by: Reynaldo H. Verdejo Pinochet <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 311107a65d0105044d1691b5e85d6f30879b0eb4 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/311107a65d0105044d1691b5e85d6f30879b0eb4 | 2016-11-08 12:11:57+01:00 |
avcodec/msrle: Check side data size before use
Fixes out of array read
Signed-off-by: Michael Niedermayer <[email protected]>
| a6330119a099840c5279697cf80cb768df97a90a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a6330119a099840c5279697cf80cb768df97a90a | 2016-10-31 00:19:02+01:00 |
avcodec/smc: Check side data size before use
Fixes out of array read
Signed-off-by: Michael Niedermayer <[email protected]>
| 140f48b90fbe32a88423aad473bccc72c3bb450e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/140f48b90fbe32a88423aad473bccc72c3bb450e | 2016-10-31 23:20:47+01:00 |
checkasm: add a test for HEVC IDCT
Signed-off-by: Anton Khirnov <[email protected]>
| e3f941cb03b139b866a0ad6dc95fbe1b247d54af | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e3f941cb03b139b866a0ad6dc95fbe1b247d54af | 2016-10-11 18:15:40+02:00 |
build: Drop arch-specific checkasm Makefiles
They only contain one line and will never contain more.
| 2816f8a8bb33bd67fec5e94f5d357918caf4e055 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/2816f8a8bb33bd67fec5e94f5d357918caf4e055 | 2016-10-17 16:25:38+02:00 |
vp9lpf/x86: save one register in loopfilter surface coverage.
Signed-off-by: Anton Khirnov <[email protected]>
| a6e288d62414c25ed173b17b48ddea947bede73e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a6e288d62414c25ed173b17b48ddea947bede73e | 2016-10-04 10:54:08+02:00 |
avcodec/mpegvideo_enc: Clear mmx state in ff_mpv_reallocate_putbitbuffer()
This function must be called from the mb or slice encoding loop and MMX state may not
be clean there
Signed-off-by: Michael Niedermayer <[email protected]>
| 03ec6b780cfae85b8bf0f32b2eda201063ad061b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/03ec6b780cfae85b8bf0f32b2eda201063ad061b | 2016-10-21 14:17:50+02:00 |
avcodec/magicyuv: check dimensions
Signed-off-by: Paul B Mahol <[email protected]>
| 8a135a55b3570441b6147c94f24c71e5c81ac916 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8a135a55b3570441b6147c94f24c71e5c81ac916 | 2016-06-19 09:45:29+02:00 |
h264: Drop unused function check_opcodes()
| 84b2d3fb68caf71cff4b80b44ff865d7ae2531ce | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/84b2d3fb68caf71cff4b80b44ff865d7ae2531ce | 2016-06-14 11:14:06+02:00 |
h264: always set redundant_pic_count during slice header parsing
It is always checked in the surrounding code, so this make sure we don't
see a value from an old slice.
| 6efc4638584e1e14d1a6152186ba28f5d48a80c0 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6efc4638584e1e14d1a6152186ba28f5d48a80c0 | 2016-06-21 11:20:20+02:00 |
alac: do not return success if nothing was decoded
If we encounter an END element before anything is decoded, we would
return success even though the output frame has not been allocated,
which is invalid.
CC: [email protected]
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
| 796dca027be09334d7bbf4f2ac1200e06bb054cb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/796dca027be09334d7bbf4f2ac1200e06bb054cb | 2016-08-18 17:06:46+02:00 |
dshow: avoid duplicate NULL check before free
Signed-off-by: rogerdpack <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| bfbffbd7d8fd014a3693c51d7cde9926315a9fa0 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/bfbffbd7d8fd014a3693c51d7cde9926315a9fa0 | 2016-06-23 03:18:16+02:00 |
hwcontext: initialize sw_format in av_hwframe_ctx_alloc()
| a0f469da744db83db32f3fe13186ee4aa2bc7dc5 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a0f469da744db83db32f3fe13186ee4aa2bc7dc5 | 2016-04-15 10:15:54+02:00 |
h264: eliminate low_delay
It is always unconditionally initialized in decode_postinit() and then
immediately used in one place further below. All the other places where
it is accessed are just useless fluff.
| 99c554efc8b09c3f1bb2fb41c3da5431085f7470 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/99c554efc8b09c3f1bb2fb41c3da5431085f7470 | 2016-04-24 10:06:24+02:00 |
ffprobe: Don't try and decode things that have no dec_ctx
The last instance of a missing dec_ctx check from the merge.
Signed-off-by: Derek Buitenhuis <[email protected]>
| e8373143e11827b668495ff3323c3abedb3dc9da | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e8373143e11827b668495ff3323c3abedb3dc9da | 2016-04-12 17:24:07+01:00 |
ffv1: Explicitly name the coder type
FFv1 uses two types of coders, golomb and range with two different
tables. This is exposed this in a rather convoluted way, for example
mentioning to set coder type 1 while initializing the variable 'ac' to 2,
because encoder does not use range coder with default table.
Appropriate internal coder type values have been added and used in any
check rather than using raw numbers.
Initialization of avctx.coder_type in ffv1dec is removed because this
field is encoder only. An unneeded validation check in the encoder
is dropped too.
Signed-off-by: Vittorio Giovara <[email protected]>
| 4bb1070c154e49d35805fbcdac9c9e92f702ef96 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/4bb1070c154e49d35805fbcdac9c9e92f702ef96 | 2015-11-16 12:56:31+01:00 |
avcodec/ffv1dec: fix some unsupported pix_fmt
When checking pix_fmt mapping, some bitstreams are mapped to an
incorrect pix_fmt instead of being rejected (ENOSYS).
Actually, such bitstreams are not supported (FFmpeg encoder does not
produce such bitstream, such bitstream may come only from another
encoder for the moment).
- JPEG 2000 RCT 11/13/15/16 bit depths are mapped to a 8-bit FFmpeg
pix_fmt (e.g. bgr0), which is not expected.
- JPEG 2000 RCT 9/10/12/14 bit depths with alpha are mapped to a
FFmpeg pix_fmt without alpha (e.g. AV_PIX_FMT_GBRP9 for 9-bit with
alpha), which is not expected.
The order for choosing the pix_fmt is changed to the one used by YCbCr
selection (<=8 bit first).
" && !f->transparency" is added to the other lines.
Signed-off-by: Michael Niedermayer <[email protected]>
| 878c3a36451eaf1ae3ec3d8eab0af11dab0a7695 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/878c3a36451eaf1ae3ec3d8eab0af11dab0a7695 | 2016-06-13 22:07:35+02:00 |
avformat/mpegts: Check adaption field control in analyze() more instead of transport_error_indicator
transport_error_indicator is not required to be 0
Fixes probing
Fixes Ticket 4862
Signed-off-by: Michael Niedermayer <[email protected]>
| ee7a642b0e5da1730cfc66008d2f2976fa37a692 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ee7a642b0e5da1730cfc66008d2f2976fa37a692 | 2016-04-10 13:32:25+02:00 |
diractab: Fix header guard name
| 0bcffc79242492073e64ee2d6936d2c621c0feb6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0bcffc79242492073e64ee2d6936d2c621c0feb6 | 2016-02-07 09:26:15-08:00 |
checkasm: bench each vf_blend mode once
Also bench a smaller buffer. This drastically reduces --bench runtime
and reports smaller, more readable numbers.
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: James Almer <[email protected]>
| 26034929d574b6ce051677be5fe9ddba70f68a4b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/26034929d574b6ce051677be5fe9ddba70f68a4b | 2016-02-22 13:54:07-03:00 |
lavf/img2dec: Skip COM when auto-detecting jpeg.
It could theoretically contain invalid data that gets ignored by decoders.
| ef888de1c1d2581d45c1917d8f9081b35ea07a72 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ef888de1c1d2581d45c1917d8f9081b35ea07a72 | 2016-03-22 11:13:24+01:00 |
intrax8: Check and propagate errors from ff_intrax8_common_init
This allows dropping an afterwards redundant assert.
| 0372e73f917e72c40b09270f771046fc142be4a7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0372e73f917e72c40b09270f771046fc142be4a7 | 2016-03-22 17:33:32-04:00 |
configure: fix openssl pkg-config check
Signed-off-by: James Almer <[email protected]>
| 09d5c28c3dc4cdde81185de3a9a015c62bea396a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/09d5c28c3dc4cdde81185de3a9a015c62bea396a | 2016-01-27 17:56:35-03:00 |
avcodec/aacenc: Check for +-Inf too
Fixes out of array read
Fixes: 04442da73d935b776d2236282588d4f9/signal_sigsegv_2625a69_8790_ae85ffc889070663319b3417ede777b0.mov
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 92465a2347d959cbd9864b017a39b2a4ab9313ff | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/92465a2347d959cbd9864b017a39b2a4ab9313ff | 2016-01-13 23:49:27+01:00 |
swscale/vscale: Check that 2 tap filters are bilinear before using bilinear code
Fixes: out of array reads
Fixes: 07e8b9c5d348ccdf7add0f37de20cf6c/asan_heap-oob_27e8df7_6849_e56653f768070ec8cb52f587048444c2.mov
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| eb7802afefb7af4da50bc56818cdab9da07de7d0 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/eb7802afefb7af4da50bc56818cdab9da07de7d0 | 2016-01-14 21:59:12+01:00 |
swscale/swscale_unscaled: Fix odd height inputs for bayer_to_rgb24_wrapper()
Fixes: 372d2df1f04b49e25f109f07f90b1505/asan_heap-oob_2835d2e_8501_99e0114d7ba3a6db885d0b4684d200c1.cine
Fixes out of array read
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| ad3b6fa7d83db7de951ed891649af93a47e74be5 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ad3b6fa7d83db7de951ed891649af93a47e74be5 | 2016-01-17 01:19:43+01:00 |
avformat/img2dec: Skip checking the input files existence if it has already been opened
Avoids a unneeded open
Fixes part of Ticket4849
Signed-off-by: Michael Niedermayer <[email protected]>
| e9e87822022fc81f92866f870ecedfd2f6272ac9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e9e87822022fc81f92866f870ecedfd2f6272ac9 | 2015-12-26 20:21:52+01:00 |
lavfi/af_anequalizer: remove cabs, cexp dependencies
Replaces by real arithmetic. Tested the validity of these transformations separately.
Numerical differences are ~1e-15, and should not matter: it is not even
clear which is more precise mathematically.
Reviewed-by: Paul B Mahol <[email protected]>
Signed-off-by: Ganesh Ajjanagadde <[email protected]>
| 63702014fa4e4bb812fa984ca748f3178bd1174f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/63702014fa4e4bb812fa984ca748f3178bd1174f | 2015-12-28 16:47:23-08:00 |
avcodec/jpeg2000dwt: Check ndeclevels before calling dwt_encode*()
Signed-off-by: Michael Niedermayer <[email protected]>
| feb3f39614b88c113211a98dda1bc2fe5c3c6957 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/feb3f39614b88c113211a98dda1bc2fe5c3c6957 | 2015-11-27 21:02:13+01:00 |
avcodec/dirac_parser: Check that there is a previous PU before accessing it
Fixes out of array read
Fixes: 99d142c47e6ba3510a74b872a1a2ae72/asan_heap-oob_11b36f4_3811_0f5c69e7609a88a580135678de1df844.dxa
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| a08681f1e614152184615e2bcd71c3d63835f810 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a08681f1e614152184615e2bcd71c3d63835f810 | 2015-12-05 17:42:45+01:00 |
avformat: Rework add_to_pktbuf
Make it return an error and check its return value when it is used.
Simplify the usage by calling `av_packet_ref` internally when needed.
| d584533cf38141172e20bae5436629ee17c8ce50 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d584533cf38141172e20bae5436629ee17c8ce50 | 2015-10-26 18:00:55+01:00 |
avformat/mlpdec: consider all valid mlp access units when probing
Fixes probing of truehd/mlp files with a lot of frames in between the
major sync frames. The spec allows a distance of up to 128 frames in
between major sync frames, which leads to the probing code not reaching
the desired score.
| 2ea38a946dbd7c4528f5729f494758cfad491fa8 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/2ea38a946dbd7c4528f5729f494758cfad491fa8 | 2015-11-29 10:41:51+01:00 |
ffmpeg: factorize checking decoder result
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: Marton Balint <[email protected]>
| e2b416b68e85f3495d1a55f202dd405824c044c8 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e2b416b68e85f3495d1a55f202dd405824c044c8 | 2015-10-22 05:07:46+02:00 |
mpegts: Make the pat_period a double
Having it as a float didn't even allow enough precision to check
for INT_MAX/2.
Signed-off-by: Derek Buitenhuis <[email protected]>
| 516d34de424f3ad9720669ac7be22f7537f696b6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/516d34de424f3ad9720669ac7be22f7537f696b6 | 2015-10-17 15:02:06-04:00 |
avconv: Add loop option.
Signed-off-by: Anton Khirnov <[email protected]>
| 16b0c929621f84983b83b9735ce973acb12723bc | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/16b0c929621f84983b83b9735ce973acb12723bc | 2015-10-13 09:41:02+02:00 |
checkasm: Remove use of deprecated av_set_cpu_flags_mask()
| 99982524f93a5fc5f8eadd3e8f9b4e3af446cdaa | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/99982524f93a5fc5f8eadd3e8f9b4e3af446cdaa | 2015-10-03 15:08:24+02:00 |
avcodec/mpeg12dec: Initialize chroma_format to 1
This ensures that chroma format is never set to an invalid value
Signed-off-by: Michael Niedermayer <[email protected]>
| 9b4dd0f87696353f10778d4c0ba80d9949c6fbca | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9b4dd0f87696353f10778d4c0ba80d9949c6fbca | 2015-09-30 21:51:16+02:00 |
swresample/resample: speed up upsampling by precomputing sines
When upsampling, factor is set to 1 and sines need to be evaluated only
once for each phase, and the complexity should not depend on the number
of filter taps. This does the desired precomputation, yielding
significant speedups. Hard guarantees on the gain are not possible, but gains
themselves are obvious and are illustrated below.
Sample benchmark (x86-64, Haswell, GNU/Linux)
test: fate-swr-resample-dblp-2626-44100
old:
29161085 decicycles in build_filter (loop 1000), 256 runs, 0 skips
28821467 decicycles in build_filter (loop 1000), 512 runs, 0 skips
28668201 decicycles in build_filter (loop 1000), 1000 runs, 24 skips
new:
14351936 decicycles in build_filter (loop 1000), 256 runs, 0 skips
14306652 decicycles in build_filter (loop 1000), 512 runs, 0 skips
14299923 decicycles in build_filter (loop 1000), 1000 runs, 24 skips
Note that this does not statically allocate the sin lookup table. This
may be done for the default 1024 phases, yielding a 512*8 = 4kB array
which should be small enough.
This should yield a small improvement. Nevertheless, this is separate from
this patch, is more ambiguous due to the binary increase, and requires a
lut to be generated offline.
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: Ganesh Ajjanagadde <[email protected]>
| b87ca4bf25a3b5a0cac76fb8b3a7ab3bc0fd9882 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b87ca4bf25a3b5a0cac76fb8b3a7ab3bc0fd9882 | 2015-11-09 18:41:03-05:00 |
avcodec/vdpau: remove incompatible-libav-abi hack from vdpau_render_state struct
| 89b0a9f3fa9d6f32d99d03473ab1cb2110a7c9dd | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/89b0a9f3fa9d6f32d99d03473ab1cb2110a7c9dd | 2015-09-05 16:45:26-03:00 |
avfilter/vf_waveform: stop abusing s->size for calculating limit
Signed-off-by: Paul B Mahol <[email protected]>
| db592f3b03a21d5bd5237021c00af3ce0431fc60 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/db592f3b03a21d5bd5237021c00af3ce0431fc60 | 2015-09-04 17:34:23+00:00 |
cmdutils: silence unused warnings under --disable-swscale, --disable-swresample
This patch silences such warnings by placing initializations under a header guard,
see e.g
http://fate.ffmpeg.org/log.cgi?time=20150919095430&log=compile&slot=x86_64-archlinux-gcc-disableswscale,
http://fate.ffmpeg.org/log.cgi?time=20150919095048&log=compile&slot=x86_64-archlinux-gcc-disableswresample
for examples of such warnings.
It also has the benefit of placing library specific #defines next to each other.
Signed-off-by: Ganesh Ajjanagadde <[email protected]>
| 254c64c574dfc427721942fa84e4d24d6b6cc4c2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/254c64c574dfc427721942fa84e4d24d6b6cc4c2 | 2015-10-03 19:26:09+02:00 |
aacenc: disable bandtype modifying extensions when coder != twoloop
If the selected coder isn't twoloop, this commit temporarily
disables IS and PNS.
The problem is in the encode_window_bands_info() being confused
and setting invalid band_types for non-marked (normal) bands.
Signed-off-by: Rostislav Pehlivanov <[email protected]>
| 8ffe1cb4d7d457fdd216f42fec068fbd0cbc7ade | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8ffe1cb4d7d457fdd216f42fec068fbd0cbc7ade | 2015-09-01 12:07:00+01:00 |
avformat/oggenc: Check segments_count for headers too
Fixes infinite loop and segfault in ogg_buffer_data()
Fixes Ticket4806
Signed-off-by: Michael Niedermayer <[email protected]>
| 81a8701eb52d2b6469ae16ef442ce425388141b7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/81a8701eb52d2b6469ae16ef442ce425388141b7 | 2015-08-27 04:28:21+02:00 |
aacenc: Harmonize multiple inclusion guards
Signed-off-by: Rostislav Pehlivanov <[email protected]>
Reviewed-by: Ganesh Ajjanagadde <[email protected]>
| d4401a9e0d667ec7565aafcb61d77e0fd3f06bbc | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d4401a9e0d667ec7565aafcb61d77e0fd3f06bbc | 2015-08-22 04:56:36+01:00 |
checkasm: Remove unnecessary include
Signed-off-by: Anton Khirnov <[email protected]>
| 8f4a06faf45c1cbcabec610f4b47824171379934 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8f4a06faf45c1cbcabec610f4b47824171379934 | 2015-08-11 11:00:53+02:00 |
aacenc_tns: do not limit the filter size
This was copied from the decoder, but is unneeded for the encoder.
tns_max_bands is unused and set to zero which zeroed out start, end
and size and thus no filter was actually applied.
Signed-off-by: Rostislav Pehlivanov <[email protected]>
| 21bfeec27f933e18e7aac52ec025831353f47430 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/21bfeec27f933e18e7aac52ec025831353f47430 | 2015-08-29 21:59:38+01:00 |
checkasm: Modify report format
Makes it a bit more clear where each test belongs.
Suggested by Anton Khirnov.
Signed-off-by: Anton Khirnov <[email protected]>
| 65c14801527068fcaf729eeffc142ffd4682a21a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/65c14801527068fcaf729eeffc142ffd4682a21a | 2015-07-27 07:45:11+02:00 |
hevc: skip invalid/ignored NALUs when splitting the packet
There is no need to wait until actually decoding the NALU. This will
allow to get rid of the second hls_nal_unit() call later.
| d7bebe4805193783f0b6f292f9127a75709fb7d9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d7bebe4805193783f0b6f292f9127a75709fb7d9 | 2015-07-12 18:15:39+02:00 |
riff: Validate bitrate
| f1bdc234370401c032cd85184e93c7c155eb6d62 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f1bdc234370401c032cd85184e93c7c155eb6d62 | 2015-07-11 18:45:45+02:00 |
ffmpeg: remove access to private FILE struct members on Windows
The FILE struct is opaque in MSVC 2015, and the members of this struct
were never meant to be accessed in any case.
No conditions are known where this check was needed to get characters
from stdin.
| 99f8fc725de4de7dcb8f125220e17082ea4b81cc | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/99f8fc725de4de7dcb8f125220e17082ea4b81cc | 2015-08-04 20:05:18+02:00 |
avcodec/h264_slice: Also check sei_recovery_frame_cnt for skip_frame nokey
Signed-off-by: Michael Niedermayer <[email protected]>
| c3fdf536f6c07ca229dcc74aebcbdf0764618406 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/c3fdf536f6c07ca229dcc74aebcbdf0764618406 | 2015-07-28 13:27:16+02:00 |
vda: Check the correct pointer for buffer allocation
CC: [email protected]
Found-By: kropping
| 80f955c90867561dcce769216bc497e13281eb38 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/80f955c90867561dcce769216bc497e13281eb38 | 2015-07-03 01:58:32+02:00 |
asfdec: prevent the infinite loop in detect unknown_subobject
Signed-off-by: Luca Barbato <[email protected]>
| 016cac75c6061a1c03f812ddf258b8baefe70b00 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/016cac75c6061a1c03f812ddf258b8baefe70b00 | 2015-07-03 01:50:09+02:00 |
avcodec/h264_mvpred: Fix undefined shifts in MAP_F2F
Fixes: asan_heap-oob_17301a3_2100_cov_3226131691_ff_add_pixels_clamped_mmx.m2ts
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 53fd70579bc2314f2f5d528bed96914179b9a209 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/53fd70579bc2314f2f5d528bed96914179b9a209 | 2015-07-01 15:53:15+02:00 |
vc1dec: use get_bits_long and limit the read bits to 32
get_bits should not be used with more than 25 bits.
Signed-off-by: Andreas Cadhalpun <[email protected]>
Signed-off-by: Luca Barbato <[email protected]>
| 072756cdd2f949462520041e357f52f15d8c274d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/072756cdd2f949462520041e357f52f15d8c274d | 2015-06-26 19:39:29+02:00 |
avcodec/jpeg2000dec: Add some additional checking on lengthinc
Signed-off-by: Michael Niedermayer <[email protected]>
| 5ccca4eb8e1eafaa3c7bc97aec7b7131c10b3ce9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5ccca4eb8e1eafaa3c7bc97aec7b7131c10b3ce9 | 2015-06-12 01:13:55+02:00 |
jack: Check memory allocation
CC: [email protected]
Bug-Id: CID 1292520
| bc1eace1b3654c490cb2c226b3c80854244dbb9a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/bc1eace1b3654c490cb2c226b3c80854244dbb9a | 2015-06-08 13:03:27+01:00 |
bink: Factorize bink put_pixel
And make sure to check INTER_BLOCK as had been fixed by Michael
Niedermayer.
Reported-By: Andreas Cadhalpun
CC: [email protected]
| 7f596368a404363d72b1be6d16c51420a71bc523 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7f596368a404363d72b1be6d16c51420a71bc523 | 2015-06-03 14:39:03+02:00 |
compat/os2threads: Check av_malloc() return code
Signed-off-by: Michael Niedermayer <[email protected]>
| ea9daefe9329519f6dd810cb3b56288b1c71747c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ea9daefe9329519f6dd810cb3b56288b1c71747c | 2015-06-02 15:16:45+02:00 |
tests/checkasm/h264qpel: Use LOCAL_ALIGNED_16()
Fixes alignment issue and bus errors
Signed-off-by: Michael Niedermayer <[email protected]>
| 9e83ac6114de3d94eb992eff8ed810234069a7b2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9e83ac6114de3d94eb992eff8ed810234069a7b2 | 2015-07-23 00:35:18+02:00 |
rl: Add error checking to ff_rl_init().
| 1b1bb2c4efc126d74d44d8c421860c85f932ecb1 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1b1bb2c4efc126d74d44d8c421860c85f932ecb1 | 2015-05-28 15:38:43+01:00 |
avcodec/hevc: Fix typo in num_entry_point_offsets check
Signed-off-by: Michael Niedermayer <[email protected]>
| 3051e7fa712dfe2136f19b7157211453895f2a3c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3051e7fa712dfe2136f19b7157211453895f2a3c | 2015-05-15 23:46:10+02:00 |
avformat/mux: use <0 instead of != 0 for error check of init_muxer()
Signed-off-by: Michael Niedermayer <[email protected]>
| da4ef13cb20642dae4a893c9b32b7bbff60bfb42 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/da4ef13cb20642dae4a893c9b32b7bbff60bfb42 | 2015-05-16 18:37:21+02:00 |
configure: Check if ID3D11VideoDecoder exists, not just the header to enable d3d11va
Fixes build with some mingw-w64 versions, that have got the header
but not the interface declaration.
Signed-off-by: Martin Storsjö <[email protected]>
| 31de41babcd96f8ac2e6632454737aecb3710df7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/31de41babcd96f8ac2e6632454737aecb3710df7 | 2015-06-01 12:04:46+03:00 |
aacenc: fix option descriptions
Since the new PNS implementation has been merged and is no longer considered
proof of concept (as it's much more complex and better than the previous), change
the comments to reflect that. We need people testing it (since all AAC profiles
require it to be on by default) and having it tagged as proof of concept might drive some away.
Signed-off-by: Michael Niedermayer <[email protected]>
| 80db686a69517be94db453b533066c220d6678dd | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/80db686a69517be94db453b533066c220d6678dd | 2015-07-07 22:56:30+02:00 |
avcodec/vp3: Cleanup order of operations for current_run check
This shouldnt make a difference
Signed-off-by: Michael Niedermayer <[email protected]>
| dc4a621e9ceb81c4c019aa7656c2bfbec2df18d5 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/dc4a621e9ceb81c4c019aa7656c2bfbec2df18d5 | 2015-05-15 11:12:13+02:00 |
avformat/flacenc: Check length in flac_write_block_comment()
Signed-off-by: Michael Niedermayer <[email protected]>
| 40a7700b82aec0036622f8673ce64e070a520891 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/40a7700b82aec0036622f8673ce64e070a520891 | 2015-05-11 15:31:55+02:00 |
avcodec/txd: Fix input size checks for dxt1/3 for dimensions % 4 != 0
Signed-off-by: Michael Niedermayer <[email protected]>
| daea3209693f28328ca553fb33fdf8fc2ab42044 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/daea3209693f28328ca553fb33fdf8fc2ab42044 | 2015-05-07 19:11:01+02:00 |
dashenc: replace attribute id with contentType for the AdaptationSet element
id should be an integer, not a string. It is also optional, so use
contentType instead which is the proper attribute for these values.
This addresses ticket #4545, fixing an MPD validation error.
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 32a4177a627ddce984a5a9ed7023d9a63dcbdf85 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/32a4177a627ddce984a5a9ed7023d9a63dcbdf85 | 2015-05-11 01:37:39+02:00 |
alsdec: only adapt order for positive max_order
For max_order = 0 the clipping range is invalid. (amin = 2, amax = 1)
Signed-off-by: Andreas Cadhalpun <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 58d605ee9b3277289278dc40e022311f8e083833 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/58d605ee9b3277289278dc40e022311f8e083833 | 2015-04-23 16:51:46+02:00 |
avformat/http: Fix null check on allocated value
probably fixes CID 1292299
Signed-off-by: Michael Niedermayer <[email protected]>
| 919d13d2383bd7318b80ed0c5b723323a79a8996 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/919d13d2383bd7318b80ed0c5b723323a79a8996 | 2015-03-31 12:38:02+02:00 |
oggdec: Check memory allocation
Bug-Id: CID 1257798 / CID 1257805
Signed-off-by: Luca Barbato <[email protected]>
| 27aa1ff35a13bc471c6e0a9cc496ec3f62f1574f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/27aa1ff35a13bc471c6e0a9cc496ec3f62f1574f | 2015-03-21 23:18:15+01:00 |
ffmpeg: comment mpeg4 hack
See 3734c3ea51ae002a85366ee52dbc8f9df4cfd3db
| c285937ccc98109d0b5d4ba2e0560ebbb81f580f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/c285937ccc98109d0b5d4ba2e0560ebbb81f580f | 2015-03-03 20:25:28+01:00 |
avcodec/hevc_ps: Check cropping parameters more correctly
Signed-off-by: Michael Niedermayer <[email protected]>
| 06c70d45373dedc600f28e345685b130b60203c1 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/06c70d45373dedc600f28e345685b130b60203c1 | 2015-03-21 12:55:03+01:00 |
rtpenc: Restructure if statements in packetizers to simplify adding more conditions
Factorize out the s->num_frames check at the start of the if statements,
simplifying adding more alternative causes for sending the buffered
frames.
Signed-off-by: Martin Storsjö <[email protected]>
| bde2bba45c2f2df27a8534028bda09a6e7f835e2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/bde2bba45c2f2df27a8534028bda09a6e7f835e2 | 2015-02-28 22:54:26+02:00 |
vp9: set skip flag if the block had no coded coefficients.
This reproduces libvpx behaviour. It seems like it originally only
targeted loopfilter behaviour, but this unfortunately effects following
block contexting and thus directs bitstream sync.
| 96a58a8daa4d70e19d635b3823edbb8945116358 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/96a58a8daa4d70e19d635b3823edbb8945116358 | 2015-05-14 20:13:43-04:00 |
xcbgrab: Validate the capture area
And notify why the capture is impossible.
Signed-off-by: Luca Barbato <[email protected]>
| e8c4db0d4d07738fed716b1d2f20c85aac944641 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e8c4db0d4d07738fed716b1d2f20c85aac944641 | 2015-04-30 14:10:13+02:00 |
tools/trasher: Check fseek returns
Fixes CID733726
Signed-off-by: Michael Niedermayer <[email protected]>
| ca86e91dd660ae9abc4f6eace620061ac695f847 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ca86e91dd660ae9abc4f6eace620061ac695f847 | 2015-02-22 16:49:56+01:00 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.