d817b57d36 
								
							
								 
							
						 
						
							
							
								
								tools: fix const specifier for AVInputFormat  
							
							Signed-off-by: Josh de Kock <josh@itanimul.li> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8ce9d88f93 
								
							
								 
							
						 
						
							
							
								
								dnn/native: add native support for divide  
							
							it can be tested with model file generated with below python script:
import tensorflow as tf
import numpy as np
import imageio
in_img = imageio.imread('input.jpg')
in_img = in_img.astype(np.float32)/255.0
in_data = in_img[np.newaxis, :]
x = tf.placeholder(tf.float32, shape=[1, None, None, 3], name='dnn_in')
z1 = 2 / x
z2 = 1 / z1
z3 = z2 / 0.25 + 0.3
z4 = z3 - x * 1.5 - 0.3
y = tf.identity(z4, name='dnn_out')
sess=tf.Session()
sess.run(tf.global_variables_initializer())
graph_def = tf.graph_util.convert_variables_to_constants(sess, sess.graph_def, ['dnn_out'])
tf.train.write_graph(graph_def, '.', 'image_process.pb', as_text=False)
print("image_process.pb generated, please use \
path_to_ffmpeg/tools/python/convert.py to generate image_process.model\n")
output = sess.run(y, feed_dict={x: in_data})
imageio.imsave("out.jpg", np.squeeze(output))
Signed-off-by: Guo, Yejun <yejun.guo@intel.com> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ef79408e97 
								
							
								 
							
						 
						
							
							
								
								dnn/native: add native support for 'mul'  
							
							it can be tested with model file generated from above python script:
import tensorflow as tf
import numpy as np
import imageio
in_img = imageio.imread('input.jpg')
in_img = in_img.astype(np.float32)/255.0
in_data = in_img[np.newaxis, :]
x = tf.placeholder(tf.float32, shape=[1, None, None, 3], name='dnn_in')
z1 = 0.5 + 0.3 * x
z2 = z1 * 4
z3 = z2 - x - 2.0
y = tf.identity(z3, name='dnn_out')
sess=tf.Session()
sess.run(tf.global_variables_initializer())
graph_def = tf.graph_util.convert_variables_to_constants(sess, sess.graph_def, ['dnn_out'])
tf.train.write_graph(graph_def, '.', 'image_process.pb', as_text=False)
print("image_process.pb generated, please use \
path_to_ffmpeg/tools/python/convert.py to generate image_process.model\n")
output = sess.run(y, feed_dict={x: in_data})
imageio.imsave("out.jpg", np.squeeze(output))
Signed-off-by: Guo, Yejun <yejun.guo@intel.com> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								6aa7e07e7c 
								
							
								 
							
						 
						
							
							
								
								dnn/native: add native support for 'add'  
							
							It can be tested with the model file generated with below python script:
import tensorflow as tf
import numpy as np
import imageio
in_img = imageio.imread('input.jpg')
in_img = in_img.astype(np.float32)/255.0
in_data = in_img[np.newaxis, :]
x = tf.placeholder(tf.float32, shape=[1, None, None, 3], name='dnn_in')
z1 = 0.039 + x
z2 = x + 0.042
z3 = z1 + z2
z4 = z3 - 0.381
z5 = z4 - x
y = tf.math.maximum(z5, 0.0, name='dnn_out')
sess=tf.Session()
sess.run(tf.global_variables_initializer())
graph_def = tf.graph_util.convert_variables_to_constants(sess, sess.graph_def, ['dnn_out'])
tf.train.write_graph(graph_def, '.', 'image_process.pb', as_text=False)
print("image_process.pb generated, please use \
path_to_ffmpeg/tools/python/convert.py to generate image_process.model\n")
output = sess.run(y, feed_dict={x: in_data})
imageio.imsave("out.jpg", np.squeeze(output))
Signed-off-by: Guo, Yejun <yejun.guo@intel.com> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								39962072a8 
								
							
								 
							
						 
						
							
							
								
								tools: stop using deprecated av_codec_next()  
							
							Signed-off-by: Josh de Kock <josh@itanimul.li> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								2db37bf4cd 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for zerocodec  
							
							Fixes: Timeout (147sec -> 1sec)
