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
⌀ |
---|---|---|---|---|---|---|---|
aac_adtstoasc_bsf: Check extradata memory allocation
Signed-off-by: Vittorio Giovara <[email protected]>
| 18f4fa251b0eb36392839f5bf6180f280dc04d8d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/18f4fa251b0eb36392839f5bf6180f280dc04d8d | 2015-02-17 12:18:10-05:00 |
avfilter/vf_phase: Add () to protect DIFF()s arguments
Signed-off-by: Michael Niedermayer <[email protected]>
| f15c734be1650cee240cd65b0dbd31fe6993a5bc | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f15c734be1650cee240cd65b0dbd31fe6993a5bc | 2015-02-17 00:47:47+01:00 |
lavc/arm: Use the neon vertical chroma loop filter also for H.264 4:2:2.
| f9f9ae1b77e4fb1bffa6b23be7bd20e514b8ba7b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f9f9ae1b77e4fb1bffa6b23be7bd20e514b8ba7b | 2015-01-31 10:05:24+01:00 |
avcodec/svq1dec: Add assert to ensure "stages >= 0"
This is currently always true, the assert protects against
future changes to the code breaking this assumtation
Signed-off-by: Michael Niedermayer <[email protected]>
| 741b56fceece2b2de53466b952ed60b61544cc60 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/741b56fceece2b2de53466b952ed60b61544cc60 | 2015-02-03 23:03:38+01:00 |
avformat/hdsenc: Remove redundant NULL pointer checks
Signed-off-by: Michael Niedermayer <[email protected]>
| b1d223301f03741c87a0e0b755c108bbc2eafc93 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b1d223301f03741c87a0e0b755c108bbc2eafc93 | 2015-01-09 15:55:07+01:00 |
build: Use -Werror=format-security
Reduce the chance of introducing a class of bugs quite hard to track.
| fe082998683334e7f573cfe3876810fb80c5249c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/fe082998683334e7f573cfe3876810fb80c5249c | 2015-01-05 15:35:39+01:00 |
avfilter/vf_cropdetect: Unroll 1byte per sample loop
12807 -> 6336 decicycles
Signed-off-by: Michael Niedermayer <[email protected]>
| 60e2c3110ae338fb7ea545f317f952df5acbb349 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/60e2c3110ae338fb7ea545f317f952df5acbb349 | 2014-12-30 02:32:00+01:00 |
tableprint_vlc.h: Should not be checked by checkheaders.
Same as for tableprint.h.
Signed-off-by: Reimar Döffinger <[email protected]>
| bed78064f4a884308ae02aaddc009d388124a574 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/bed78064f4a884308ae02aaddc009d388124a574 | 2014-12-24 12:56:36+01:00 |
assdec: check the right variable
CC: [email protected]
Bug-Id: CID 1257815
| 9745f19ffc9031ce480e43d7cf1053b58100d70f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9745f19ffc9031ce480e43d7cf1053b58100d70f | 2014-12-18 23:27:14+01:00 |
avcodec/x86/mlpdsp_init: Simplify mlp_filter_channel_x86()
Based on patch by Francisco Blas Izquierdo Riera
Commit message partly taken from carl
fixes a compilation
error in mlpdsp_init.c with -fstack-check and some gcc compilers (I
reproduced the issue with gcc 4.7.3) by simplifying the code.
See also https://bugs.gentoo.org/show_bug.cgi?id=471756
$ make libavcodec/x86/mlpdsp_init.o
libavcodec/x86/mlpdsp_init.c: In function ‘mlp_filter_channel_x86’:
libavcodec/x86/mlpdsp_init.c:142:5: error: can’t find a register in
class ‘GENERAL_REGS’ while reloading ‘asm’
libavcodec/x86/mlpdsp_init.c:142:5: error: ‘asm’ operand has impossible
constraints
4551 -> 4509 dezicycles
Reviewed-by: Ramiro Polla <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 03f39fbb2a558153a3c464edec1378d637a755fe | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/03f39fbb2a558153a3c464edec1378d637a755fe | 2015-02-21 16:05:41+01:00 |
avcodec/indeo3: ensure offsets are non negative
Signed-off-by: Michael Niedermayer <[email protected]>
| 368642361f3a589d7b0c23ea327d988edb434e3f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/368642361f3a589d7b0c23ea327d988edb434e3f | 2014-12-18 18:57:27+01:00 |
wavdec: refactor wav_read_header()
Make it more readable and display an error message in case an invalid
header is detected (the current version just returns
AVERROR_INVALIDDATA)
Signed-off-by: Michael Niedermayer <[email protected]>
| 1a971d33ebedff3cae01ee81da4fa74302a91492 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1a971d33ebedff3cae01ee81da4fa74302a91492 | 2014-12-19 22:39:29+01:00 |
avformat/wavenc: check return value of strftime()
Fixes CID1257006
Signed-off-by: Michael Niedermayer <[email protected]>
| 308429e124b97337a768839c1d5091900e974e7e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/308429e124b97337a768839c1d5091900e974e7e | 2014-12-09 16:15:40+01:00 |
mkv: Validate ASS Start and End fields
CC: [email protected]
| 69c1fe7c9c9bc85eebfc02c6a19caf7e88cd74ff | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/69c1fe7c9c9bc85eebfc02c6a19caf7e88cd74ff | 2014-12-03 13:08:41+00:00 |
lavu/imgutils: remove redundant and wrong check in av_image_fill_arrays
| 29208e6dcf944bbea696d37a354a8bac9b552709 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/29208e6dcf944bbea696d37a354a8bac9b552709 | 2014-11-27 14:24:16+01:00 |
Include stddef from snow_dwt.h.
Fixes make checkheaders.
| 0e3ea5b28a32fc068322f3482cd147a787cb9855 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0e3ea5b28a32fc068322f3482cd147a787cb9855 | 2014-11-25 02:00:27+01:00 |
mov: check ff_get_wav_header() return value
CC: [email protected]
Bug-Id: CID 717497
| 2007082d2db25f9305b8a345798b840ea7784fdb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/2007082d2db25f9305b8a345798b840ea7784fdb | 2014-11-18 00:40:06+01:00 |
avcodec/hevc_ps: Check return code from pps_range_extensions()
Fixes out of array read
Fixes: asan_heap-oob_177e222_885_cov_1532528832_MERGE_D_TI_3.bit
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 9f9440bd8122cc8798139c9370db0873a24ae14b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9f9440bd8122cc8798139c9370db0873a24ae14b | 2014-11-27 03:01:32+01:00 |
avformat/dtsdec: dts_probe: check reserved bit, check lfe, check sr_code similarity
Fixes misdetection of s16le
Fixes Ticket4109
Signed-off-by: Michael Niedermayer <[email protected]>
| 0dba982bb4f711447fcbb62d381d24f820c35084 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0dba982bb4f711447fcbb62d381d24f820c35084 | 2014-11-20 00:21:09+01:00 |
svq1enc: check ff_get_buffer return value
CC: [email protected]
Bug-Id: CID 747723
| 59846452af762f6af5ced4399e8dcd709ca50fcd | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/59846452af762f6af5ced4399e8dcd709ca50fcd | 2014-11-13 01:41:27+01:00 |
aacsbr: change order of operation to prevent out of array read
CC: [email protected]
Bug-Id: CID 732250
| 930ffd46e1e742674aa7cc1c2450020c63b5015b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/930ffd46e1e742674aa7cc1c2450020c63b5015b | 2014-11-04 09:28:45-05:00 |
libavformat/mxfdec.c refactor resolving MultiDescriptor and remove essence group hack
I think this is a better way to deal with single frame essence data then my
previous way.
Reviewed-by: Tomas Härdin <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 4f69477870dd6a2d1a7fffa91d48d0a9bcef6640 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/4f69477870dd6a2d1a7fffa91d48d0a9bcef6640 | 2014-12-04 23:31:37+01:00 |
lavc/options: initialize pkt_timebase
It's default in option_table.h is 0, but without this fix it is represented as 0/0.
Signed-off-by: Lukasz Marek <[email protected]>
| 01974a58df40f183c46b1cf3e37edb020716c8be | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/01974a58df40f183c46b1cf3e37edb020716c8be | 2014-11-16 01:13:38+01:00 |
motion_est: remove dead code
mb_type is initialized to 0 and never updated before the check.
Bug-Id: CID 1238782
| 240b22afe14ef477da1b439b9ed7bca6cc7d6c26 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/240b22afe14ef477da1b439b9ed7bca6cc7d6c26 | 2014-11-03 10:15:53-05:00 |
avcodec/vdpau: fix render2() check
Signed-off-by: Michael Niedermayer <[email protected]>
| 0e57c051181c06d9a3468d5e072ded827ed09a53 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0e57c051181c06d9a3468d5e072ded827ed09a53 | 2014-10-06 16:23:36+02:00 |
Check for oom in the dirac parser.
Fixes ticket #3996.
| 80ca627abb53d9e563f6ce9c52a05a50738a28d0 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/80ca627abb53d9e563f6ce9c52a05a50738a28d0 | 2014-10-02 09:31:41+02:00 |
avcodec/gifdec: factorize interleave end handling out
also change it to a loop
Fixes out of array access
Fixes: asan_heap-oob_ca5410_8_asan_heap-oob_ca5410_97_ID_LSD_Size_Less_Then_Data_Inter_3.gif
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 8f1457864be8fb9653643519dea1c6492f1dde57 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8f1457864be8fb9653643519dea1c6492f1dde57 | 2014-10-03 20:20:23+02:00 |
configure: Use the right variables in check_host_cpp
HOSTCPPFLAGS and HOSTCFLAGS are only set in config.mak.
Signed-off-by: Martin Storsjö <[email protected]>
| 3f2c70355ab722bc9f741bd3ed8224c7cfb62379 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3f2c70355ab722bc9f741bd3ed8224c7cfb62379 | 2014-09-17 22:53:26+03:00 |
avcodec/subviewerdec: add some memory checks
| 947a5111dd58fc97127abf84235c7c26b88734fc | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/947a5111dd58fc97127abf84235c7c26b88734fc | 2014-09-21 18:41:45+02:00 |
build: simplify libwebp check
Tested (compilation and runtime) with libwebp 0.2.0, 0.2.1 and 0.4.1.
| 864d124bb7aa533764f5e4b6063e1615d6815d02 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/864d124bb7aa533764f5e4b6063e1615d6815d02 | 2014-09-15 23:54:34+02:00 |
wavpackenc: make assert more thorough
It was only validating that normal data wasn't filling the buffer.
However, extra data may be written afterwards.
Signed-off-by: Michael Niedermayer <[email protected]>
| e32eddaa51ad6e84ce9592b9634a788fcda9bad3 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e32eddaa51ad6e84ce9592b9634a788fcda9bad3 | 2014-08-22 12:30:10+02:00 |
x86/me_cmp: combine sad functions into a single macro
No point in having the sad8 functions separate now that the loop is no
longer unrolled.
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: James Almer <[email protected]>
| 77f9a81ccaadb34f309dc8922e8939442e4e81aa | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/77f9a81ccaadb34f309dc8922e8939442e4e81aa | 2014-09-17 23:52:36-03:00 |
lavu/opt: update tests
In general this commit prepares opt tests to be added to fate.
The commit set some non-zero defaults for test options.
It allows to check if defaults are really set.
Added printing of default values.
Added more cases for testing av_set_options_string
Signed-off-by: Lukasz Marek <[email protected]>
| b54effba4f173560361a697304c0395677e12d6c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b54effba4f173560361a697304c0395677e12d6c | 2014-11-11 21:52:26+01:00 |
hevc: reorder loops
iterate over memory in a more continuous order
Signed-off-by: Anton Khirnov <[email protected]>
| d1b1c3bb5ef1bee409c06c3bcacfb8674e1cb574 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d1b1c3bb5ef1bee409c06c3bcacfb8674e1cb574 | 2014-08-12 09:57:05+00:00 |
avcodec/pnm: check buf[0] before using buf[1]
Fixes CSA warning
Signed-off-by: Michael Niedermayer <[email protected]>
| b4d525eb634666e39745585b17c35faed54352b6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b4d525eb634666e39745585b17c35faed54352b6 | 2014-08-03 14:01:03+02:00 |
avutil/cpu: check av_parse_cpu_caps() table during cpu-test
Signed-off-by: Michael Niedermayer <[email protected]>
| 6b1df5544e8df9ad95512c638df2580856389fae | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6b1df5544e8df9ad95512c638df2580856389fae | 2014-08-06 14:27:45+02:00 |
avdevice/x11grab: fix cursor drawing in multi-screen setup
The code uses XFixes to retrieve the cursor coordinates, but XFixes
gives no information of what screen the pointer is on; this results in
always drawing the cursor on the captured screen even if the mouse
pointer was on another screen.
For example, when capturing from screen 1 (i.e. -f x11grab -i ":0.1")
the cursor was being drawn in the captured image even when the mouse
pointer was actually on screen 0, which is wrong and visually confusing.
Use XQueryPointer to check that the pointer is actually on the screen
which is being captured.
Signed-off-by: Antonio Ospite <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 69c34a6ac986e31b5286a1d566617ec25b93e6a7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/69c34a6ac986e31b5286a1d566617ec25b93e6a7 | 2014-09-09 02:22:06+02:00 |
hevc: wait proper position for tmvp
The position is either rounded or not checked, so delay the wait to
check the proper value.
Reviewed-by: Mickaël Raulet <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| ed248e7f70d98abe099392e154d1cdd0f15faa3c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ed248e7f70d98abe099392e154d1cdd0f15faa3c | 2014-07-22 18:11:50+02:00 |
avcodec/mlp_parser: check ff_combine_frame() return code
Fixes CID602338
Signed-off-by: Michael Niedermayer <[email protected]>
| 2d15554850799346472683b4a2df05878dcfad48 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/2d15554850799346472683b4a2df05878dcfad48 | 2014-07-04 20:29:40+02:00 |
avcodec/dvbsubdec: restructure version check
Signed-off-by: Michael Niedermayer <[email protected]>
| 9a11b33a2d9db18cd9f606952e2d1acb72f883aa | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9a11b33a2d9db18cd9f606952e2d1acb72f883aa | 2014-06-15 19:56:09+02:00 |
mpegvideoenc: check color_range
Rework the comparison into something simpler to understand.
| d7705be9617ed691c7a2924a2088de2d96f38af1 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d7705be9617ed691c7a2924a2088de2d96f38af1 | 2014-06-10 19:41:59-04:00 |
pgssubdec: handle more complex PGS scenarios
Add ability to handle multiple palettes and objects simultaneously.
Each simultaneous object is given its own AVSubtitleRect.
Note that there can be up to 64 currently valid objects, but only
2 at any one time can be "presented".
Signed-off-by: Anton Khirnov <[email protected]>
| 253d0be6a1ecc343d29ff8e1df0ddf961ab9c772 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/253d0be6a1ecc343d29ff8e1df0ddf961ab9c772 | 2014-06-30 12:18:58+02:00 |
avcodec/indeo5: Fix infinite loop in skip_hdr_extension()
Signed-off-by: Michael Niedermayer <[email protected]>
| 103f9c261a68299125b99c542e20f5541051d2c9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/103f9c261a68299125b99c542e20f5541051d2c9 | 2014-06-15 03:50:30+02:00 |
check: add libavcodec/vda_internal.h to SKIPHEADERS-$(CONFIG_VDA)
| 132a5711a2aaaa6c7d139a0a30046a6ad41b64aa | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/132a5711a2aaaa6c7d139a0a30046a6ad41b64aa | 2014-05-20 00:43:51+02:00 |
avformat/http: remove never twice executable loop
Fixes CID1197069
Reviewed-by: Tomas Härdin <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 56193d33be93669f948ccd68ea2451fb24b91245 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/56193d33be93669f948ccd68ea2451fb24b91245 | 2014-05-14 20:44:15+02:00 |
hevcdsp: add missing header include
Fixes make checkheaders
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| fa23190a7ac96d17f03a352239a7ddaaadf8d559 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/fa23190a7ac96d17f03a352239a7ddaaadf8d559 | 2014-05-10 14:55:03+02:00 |
lavc: Add new VDA hwaccel
It leverages the new hwaccel 1.2 features:
- get_buffer2 is never called
- the internal context is automatically initialized/deinitialized
Signed-off-by: Luca Barbato <[email protected]>
| 67afcefb35932b420998f6f3fda46c7c85848a3f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/67afcefb35932b420998f6f3fda46c7c85848a3f | 2014-05-11 15:00:03+02:00 |
avformat/movenc: Check ff_put_wav_header() return code
Fixes CID1212260
Signed-off-by: Michael Niedermayer <[email protected]>
| dc6b99d6b20e832a7d353474c2d093f8b2fb17d2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/dc6b99d6b20e832a7d353474c2d093f8b2fb17d2 | 2014-05-10 03:51:49+02:00 |
avformat/pmpdec: remove cur_dts timestamp hack
It appears the demuxer works fine without it
Fixes Ticket3534
Signed-off-by: Michael Niedermayer <[email protected]>
| 5b19fc7aae986d6fa3d689f581b37e4bfba4f2d0 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5b19fc7aae986d6fa3d689f581b37e4bfba4f2d0 | 2014-04-21 01:29:08+02:00 |
ffmpeg: fix mixed merged & split side data with the stream->packet hack
Signed-off-by: Michael Niedermayer <[email protected]>
| e48fb4e1a5a9796b4fb0fee7212404517d236aa2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e48fb4e1a5a9796b4fb0fee7212404517d236aa2 | 2014-04-18 01:01:38+02:00 |
avcodec/vp8: fix checking vp7_feature_value_size
Fixes CID1197061
Signed-off-by: Michael Niedermayer <[email protected]>
| 28f8114bd240712e5c2a9b52df519858fccc267c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/28f8114bd240712e5c2a9b52df519858fccc267c | 2014-04-06 18:10:47+02:00 |
x86/synth_filter: improve FMA version
Replace mulps+subps with fnmaddps, resulting in two less instructions inside the
inner loops.
About 1% faster FMA3 performance.
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| aa1f38015cb0d04a5c50a8957dd7aba79f0d8882 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/aa1f38015cb0d04a5c50a8957dd7aba79f0d8882 | 2014-03-17 21:04:15+01:00 |
matroskaenc: allow override of "writing application" tag
Signed-off-by: Tim Walker <[email protected]>
CC: [email protected]
| 0092c1dd8dac2d9e185b58503b447a0d3fb5230d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0092c1dd8dac2d9e185b58503b447a0d3fb5230d | 2014-03-08 18:56:49+01:00 |
g2meet: validate bpp and bitmasks in the display info
Signed-off-by: Kostya Shishkov <[email protected]>
| 77fbc032655534ab82627c982192323f2e0d5f18 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/77fbc032655534ab82627c982192323f2e0d5f18 | 2014-02-16 16:32:53+01:00 |
avformat/utils: factorize h264/hevc checks out in compute_pkt_fields()
Signed-off-by: Michael Niedermayer <[email protected]>
| f288e1b67cbab43c0591483ea323ce1e83df74cb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f288e1b67cbab43c0591483ea323ce1e83df74cb | 2014-02-22 14:31:23+01:00 |
doc/examples/decoding_encoding: Check all av_samples_get_buffer_size() returns
Fixed CID1135755
Signed-off-by: Michael Niedermayer <[email protected]>
| a85a718f26ba9078613fe735a2b7d4bafeaa7b65 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a85a718f26ba9078613fe735a2b7d4bafeaa7b65 | 2014-01-31 03:27:37+01:00 |
armv6: Accelerate ff_imdct_half for general case (mdct_bits != 6)
The previous implementation targeted DTS Coherent Acoustics, which only
requires mdct_bits == 6. This relatively small size lent itself to
unrolling the loops a small number of times, and encoding offsets
calculated at assembly time within the load/store instructions of each
iteration.
In the more general case (codecs such as AAC and AC3) much larger arrays
are used - mdct_bits == [8, 9, 11]. The old method does not scale for
these cases, so more integer registers are used with non-unrolled versions
of the loops (and with some stack spillage). The postrotation filter loop
is still unrolled by a factor of 2 to permit the double-buffering of some
VFP registers to facilitate overlap of neighbouring iterations.
I benchmarked the result by measuring the number of gperftools samples
that hit anywhere in the AAC decoder (starting from aac_decode_frame())
or specifically in ff_imdct_half_c / ff_imdct_half_vfp, for the same
example AAC stream:
Before After
Mean StdDev Mean StdDev Confidence Change
aac_decode_frame 2368.1 35.8 2117.2 35.3 100.0% +11.8%
ff_imdct_half_* 457.5 22.4 251.2 16.2 100.0% +82.1%
Signed-off-by: Martin Storsjö <[email protected]>
| 5c22e8e4ad0852d61d5c4ba8d67d33fd72339497 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5c22e8e4ad0852d61d5c4ba8d67d33fd72339497 | 2014-07-18 01:34:08+03:00 |
pmpdec: check that there is at least one audio packet.
The code cannot handle there being none, but that should not happen for
valid files.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC:[email protected]
| 1b5d065ca722eb8028c7a08e054b6da3419faf5d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1b5d065ca722eb8028c7a08e054b6da3419faf5d | 2014-01-03 16:40:22+01:00 |
hevc: clip pixels when transquant bypass is used
The reconstructed picture should always be clipped (see section 8.6.5),
previously we did not clip coding units where
cu_transquant_bypass_flag == 1.
Sample-Id: 00001325-google
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
Signed-off-by: Luca Barbato <[email protected]>
| a246d06fe0dc6c2ea65e95327624b4537ff9bd0d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a246d06fe0dc6c2ea65e95327624b4537ff9bd0d | 2014-01-21 11:58:37+01:00 |
rv30: fix extradata size check.
It has been checking the number of bits in the offset instead of the
actual offset.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC:[email protected]
| a6a2282c25abe43e352010a7c3fbc92994c0bc1c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a6a2282c25abe43e352010a7c3fbc92994c0bc1c | 2014-01-03 16:38:33+01:00 |
configure: check that pthreads is compatible with compiler.
In particular the mutex initialization for example won't actually
compile with e.g. gcc 2.95.
Signed-off-by: Reimar Döffinger <[email protected]>
| 311f61e1b4d508eb31c4c82c3dcd8137da4111d4 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/311f61e1b4d508eb31c4c82c3dcd8137da4111d4 | 2013-12-30 12:38:04+01:00 |
mpc7: check output buffer size before decoding
| c8b5c4d27409dfdcec80868686b173ba446c998b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/c8b5c4d27409dfdcec80868686b173ba446c998b | 2011-10-02 10:34:39-04:00 |
tools/probetest: Check av_realloc() return code
Fixess CID1135761
Signed-off-by: Michael Niedermayer <[email protected]>
| 37437d97a8e6c72240c75b0b43fa7cb193f871f7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/37437d97a8e6c72240c75b0b43fa7cb193f871f7 | 2013-12-11 22:29:22+01:00 |
af_aresample: remove only use of array compound literals with non-const initializers in FFmpeg.
Some older compilers might have particular trouble with them,
and they do not really seem worth it to me.
Signed-off-by: Reimar Döffinger <[email protected]>
| 3cc0f335fe14d05f6f403b09586545f73cc16bc6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3cc0f335fe14d05f6f403b09586545f73cc16bc6 | 2013-12-30 12:38:04+01:00 |
libavformat/mpegts: expose raw packet size
We cannot easily determine if an mpeg TS's packet size is DVHS, FEC
or so on, for that we need to expose the internal raw_packet_size
field.
Signed-off-by: Leandro Dorileo <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| f9b997c337873dad99f7fd505588b260febaf32b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f9b997c337873dad99f7fd505588b260febaf32b | 2013-12-19 19:06:32+01:00 |
avfilter/vf_pad: fix req_end
Fixes out of array accesses
Fixes Ticket3190
Signed-off-by: Michael Niedermayer <[email protected]>
| 0cc5011f9a1b05132f9a20a71feb031f30a8a53b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0cc5011f9a1b05132f9a20a71feb031f30a8a53b | 2013-12-03 04:09:10+01:00 |
avfilter/vf_mp: fix missing FF_API_XVMC check
Signed-off-by: Michael Niedermayer <[email protected]>
| 6f5c36832dfc28d8ace0e54eb24a2964d32424c3 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6f5c36832dfc28d8ace0e54eb24a2964d32424c3 | 2013-11-18 01:22:30+01:00 |
avformat/utils: Fix pts_wrap_behavior calculation with negative first_dts
Signed-off-by: Michael Niedermayer <[email protected]>
| dd5f925927d6aaf01716a1a802a428340eeea077 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/dd5f925927d6aaf01716a1a802a428340eeea077 | 2013-12-04 02:18:04+01:00 |
avcodec/pthread: check packet buffer allocation
Signed-off-by: Michael Niedermayer <[email protected]>
| 841c0aafa570871fd829f265502a3a185e3d5100 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/841c0aafa570871fd829f265502a3a185e3d5100 | 2013-11-25 02:22:43+01:00 |
avcodec/jpeglsdec: check err value for ls_get_code_runterm()
Fixes infinite loop
Fixes Ticket3086
Signed-off-by: Michael Niedermayer <[email protected]>
| cc0e47b55096361723b364afa43b79a3f5619cdc | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/cc0e47b55096361723b364afa43b79a3f5619cdc | 2013-10-30 23:32:51+01:00 |
lavf/spdifdec: fix demuxing of AAC in IEC 61937
Return value of avpriv_aac_parse_header() is not checked correctly. Fix
it.
Signed-off-by: Anssi Hannula <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| f86387b6c2b11650cb9d5a8fd886be76e48c665b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f86387b6c2b11650cb9d5a8fd886be76e48c665b | 2013-10-29 22:45:27+01:00 |
avformat/mov: only force parsing for video tracks if stss is empty
Fixes playback of some AAC streams, which are otherwise mangled by the
parser, and stss is typically only valid for video anyway.
Signed-off-by: Michael Niedermayer <[email protected]>
| 019247bdc326a90bf20d3ce5d2413cc642e8bb08 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/019247bdc326a90bf20d3ce5d2413cc642e8bb08 | 2013-11-08 11:31:02+01:00 |
avfilter/lswsutils: dont override the default scaler
This should make no difference as this code is only used by removelogo which
seems to refuse to use masks of different size.
Signed-off-by: Michael Niedermayer <[email protected]>
| b8866783c6a855643a3869020ac5241b12f7d97a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b8866783c6a855643a3869020ac5241b12f7d97a | 2013-10-07 13:28:13+02:00 |
Remove an incorrect and unneeded assert in the amr demuxer.
Asserting a specific codec is not correct since libavformat
allows forcing a codec, an equivalent check is in the
following line.
Fixes ticket #3001.
| d87ff555025e90ef285425216c29be95034e2485 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d87ff555025e90ef285425216c29be95034e2485 | 2013-09-29 07:11:56+02:00 |
avcodec/mpegvideo_enc: check qmin/qmax
Fixes Ticket2990
Signed-off-by: Michael Niedermayer <[email protected]>
| bb4b041df351e49a0fa16007fb4505adea0836d8 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/bb4b041df351e49a0fa16007fb4505adea0836d8 | 2013-09-25 00:44:17+02:00 |
FATE: update HEVC tests
This changes the tests that used the internal hevc checksum to use framecrc
Signed-off-by: Anton Khirnov <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
Conflicts:
tests/fate/hevc.mak
tests/ref/fate/hevc-conformance-DBLK_A_SONY_3
tests/ref/fate/hevc-conformance-DBLK_B_SONY_3
tests/ref/fate/hevc-conformance-DBLK_C_SONY_3
tests/ref/fate/hevc-conformance-DELTAQP_B_SONY_3
tests/ref/fate/hevc-conformance-DELTAQP_C_SONY_3
tests/ref/fate/hevc-conformance-POC_A_Bossen_3
Merged-by: Michael Niedermayer <[email protected]>
| 7b0f61a93604cceab66302aafdfdbc2336056c9b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7b0f61a93604cceab66302aafdfdbc2336056c9b | 2013-10-27 10:15:56+01:00 |
vp3: Check the framerate for validity
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
Signed-off-by: Martin Storsjö <[email protected]>
| 6fc8226e29055858f28973bb3d27b63b3b65e616 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6fc8226e29055858f28973bb3d27b63b3b65e616 | 2013-09-16 11:04:52+03:00 |
ape demuxer: check for EOF in potentially long loops
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
| 488b2984fece7ad0c2596826fee18e74aa904667 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/488b2984fece7ad0c2596826fee18e74aa904667 | 2013-09-02 19:28:55+02:00 |
x86: avcodec: Use convenience macros to check for CPU flags
| 6369ba3c9cc74becfaad2a8882dff3dd3e7ae3c0 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6369ba3c9cc74becfaad2a8882dff3dd3e7ae3c0 | 2013-08-29 13:07:37+02:00 |
asfdec: remove "ignoring invalid packet_obj_size" code
The code is no longer needed
Signed-off-by: Michael Niedermayer <[email protected]>
| 6df20d0d350793b89c3ff541cf453ae69cf99beb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6df20d0d350793b89c3ff541cf453ae69cf99beb | 2013-07-30 03:19:39+02:00 |
vf_fps: use double constants for default/min/max for start_time
When using AV_NOPTS_VALUE (which expands to INT64_C(0x8000000000000000))
as union initializer for a double field, the c99 converter needs to
interpret this constant when filling the union initializer, and it is
interpreted as a positive value.
When converting AV_NOPTS_VALUE to a double, MSVC 2010 ends up with
the same positive value as the c99 converter, while MSVC 2012 gets
a negative value.
This results in an infite loop in various FATE tests on MSVC 2012.
Signed-off-by: Martin Storsjö <[email protected]>
| cb8f70c96e14c1b4824ef23d21d78d10fc5a4b93 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/cb8f70c96e14c1b4824ef23d21d78d10fc5a4b93 | 2013-08-28 17:54:47+03:00 |
indeo: Bound-check before applying motion compensation
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
| 25a6666f6c07c6ac8449a63d7fbce0dfd29c54cd | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/25a6666f6c07c6ac8449a63d7fbce0dfd29c54cd | 2013-07-15 11:29:59+02:00 |
lavf: fix documentation for avoid_negative_ts
Prefer "non-negative" over "positive", the former is more accurate.
| d06ae0d791cde393b9752aaaf242a48c7f08b540 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d06ae0d791cde393b9752aaaf242a48c7f08b540 | 2013-07-05 00:58:03+02:00 |
idcin: check return value of av_malloc()
Signed-off-by: Paul B Mahol <[email protected]>
| 16e0416fa47ca391214ad20d162240e5d492bf0e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/16e0416fa47ca391214ad20d162240e5d492bf0e | 2013-07-01 22:04:48+00:00 |
configure: Check for support for labels in the inline assembly
Use this for enabling the ppc timer.h implementation only on
assemblers that support labels in the inline assembly.
Signed-off-by: Martin Storsjö <[email protected]>
| ef5b70affc6376bfeadd1ff649b79bad9a124fa8 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ef5b70affc6376bfeadd1ff649b79bad9a124fa8 | 2013-07-11 18:53:02+03:00 |
avutil/utils: check and warn about llrint() brokenness
Such broken llrint() exist for example on netbsd
Signed-off-by: Michael Niedermayer <[email protected]>
| 1ba196a10d1d0bddc2fd7774dd7b95716bbdb7bf | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1ba196a10d1d0bddc2fd7774dd7b95716bbdb7bf | 2013-06-15 11:22:22+02:00 |
ftp: enhanced error handling
Add error codes to expected codes to make responses faster.
Success of a command is validated by comparing code to a success code.
| ddbcc48b646737c8bff7f8e28e0a69dca65509cf | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ddbcc48b646737c8bff7f8e28e0a69dca65509cf | 2013-05-31 16:54:03+02:00 |
wavpack: check that there aren't too many blocks per packet
| eae1b8451a4d606dd457736ce7240ee12535fb36 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/eae1b8451a4d606dd457736ce7240ee12535fb36 | 2013-05-28 17:47:17+02:00 |
avformat/mov: Try to detect and support files with invalid sample sizes
Fixes Ticket2605
Signed-off-by: Michael Niedermayer <[email protected]>
| 29e97cd6c3f2307e79b48a9e02cd0c6e055476ae | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/29e97cd6c3f2307e79b48a9e02cd0c6e055476ae | 2013-05-30 00:32:36+02:00 |
lavfi/mp/mcdeint: avoid uninited data read
Do not read padding or out-of-buffer values when computing the output
value for a pixel close to the image buffer edge.
This avoids non visible artifacts which affected the output checksum.
See thread:
Subject: [FFmpeg-devel] [PATCH] lavfi/mp/mcdeint: avoid uninited data read
Date: Thu, 30 May 2013 18:57:14 +0200
| 3a2b9911bffeffc3fc0541df3b4f6d492e122714 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3a2b9911bffeffc3fc0541df3b4f6d492e122714 | 2013-06-01 22:34:50+02:00 |
j2k/jpeg2000: check cblk size
This is based on j2k FCD which is ambigous thus the limit
might be tighter.
Signed-off-by: Michael Niedermayer <[email protected]>
| cb39dfb87009106395689373f7c1bd0df1dead17 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/cb39dfb87009106395689373f7c1bd0df1dead17 | 2013-05-26 20:15:50+02:00 |
img2dec: dont set start_time/duration to invalid values
Signed-off-by: Michael Niedermayer <[email protected]>
| a753776ff5d85994952f0abcb77fa49faf76b475 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a753776ff5d85994952f0abcb77fa49faf76b475 | 2013-05-25 12:05:32+02:00 |
x86: sbrdsp: Implement SSE2 qmf_deint_bfly
Sandybridge: 47 cycles
Having a loop counter is a 7 cycle gain.
Unrolling is another 7 cycle gain.
Working in reverse scan is another 6 cycles.
Signed-off-by: Diego Biurrun <[email protected]>
| 5a97469a4fd12ef0327292ad6062f89a5e055a62 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5a97469a4fd12ef0327292ad6062f89a5e055a62 | 2013-05-03 18:23:14+02:00 |
ffmpeg: Check dts before use in non monotone dts workaround
Signed-off-by: Michael Niedermayer <[email protected]>
| 6b2fbdb047dac1e3a6c6281226df2b76a3896dad | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6b2fbdb047dac1e3a6c6281226df2b76a3896dad | 2013-05-03 14:55:20+02:00 |
vc1dec: Update destination pointers in context for fields
This replaces a large number of checks for the second field by
fixing the pointers when they are setup.
This should also fix I/BI field pictures.
Changes checksums for vc1_sa10143, the file becomes slightly closer
to what the reference decoder outputs.
Based on "vc1dec: the second field is written wrong to the picture"
by Sebastian Sandberg <[email protected]>.
Signed-off-by: Martin Storsjö <[email protected]>
| 0313653928b47c3b0e493c08c66bb1a374695f7c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0313653928b47c3b0e493c08c66bb1a374695f7c | 2013-05-15 11:38:49+03:00 |
ismindex: check mkdir()s return code
Fixes CID733724
Signed-off-by: Michael Niedermayer <[email protected]>
| ebea370dc3909aa182bae4c728b83516a904beca | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ebea370dc3909aa182bae4c728b83516a904beca | 2013-04-21 19:53:18+02:00 |
lavf/gifdec: add loop support.
Loop is ignored by default.
| a16c20569db6cecceb988b5b6ecac451af84e15d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a16c20569db6cecceb988b5b6ecac451af84e15d | 2013-04-20 00:05:35+02:00 |
avutil/buffer: remove redundant memory poisoning
Found-by: ubitux
Signed-off-by: Michael Niedermayer <[email protected]>
| 8e944891ce95ec8cf9f492d41cb9dac869449210 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8e944891ce95ec8cf9f492d41cb9dac869449210 | 2013-03-24 02:21:42+01:00 |
avutil/avutil_version: Run checks just once
This ensures that applications that call avutil_version() often
would not run the checls every time
Signed-off-by: Michael Niedermayer <[email protected]>
| e701cd96c2d5dc034e7615967d208db3d953e111 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e701cd96c2d5dc034e7615967d208db3d953e111 | 2013-04-16 17:04:16+02:00 |
avutil/buffer: support memory poisoning
Signed-off-by: Michael Niedermayer <[email protected]>
| 058c0029322f63728b4e9e35c6f110e05a17d065 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/058c0029322f63728b4e9e35c6f110e05a17d065 | 2013-03-24 01:44:48+01:00 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.