Fixes: 20764/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ZEROCODEC_fuzzer-5068274603917312
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8dee1d7a30 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for screenpresso  
							
							Fixes: Timeout (332 -> 21 sec)
Fixes: 20280/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SCREENPRESSO_fuzzer-6238663432470528
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ffa1561608 
								
							
								 
							
						 
						
							
							
								
								dnn_backend_native_layer_mathbinary: add sub support  
							
							more math binary operations will be added here
Signed-off-by: Guo, Yejun <yejun.guo@intel.com> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								32522b5307 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: limit per frame samples for APE  
							
							APE in its highest compression mode is really slow so even one frame
of millions of samples takes a long time
Fixes: Timeout (too long -> 3sec)
Fixes: 19937/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5751668818051072
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								48b6947821 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Add threshold for ALS  
							
							Fixes: Timeout (253sec -> 16sec)
Fixes: 18668/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ALS_fuzzer-6227155369590784
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								04e524c34b 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Add threshold for IFF_ILBM  
							
							Fixes: Timeout (32 -> 1sec)
Fixes: 20138/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5634665251864576
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Reviewed-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								cc7bf7e05c 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Sort threshold list alphabetically  
							
							This also removes the comments as they are hard to maintain
together with sorted lists
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								5f7727e1c9 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Use codec_tags list  
							
							This should make it much quicker for the fuzzer to test
real relevant codec_tags
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								00447b6f52 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Also Fuzz with CPU optimizations disabled  
							
							This should improve coverage of *_c()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								4b733a7f5f 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Fuzz private options of AC3/E-AC3  
							
							This should improve AC-3 coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								48083f1890 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Fuzz idct_algo value  
							
							This should improve coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								029cc9883f 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for RASC  
							
							Fixes: Timeout(35sec -> 4sec)
Fixes: 19289/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RASC_fuzzer-5676526398078976
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								c1411a1132 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Stop negative block_align and sampling rate  
							
							These are checked for early in avcodec_open2() and do not really test the decoder
but instead waste resources which could be better spend fuzzing the actual decoder
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								5a8877da35 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for dst  
							
							Fixes: Timeout (400sec -> 14sec)
Fixes: 18989/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DST_fuzzer-5175008116867072
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								e52070e89c 
								
							
								 
							
						 
						
							
							
								
								convert_from_tensorflow.py: add support when kernel size is 1*1 with one input/output channel (gray image)  
							
							Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Signed-off-by: Pedro Arthur <bygrandao@gmail.com> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								e3dddf2142 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Also fuzz request_channel_layout  
							
							This should improve coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						5 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								964eb754b4 
								
							
								 
							
						 
						
							
							
								
								tools: add a fuzzer tool for bitstream filters  
							
							Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								5ac8675cb1 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Support setting AV_CODEC_FLAG2_FAST  
							
							This should improve coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								3ae87bb3c1 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Support fuzzing error detection  
							
							This should increase coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								e21ec54fdf 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for VP9  
							
							The threshold is chosen so that the worse frames would together not take
excessive time.
A better solution is welcome!
Fixes: Timeout (308sec ->102ms)
Fixes: 18314/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VP9_fuzzer-5701689176227840
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								de1d3b0925 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for smacker  
							
							Fixes: Timeout (65sec -> 0.5sec)
Fixes: 18072/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SMACKER_fuzzer-5722709366931456
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8ff432eb44 
								
							
								 
							
						 
						
							
							
								
								tools/enum_options: replace the deprecated API  
							
							Signed-off-by: Zhong Li <zhongli_dev@126.com> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								f52e15df0f 
								
							
								 
							
						 
						
							
							
								
								tools/probetest: replace the deprecated API  
							
							Signed-off-by: Zhong Li <zhongli_dev@126.com> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								fd3ee7a92e 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for G2M  
							
							G2M allows large images from small input and also reallocates
multiple buffers on any resolution change.
Fixes: Timeout (22sec -> 5sec)
Fixes: 18022/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_G2M_fuzzer-5089192530411520
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								dff39ea9f0 
								
							
								 
							
						 
						
							
							
								
								dnn: add tf.nn.conv2d support for native model  
							
							Unlike other tf.*.conv2d layers, tf.nn.conv2d does not create many
nodes (within a scope) in the graph, it just acts like other layers.
tf.nn.conv2d only creates one node in the graph, and no internal
nodes such as 'kernel' are created.
The format of native model file is also changed, a flag named
has_bias is added, so change the version number.
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Signed-off-by: Pedro Arthur <bygrandao@gmail.com> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8caa716667 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for CFHD  
							
							Fixes: Timeout (18sec -> 5sec)
Fixes: 17977/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-5186112762413056
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								000494fed9 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust ffwavesynth threshold  
							
							ffwavesynth can produce large amounts of data relatively slowly on very small input
Fixes: Timeout (60sec -> 9sec)
Fixes: 17970/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFWAVESYNTH_fuzzer-5689121279836160
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								fe63ace98e 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for DXV  
							
							Fixes: TImeout (20sec -> 4sec)
Fixes: 17735/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DXV_fuzzer-5723368317255680
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								1d3f7e6a72 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for EATGV  
							
							Fixes: Timeout (26sec -> 9sec)
Fixes: 17645/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EATGV_fuzzer-5717065922510848
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								9e32c47102 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for SCPR  
							
							Fixes: Timeout (46sec -> 7sec)
Fixes: 17644/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SCPR_fuzzer-5715704283660288
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								cf7f35ace5 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for MSZH  
							
							Fixes: Timeout (250sec -> 6sec)
Fixes: 17627/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MSZH_fuzzer-5643017129558016
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ec9d48da19 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Also fuzz keyframe & disposal flags  
							
							This should improve coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								cc50d113c8 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Also fuzz codec_tag  
							
							This should improve coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								2d3ccfa863 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Also fuzz FF_COMPLIANCE_EXPERIMENTAL  
							
							This should improve coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								0c07eb5205 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Also fuzz block_align  
							
							This should improve coverage
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								47b0d0812e 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust VP7 threshold  
							
							Fixes: Timeout (110sec -> 10sec)
Fixes: 17705/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VP7_fuzzer-5765834135306240
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Reviewed-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ec4ad6fb9e 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Print samples decoded like pixels  
							
							Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								db614008bc 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Check number of all samples decoded too, like max pixels  
							
							Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								68c80dc312 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Set max_samples  
							
							Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								59163731e9 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: consider potential padding/edge in pixel threshold  
							
							Fixes: Timeout (73sec ->30ms)
Fixes: 16921/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DIRAC_fuzzer-5689384594046976
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								5fe6a9db15 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for MSS2  
							
							The decoder is slow
Fixes: Timeout (94sec -> 7sec)
Fixes: 16417/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MSS2_fuzzer-5711668050395136
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ba24b24aab 
								
							
								 
							
						 
						
							
							
								
								tools/patcheck: remove gcc-2.95 compat check  
							
							this conflicts with the current contributing guidance:
http://ffmpeg.org/developer.html#Contributing 
FFmpeg is programmed in the ISO C90 language with a few additional
features from ISO C99, namely:
...
for loops with variable definition (‘for (int i = 0; i < 8; i++)’);
Signed-off-by: James Zern <jzern@google.com> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								87a7fc692d 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: fuzz channels and sample_rate too  
							
							This should increase coverage over more audio decoders.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								b2683c66b2 
								
							
								 
							
						 
						
							
							
								
								libavfilter/dnn: add layer maximum for native mode.  
							
							The reason to add this layer is that it is used by srcnn in vf_sr.
This layer is currently ignored in native mode. After this patch,
we can add multiple outputs support for native mode.
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Signed-off-by: Pedro Arthur <bygrandao@gmail.com> 
							
						 
						6 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								65589ad553 
								
							
								 
							
						 
						
							
							
								
								tools/target_dec_fuzzer: Adjust threshold for binkvideo  
							
							Fixes: Timeout (89sec -> 7sec)
Fixes: 17035/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_BINK_fuzzer-5737222422134784
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg 
Reviewed-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> 
							
						 
						6 years ago