GEN libavutil/libavutil.version GEN libavfilter/libavfilter.version GEN libswscale/libswscale.version GEN libswresample/libswresample.version GEN libpostproc/libpostproc.version GEN libavresample/libavresample.version GEN libavfilter/libavfilter.pc GEN libavresample/libavresample.pc CC libpostproc/postprocess.o GEN libpostproc/libpostproc.pc GEN libswresample/libswresample.pc GEN libswscale/libswscale.pc GEN libavutil/libavutil.pc HOSTCC doc/print_options.o CC libavfilter/af_acontrast.o CC libavfilter/aeval.o TXT doc/fate.txt CC libavfilter/af_acopy.o CC libavfilter/af_acrossover.o CC libavfilter/af_acrusher.o CC libavfilter/af_adeclick.o CC libavfilter/af_adelay.o CC libavfilter/af_adenorm.o CC libavfilter/af_aderivative.o CC libavfilter/af_aecho.o CC libavfilter/af_aemphasis.o CC libavfilter/af_afade.o CC libavfilter/af_aformat.o CC libavfilter/af_afreqshift.o CC libavfilter/af_agate.o CC libavfilter/af_aiir.o CC libavfilter/af_alimiter.o CC libavfilter/af_amerge.o CC libavfilter/af_amix.o CC libavfilter/af_amultiply.o CC libavfilter/af_anequalizer.o CC libavfilter/af_anlmdn.o CC libavfilter/af_anlms.o CC libavfilter/af_anull.o CC libavfilter/af_apad.o CC libavfilter/af_aphaser.o CC libavfilter/af_apulsator.o CC libavfilter/af_aresample.o CC libavfilter/af_arnndn.o CC libavfilter/af_asetnsamples.o CC libavfilter/af_asetrate.o CC libavfilter/af_ashowinfo.o CC libavfilter/af_asoftclip.o CC libavfilter/af_astats.o CC libavfilter/af_asubboost.o CC libavfilter/af_asupercut.o CC libavfilter/af_axcorrelate.o CC libavfilter/af_biquads.o CC libavfilter/af_channelmap.o CC libavfilter/af_channelsplit.o CC libavfilter/af_chorus.o CC libavfilter/af_compand.o CC libavfilter/af_compensationdelay.o CC libavfilter/af_crossfeed.o CC libavfilter/af_crystalizer.o CC libavfilter/af_dcshift.o CC libavfilter/af_deesser.o CC libavfilter/af_drmeter.o CC libavfilter/af_dynaudnorm.o CC libavfilter/af_earwax.o CC libavfilter/af_extrastereo.o CC libavfilter/af_flanger.o CC libavfilter/af_haas.o CC libavfilter/af_hdcd.o CC libavfilter/af_headphone.o CC libavfilter/af_join.o CC libavfilter/af_loudnorm.o CC libavfilter/af_mcompand.o CC libavfilter/af_pan.o CC libavfilter/af_replaygain.o CC libavfilter/af_resample.o CC libavfilter/af_sidechaincompress.o CC libavfilter/af_silencedetect.o CC libavfilter/af_silenceremove.o CC libavfilter/af_speechnorm.o CC libavfilter/af_stereotools.o src/libavfilter/af_resample.c: In function ‘init’: src/libavfilter/af_resample.c:54:5: warning: ‘avresample_get_class’ is deprecated [-Wdeprecated-declarations] 54 | const AVClass *avr_class = avresample_get_class(); | ^~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:183:16: note: declared here 183 | const AVClass *avresample_get_class(void); | ^~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c: In function ‘uninit’: src/libavfilter/af_resample.c:83:9: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] 83 | avresample_close(s->avr); | ^~~~~~~~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:245:6: note: declared here 245 | void avresample_close(AVAudioResampleContext *avr); | ^~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:84:9: warning: ‘avresample_free’ is deprecated [-Wdeprecated-declarations] 84 | avresample_free(&s->avr); | ^~~~~~~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:258:6: note: declared here 258 | void avresample_free(AVAudioResampleContext **avr); | ^~~~~~~~~~~~~~~ src/libavfilter/af_resample.c: In function ‘config_output’: src/libavfilter/af_resample.c:127:9: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] 127 | avresample_close(s->avr); | ^~~~~~~~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:245:6: note: declared here 245 | void avresample_close(AVAudioResampleContext *avr); | ^~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:128:9: warning: ‘avresample_free’ is deprecated [-Wdeprecated-declarations] 128 | avresample_free(&s->avr); | ^~~~~~~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:258:6: note: declared here 258 | void avresample_free(AVAudioResampleContext **avr); | ^~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:140:5: warning: ‘avresample_alloc_context’ is deprecated [-Wdeprecated-declarations] 140 | if (!(s->avr = avresample_alloc_context())) | ^~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:194:25: note: declared here 194 | AVAudioResampleContext *avresample_alloc_context(void); | ^~~~~~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:161:5: warning: ‘avresample_open’ is deprecated [-Wdeprecated-declarations] 161 | if ((ret = avresample_open(s->avr)) < 0) | ^~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:214:5: note: declared here 214 | int avresample_open(AVAudioResampleContext *avr); | ^~~~~~~~~~~~~~~ src/libavfilter/af_resample.c: In function ‘request_frame’: src/libavfilter/af_resample.c:199:9: warning: ‘avresample_get_out_samples’ is deprecated [-Wdeprecated-declarations] 199 | int nb_samples = avresample_get_out_samples(s->avr, 0); | ^~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:403:5: note: declared here 403 | int avresample_get_out_samples(AVAudioResampleContext *avr, int in_nb_samples); | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:208:9: warning: ‘avresample_convert’ is deprecated [-Wdeprecated-declarations] 208 | ret = avresample_convert(s->avr, frame->extended_data, | ^~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:451:5: note: declared here 451 | int avresample_convert(AVAudioResampleContext *avr, uint8_t **output, | ^~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c: In function ‘filter_frame’: src/libavfilter/af_resample.c:235:9: warning: ‘avresample_get_delay’ is deprecated [-Wdeprecated-declarations] 235 | delay = avresample_get_delay(s->avr); | ^~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:473:5: note: declared here 473 | int avresample_get_delay(AVAudioResampleContext *avr); | ^~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:236:9: warning: ‘avresample_get_out_samples’ is deprecated [-Wdeprecated-declarations] 236 | nb_samples = avresample_get_out_samples(s->avr, in->nb_samples); | ^~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:403:5: note: declared here 403 | int avresample_get_out_samples(AVAudioResampleContext *avr, int in_nb_samples); | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:244:9: warning: ‘avresample_convert’ is deprecated [-Wdeprecated-declarations] 244 | ret = avresample_convert(s->avr, out->extended_data, out->linesize[0], | ^~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:451:5: note: declared here 451 | int avresample_convert(AVAudioResampleContext *avr, uint8_t **output, | ^~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:253:9: warning: ‘avresample_available’ is deprecated [-Wdeprecated-declarations] 253 | av_assert0(!avresample_available(s->avr)); | ^~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:494:5: note: declared here 494 | int avresample_available(AVAudioResampleContext *avr); | ^~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c: In function ‘resample_child_class_next’: src/libavfilter/af_resample.c:312:5: warning: ‘avresample_get_class’ is deprecated [-Wdeprecated-declarations] 312 | return prev ? NULL : avresample_get_class(); | ^~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:183:16: note: declared here 183 | const AVClass *avresample_get_class(void); | ^~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c: In function ‘resample_child_class_iterate’: src/libavfilter/af_resample.c:318:5: warning: ‘avresample_get_class’ is deprecated [-Wdeprecated-declarations] 318 | const AVClass *c = *iter ? NULL : avresample_get_class(); | ^~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:183:16: note: declared here 183 | const AVClass *avresample_get_class(void); | ^~~~~~~~~~~~~~~~~~~~ CC libavfilter/af_stereowiden.o CC libavfilter/af_superequalizer.o CC libavfilter/af_surround.o CC libavfilter/af_tremolo.o CC libavfilter/af_vibrato.o CC libavfilter/af_volume.o CC libavfilter/af_volumedetect.o CC libavfilter/allfilters.o CC libavfilter/asink_anullsink.o CC libavfilter/asrc_afirsrc.o CC libavfilter/asrc_anoisesrc.o CC libavfilter/asrc_anullsrc.o CC libavfilter/asrc_hilbert.o CC libavfilter/asrc_sinc.o CC libavfilter/asrc_sine.o CC libavfilter/audio.o CC libavfilter/avf_abitscope.o CC libavfilter/avf_ahistogram.o CC libavfilter/avf_aphasemeter.o CC libavfilter/avf_avectorscope.o CC libavfilter/avf_concat.o CC libavfilter/avf_showspatial.o CC libavfilter/avf_showvolume.o CC libavfilter/avf_showwaves.o CC libavfilter/avfilter.o CC libavfilter/avfiltergraph.o CC libavfilter/bbox.o CC libavfilter/boxblur.o CC libavfilter/buffersink.o CC libavfilter/buffersrc.o CC libavfilter/colorspace.o CC libavfilter/colorspacedsp.o CC libavfilter/dnn/dnn_backend_native.o CC libavfilter/dnn/dnn_backend_native_layer_avgpool.o CC libavfilter/dnn/dnn_backend_native_layer_conv2d.o CC libavfilter/dnn/dnn_backend_native_layer_dense.o CC libavfilter/dnn/dnn_backend_native_layer_depth2space.o CC libavfilter/dnn/dnn_backend_native_layer_mathbinary.o CC libavfilter/dnn/dnn_backend_native_layer_mathunary.o CC libavfilter/dnn/dnn_backend_native_layer_maximum.o CC libavfilter/dnn/dnn_backend_native_layer_pad.o CC libavfilter/dnn/dnn_backend_native_layers.o CC libavfilter/dnn/dnn_interface.o CC libavfilter/dnn/dnn_io_proc.o CC libavfilter/drawutils.o src/libavfilter/avfiltergraph.c: In function ‘avfilter_graph_free’: src/libavfilter/avfiltergraph.c:135:5: warning: ‘resample_lavr_opts’ is deprecated [-Wdeprecated-declarations] 135 | av_freep(&(*graph)->resample_lavr_opts); | ^~~~~~~~ In file included from src/libavfilter/avfiltergraph.c:39: src/libavfilter/avfilter.h:862:32: note: declared here 862 | attribute_deprecated char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters | ^~~~~~~~~~~~~~~~~~ CC libavfilter/ebur128.o CC libavfilter/f_bench.o CC libavfilter/f_cue.o CC libavfilter/f_drawgraph.o CC libavfilter/f_ebur128.o CC libavfilter/f_graphmonitor.o CC libavfilter/f_interleave.o CC libavfilter/f_loop.o CC libavfilter/f_metadata.o CC libavfilter/f_perms.o CC libavfilter/f_realtime.o CC libavfilter/f_reverse.o CC libavfilter/f_select.o CC libavfilter/f_sendcmd.o CC libavfilter/f_sidedata.o CC libavfilter/f_streamselect.o CC libavfilter/fifo.o CC libavfilter/formats.o CC libavfilter/framepool.o CC libavfilter/framequeue.o CC libavfilter/framesync.o CC libavfilter/generate_wave_table.o CC libavfilter/graphdump.o CC libavfilter/graphparser.o CC libavfilter/motion_estimation.o CC libavfilter/pthread.o CC libavfilter/scale_eval.o CC libavfilter/scene_sad.o CC libavfilter/setpts.o CC libavfilter/settb.o CC libavfilter/split.o CC libavfilter/transform.o CC libavfilter/trim.o CC libavfilter/vaapi_vpp.o CC libavfilter/vf_addroi.o CC libavfilter/vf_alphamerge.o CC libavfilter/vf_amplify.o CC libavfilter/vf_aspect.o CC libavfilter/vf_atadenoise.o CC libavfilter/vf_bbox.o CC libavfilter/vf_avgblur.o CC libavfilter/vf_bilateral.o CC libavfilter/vf_bitplanenoise.o CC libavfilter/vf_blackdetect.o CC libavfilter/vf_blackframe.o CC libavfilter/vf_blend.o CC libavfilter/vf_boxblur.o CC libavfilter/vf_bwdif.o CC libavfilter/vf_cas.o CC libavfilter/vf_chromakey.o CC libavfilter/vf_chromanr.o CC libavfilter/vf_chromashift.o CC libavfilter/vf_ciescope.o CC libavfilter/vf_codecview.o CC libavfilter/vf_colorbalance.o CC libavfilter/vf_colorchannelmixer.o CC libavfilter/vf_colorconstancy.o CC libavfilter/vf_colorkey.o CC libavfilter/vf_colorlevels.o src/libavfilter/vf_codecview.c: In function ‘filter_frame’: src/libavfilter/vf_codecview.c:223:9: warning: ‘av_frame_get_qp_table’ is deprecated [-Wdeprecated-declarations] 223 | int8_t *qp_table = av_frame_get_qp_table(frame, &qstride, &qp_type); | ^~~~~~ In file included from src/libavfilter/avfilter.h:44, from src/libavfilter/vf_codecview.c:35: src/libavutil/frame.h:739:9: note: declared here 739 | int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); | ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_colormatrix.o CC libavfilter/vf_colorspace.o CC libavfilter/vf_convolution.o CC libavfilter/vf_copy.o CC libavfilter/vf_crop.o CC libavfilter/vf_cropdetect.o CC libavfilter/vf_curves.o CC libavfilter/vf_datascope.o CC libavfilter/vf_dblur.o CC libavfilter/vf_dctdnoiz.o CC libavfilter/vf_deband.o CC libavfilter/vf_deblock.o CC libavfilter/vf_decimate.o CC libavfilter/vf_dedot.o CC libavfilter/vf_deflicker.o CC libavfilter/vf_deinterlace_vaapi.o CC libavfilter/vf_dejudder.o CC libavfilter/vf_delogo.o CC libavfilter/vf_derain.o CC libavfilter/vf_deshake.o CC libavfilter/vf_despill.o CC libavfilter/vf_detelecine.o CC libavfilter/vf_displace.o CC libavfilter/vf_dnn_processing.o CC libavfilter/vf_drawbox.o CC libavfilter/vf_edgedetect.o CC libavfilter/vf_entropy.o CC libavfilter/vf_eq.o CC libavfilter/vf_extractplanes.o CC libavfilter/vf_fade.o CC libavfilter/vf_field.o CC libavfilter/vf_fieldhint.o CC libavfilter/vf_fieldmatch.o CC libavfilter/vf_fieldorder.o CC libavfilter/vf_fillborders.o CC libavfilter/vf_floodfill.o CC libavfilter/vf_format.o CC libavfilter/vf_fps.o CC libavfilter/vf_framepack.o CC libavfilter/vf_framerate.o CC libavfilter/vf_framestep.o CC libavfilter/vf_freezedetect.o CC libavfilter/vf_freezeframes.o CC libavfilter/vf_fspp.o CC libavfilter/vf_gblur.o CC libavfilter/vf_geq.o CC libavfilter/vf_gradfun.o CC libavfilter/vf_hflip.o CC libavfilter/vf_histeq.o CC libavfilter/vf_histogram.o CC libavfilter/vf_hqdn3d.o CC libavfilter/vf_hqx.o CC libavfilter/vf_hue.o CC libavfilter/vf_hwdownload.o CC libavfilter/vf_hwmap.o CC libavfilter/vf_hwupload.o CC libavfilter/vf_hysteresis.o src/libavfilter/vf_fspp.c: In function ‘filter_frame’: src/libavfilter/vf_fspp.c:585:9: warning: ‘av_frame_get_qp_table’ is deprecated [-Wdeprecated-declarations] 585 | qp_table = av_frame_get_qp_table(in, &qp_stride, &fspp->qscale_type); | ^~~~~~~~ In file included from src/libavfilter/avfilter.h:44, from src/libavfilter/internal.h:28, from src/libavfilter/vf_fspp.c:42: src/libavutil/frame.h:739:9: note: declared here 739 | int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); | ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_idet.o CC libavfilter/vf_il.o CC libavfilter/vf_kerndeint.o CC libavfilter/vf_lagfun.o CC libavfilter/vf_lenscorrection.o CC libavfilter/vf_limiter.o src/libavfilter/vf_geq.c: In function ‘geq_init’: src/libavfilter/vf_geq.c:254:51: warning: ‘%d’ directive output may be truncated writing between 1 and 11 bytes into a region of size 8 [-Wformat-truncation=] 254 | snprintf(bps_string, sizeof(bps_string), "%d", (1<bps) - 1); | ^~ src/libavfilter/vf_geq.c:254:50: note: directive argument in the range [-2147483648, 2147483646] 254 | snprintf(bps_string, sizeof(bps_string), "%d", (1<bps) - 1); | ^~~~ src/libavfilter/vf_geq.c:254:9: note: ‘snprintf’ output between 2 and 12 bytes into a destination of size 8 254 | snprintf(bps_string, sizeof(bps_string), "%d", (1<bps) - 1); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_lumakey.o CC libavfilter/vf_lut.o CC libavfilter/vf_lut2.o CC libavfilter/vf_lut3d.o CC libavfilter/vf_maskedclamp.o CC libavfilter/vf_maskedmerge.o CC libavfilter/vf_maskedminmax.o CC libavfilter/vf_maskedthreshold.o CC libavfilter/vf_maskfun.o CC libavfilter/vf_median.o CC libavfilter/vf_mergeplanes.o CC libavfilter/vf_mestimate.o CC libavfilter/vf_midequalizer.o CC libavfilter/vf_minterpolate.o CC libavfilter/vf_misc_vaapi.o CC libavfilter/vf_mix.o CC libavfilter/vf_mpdecimate.o CC libavfilter/vf_neighbor.o CC libavfilter/vf_nlmeans.o CC libavfilter/vf_nnedi.o CC libavfilter/vf_noise.o CC libavfilter/vf_normalize.o CC libavfilter/vf_null.o CC libavfilter/vf_overlay.o CC libavfilter/vf_owdenoise.o CC libavfilter/vf_pad.o CC libavfilter/vf_palettegen.o CC libavfilter/vf_paletteuse.o CC libavfilter/vf_perspective.o CC libavfilter/vf_phase.o CC libavfilter/vf_photosensitivity.o CC libavfilter/vf_pixdesctest.o CC libavfilter/vf_pp.o CC libavfilter/vf_pp7.o CC libavfilter/vf_premultiply.o src/libavfilter/vf_pp.c: In function ‘pp_filter_frame’: src/libavfilter/vf_pp.c:140:5: warning: ‘av_frame_get_qp_table’ is deprecated [-Wdeprecated-declarations] 140 | qp_table = av_frame_get_qp_table(inbuf, &qstride, &qp_type); | ^~~~~~~~ In file included from src/libavfilter/avfilter.h:44, from src/libavfilter/internal.h:28, from src/libavfilter/vf_pp.c:29: src/libavutil/frame.h:739:9: note: declared here 739 | int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); | ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_procamp_vaapi.o CC libavfilter/vf_pseudocolor.o CC libavfilter/vf_psnr.o CC libavfilter/vf_pullup.o src/libavfilter/vf_pp7.c: In function ‘filter_frame’: src/libavfilter/vf_pp7.c:328:9: warning: ‘av_frame_get_qp_table’ is deprecated [-Wdeprecated-declarations] 328 | qp_table = av_frame_get_qp_table(in, &qp_stride, &pp7->qscale_type); | ^~~~~~~~ In file included from src/libavfilter/avfilter.h:44, from src/libavfilter/internal.h:28, from src/libavfilter/vf_pp7.c:34: src/libavutil/frame.h:739:9: note: declared here 739 | int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); | ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_qp.o CC libavfilter/vf_random.o CC libavfilter/vf_readeia608.o CC libavfilter/vf_readvitc.o CC libavfilter/vf_remap.o CC libavfilter/vf_removegrain.o src/libavfilter/vf_qp.c: In function ‘filter_frame’: src/libavfilter/vf_qp.c:113:5: warning: ‘av_frame_get_qp_table’ is deprecated [-Wdeprecated-declarations] 113 | in_qp_table = av_frame_get_qp_table(in, &stride, &type); | ^~~~~~~~~~~ In file included from src/libavfilter/avfilter.h:44, from src/libavfilter/vf_qp.c:26: src/libavutil/frame.h:739:9: note: declared here 739 | int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); | ^~~~~~~~~~~~~~~~~~~~~ src/libavfilter/vf_qp.c:114:5: warning: ‘av_frame_set_qp_table’ is deprecated [-Wdeprecated-declarations] 114 | av_frame_set_qp_table(out, out_qp_table_buf, s->qstride, type); | ^~~~~~~~~~~~~~~~~~~~~ In file included from src/libavfilter/avfilter.h:44, from src/libavfilter/vf_qp.c:26: src/libavutil/frame.h:741:5: note: declared here 741 | int av_frame_set_qp_table(AVFrame *f, AVBufferRef *buf, int stride, int type); | ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_repeatfields.o CC libavfilter/vf_rotate.o CC libavfilter/vf_sab.o CC libavfilter/vf_scale.o CC libavfilter/vf_scale_vaapi.o CC libavfilter/vf_scdet.o CC libavfilter/vf_scroll.o CC libavfilter/vf_selectivecolor.o CC libavfilter/vf_separatefields.o CC libavfilter/vf_setparams.o CC libavfilter/vf_showinfo.o CC libavfilter/vf_showpalette.o CC libavfilter/vf_shuffleframes.o CC libavfilter/vf_shufflepixels.o CC libavfilter/vf_shuffleplanes.o CC libavfilter/vf_signalstats.o CC libavfilter/vf_smartblur.o CC libavfilter/vf_ssim.o CC libavfilter/vf_stack.o CC libavfilter/vf_stereo3d.o CC libavfilter/vf_super2xsai.o CC libavfilter/vf_swaprect.o CC libavfilter/vf_swapuv.o CC libavfilter/vf_telecine.o CC libavfilter/vf_threshold.o CC libavfilter/vf_thumbnail.o CC libavfilter/vf_tile.o CC libavfilter/vf_tinterlace.o CC libavfilter/vf_tonemap.o CC libavfilter/vf_tonemap_vaapi.o CC libavfilter/vf_tpad.o CC libavfilter/vf_transpose.o CC libavfilter/vf_transpose_vaapi.o CC libavfilter/vf_unsharp.o CC libavfilter/vf_untile.o CC libavfilter/vf_v360.o CC libavfilter/vf_vaguedenoiser.o CC libavfilter/vf_vectorscope.o CC libavfilter/vf_vflip.o CC libavfilter/vf_vfrdet.o CC libavfilter/vf_vibrance.o CC libavfilter/vf_vignette.o CC libavfilter/vf_vmafmotion.o CC libavfilter/vf_w3fdif.o CC libavfilter/vf_waveform.o CC libavfilter/vf_weave.o CC libavfilter/vf_xbr.o CC libavfilter/vf_xfade.o CC libavfilter/vf_xmedian.o CC libavfilter/vf_yadif.o CC libavfilter/vf_yaepblur.o CC libavfilter/vf_zoompan.o CC libavfilter/video.o CC libavfilter/vsink_nullsink.o CC libavfilter/vsrc_cellauto.o CC libavfilter/vsrc_gradients.o CC libavfilter/vsrc_life.o CC libavfilter/vsrc_mandelbrot.o CC libavfilter/vsrc_mptestsrc.o CC libavfilter/vsrc_sierpinski.o CC libavfilter/vsrc_testsrc.o X86ASM libavfilter/x86/af_anlmdn.o CC libavfilter/x86/af_anlmdn_init.o X86ASM libavfilter/x86/af_volume.o STRIP libavfilter/x86/af_anlmdn.o CC libavfilter/x86/af_volume_init.o X86ASM libavfilter/x86/colorspacedsp.o CC libavfilter/x86/colorspacedsp_init.o X86ASM libavfilter/x86/scene_sad.o STRIP libavfilter/x86/af_volume.o CC libavfilter/x86/scene_sad_init.o X86ASM libavfilter/x86/vf_atadenoise.o CC libavfilter/x86/vf_atadenoise_init.o STRIP libavfilter/x86/scene_sad.o X86ASM libavfilter/x86/vf_blend.o CC libavfilter/x86/vf_blend_init.o X86ASM libavfilter/x86/vf_bwdif.o STRIP libavfilter/x86/vf_atadenoise.o CC libavfilter/x86/vf_bwdif_init.o X86ASM libavfilter/x86/vf_convolution.o STRIP libavfilter/x86/vf_convolution.o CC libavfilter/x86/vf_convolution_init.o X86ASM libavfilter/x86/vf_eq.o CC libavfilter/x86/vf_eq_init.o X86ASM libavfilter/x86/vf_framerate.o STRIP libavfilter/x86/vf_eq.o CC libavfilter/x86/vf_framerate_init.o X86ASM libavfilter/x86/vf_fspp.o CC libavfilter/x86/vf_fspp_init.o STRIP libavfilter/x86/vf_framerate.o STRIP libavfilter/x86/vf_bwdif.o X86ASM libavfilter/x86/vf_gblur.o CC libavfilter/x86/vf_gblur_init.o X86ASM libavfilter/x86/vf_gradfun.o STRIP libavfilter/x86/vf_blend.o CC libavfilter/x86/vf_gradfun_init.o STRIP libavfilter/x86/vf_gblur.o X86ASM libavfilter/x86/vf_hflip.o CC libavfilter/x86/vf_hflip_init.o X86ASM libavfilter/x86/vf_hqdn3d.o CC libavfilter/x86/vf_hqdn3d_init.o STRIP libavfilter/x86/vf_hflip.o STRIP libavfilter/x86/vf_gradfun.o X86ASM libavfilter/x86/vf_idet.o STRIP libavfilter/x86/vf_hqdn3d.o CC libavfilter/x86/vf_idet_init.o X86ASM libavfilter/x86/vf_interlace.o X86ASM libavfilter/x86/vf_limiter.o CC libavfilter/x86/vf_limiter_init.o STRIP libavfilter/x86/vf_idet.o X86ASM libavfilter/x86/vf_maskedclamp.o CC libavfilter/x86/vf_maskedclamp_init.o STRIP libavfilter/x86/vf_fspp.o X86ASM libavfilter/x86/vf_maskedmerge.o STRIP libavfilter/x86/vf_limiter.o CC libavfilter/x86/vf_maskedmerge_init.o CC libavfilter/x86/vf_noise.o X86ASM libavfilter/x86/vf_overlay.o STRIP libavfilter/x86/vf_interlace.o CC libavfilter/x86/vf_overlay_init.o STRIP libavfilter/x86/vf_maskedclamp.o X86ASM libavfilter/x86/vf_pp7.o STRIP libavfilter/x86/vf_maskedmerge.o CC libavfilter/x86/vf_pp7_init.o STRIP libavfilter/x86/vf_overlay.o X86ASM libavfilter/x86/vf_psnr.o CC libavfilter/x86/vf_psnr_init.o X86ASM libavfilter/x86/vf_pullup.o CC libavfilter/x86/vf_pullup_init.o X86ASM libavfilter/x86/vf_removegrain.o STRIP libavfilter/x86/vf_pp7.o CC libavfilter/x86/vf_removegrain_init.o X86ASM libavfilter/x86/vf_ssim.o STRIP libavfilter/x86/vf_psnr.o STRIP libavfilter/x86/vf_pullup.o CC libavfilter/x86/vf_ssim_init.o X86ASM libavfilter/x86/vf_stereo3d.o CC libavfilter/x86/vf_stereo3d_init.o X86ASM libavfilter/x86/vf_threshold.o CC libavfilter/x86/vf_threshold_init.o CC libavfilter/x86/vf_tinterlace_init.o STRIP libavfilter/x86/vf_stereo3d.o X86ASM libavfilter/x86/vf_transpose.o STRIP libavfilter/x86/vf_ssim.o CC libavfilter/x86/vf_transpose_init.o X86ASM libavfilter/x86/vf_v360.o STRIP libavfilter/x86/vf_threshold.o CC libavfilter/x86/vf_v360_init.o STRIP libavfilter/x86/vf_transpose.o X86ASM libavfilter/x86/vf_w3fdif.o CC libavfilter/x86/vf_w3fdif_init.o X86ASM libavfilter/x86/vf_yadif.o CC libavfilter/x86/vf_yadif_init.o X86ASM libavfilter/x86/yadif-10.o STRIP libavfilter/x86/vf_v360.o STRIP libavfilter/x86/vf_removegrain.o X86ASM libavfilter/x86/yadif-16.o CC libavfilter/yadif_common.o CC libavresample/audio_convert.o STRIP libavfilter/x86/vf_w3fdif.o CC libavresample/audio_data.o CC libavresample/audio_mix.o STRIP libavfilter/x86/colorspacedsp.o CC libavresample/audio_mix_matrix.o STRIP libavfilter/x86/vf_yadif.o CC libavresample/dither.o CC libavresample/options.o STRIP libavfilter/x86/yadif-10.o CC libavresample/resample.o In file included from src/libavresample/options.c:27: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/options.c:26: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/options.c:27: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/options.c:26: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/options.c:27: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/options.c:26: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/options.c:28: src/libavresample/audio_mix.h:55:33: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 55 | enum AVMixCoeffType coeff_type, int in_channels, | ^~~~~~~~~~~~~~ In file included from src/libavresample/options.c:26: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ CC libavresample/utils.o In file included from src/libavresample/audio_data.h:30, from src/libavresample/audio_data.c:25: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_data.h:29, from src/libavresample/audio_data.c:25: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_data.h:30, from src/libavresample/audio_data.c:25: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_data.h:29, from src/libavresample/audio_data.c:25: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_data.h:30, from src/libavresample/audio_data.c:25: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_data.h:29, from src/libavresample/audio_data.c:25: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ X86ASM libavresample/x86/audio_convert.o In file included from src/libavresample/audio_mix_matrix.c:28: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix_matrix.c:27: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix_matrix.c:28: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix_matrix.c:27: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix_matrix.c:28: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix_matrix.c:27: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix_matrix.c:30: src/libavresample/audio_mix.h:55:33: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 55 | enum AVMixCoeffType coeff_type, int in_channels, | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix_matrix.c:27: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ CC libavresample/x86/audio_convert_init.o In file included from src/libavresample/audio_convert.h:26, from src/libavresample/x86/audio_convert_init.c:24: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/x86/audio_convert_init.c:24: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:26, from src/libavresample/x86/audio_convert_init.c:24: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/x86/audio_convert_init.c:24: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:26, from src/libavresample/x86/audio_convert_init.c:24: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/x86/audio_convert_init.c:24: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ X86ASM libavresample/x86/audio_mix.o STRIP libavfilter/x86/yadif-16.o In file included from src/libavresample/audio_mix.c:27: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:26: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:27: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:26: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:27: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:26: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:29: src/libavresample/audio_mix.h:55:33: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 55 | enum AVMixCoeffType coeff_type, int in_channels, | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:26: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ src/libavresample/audio_mix.c:36:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 36 | enum AVMixCoeffType coeff_type; | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:26: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ src/libavresample/audio_mix.c:62:33: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 62 | enum AVMixCoeffType coeff_type, int in_channels, | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:26: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ src/libavresample/audio_mix.c: In function ‘ff_audio_mix_alloc’: src/libavresample/audio_mix.c:378:9: warning: ‘avresample_build_matrix’ is deprecated [-Wdeprecated-declarations] 378 | ret = avresample_build_matrix(avr->in_channel_layout, | ^~~ In file included from src/libavresample/audio_mix.c:26: src/libavresample/avresample.h:286:5: note: declared here 286 | int avresample_build_matrix(uint64_t in_layout, uint64_t out_layout, | ^~~~~~~~~~~~~~~~~~~~~~~ CC libavresample/x86/audio_mix_init.o X86ASM libavresample/x86/dither.o In file included from src/libavresample/audio_convert.h:26, from src/libavresample/dither.c:39: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/dither.c:39: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:26, from src/libavresample/dither.c:39: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/dither.c:39: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:26, from src/libavresample/dither.c:39: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/dither.c:39: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/dither.c:40: src/libavresample/dither.h:91:30: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 91 | enum AVResampleDitherMethod method); | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/dither.c:39: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ src/libavresample/dither.c:56:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 56 | enum AVResampleDitherMethod method; | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/dither.c:39: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ src/libavresample/dither.c:330:38: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 330 | enum AVResampleDitherMethod method) | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/dither.c:39: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ CC libavresample/x86/dither_init.o In file included from src/libavresample/utils.c:30: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:30: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:30: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:33: src/libavresample/audio_mix.h:55:33: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 55 | enum AVMixCoeffType coeff_type, int in_channels, | ^~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:34: src/libavresample/resample.h:42:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 42 | enum AVResampleFilterType filter_type; | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ src/libavresample/utils.c: In function ‘avresample_open’: src/libavresample/utils.c:40:5: warning: ‘avresample_is_open’ is deprecated [-Wdeprecated-declarations] 40 | if (avresample_is_open(avr)) { | ^~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:226:5: note: declared here 226 | int avresample_is_open(AVAudioResampleContext *avr); | ^~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:253:5: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] 253 | avresample_close(avr); | ^~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:245:6: note: declared here 245 | void avresample_close(AVAudioResampleContext *avr); | ^~~~~~~~~~~~~~~~ src/libavresample/utils.c: In function ‘avresample_free’: src/libavresample/utils.c:282:5: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] 282 | avresample_close(*avr); | ^~~~~~~~~~~~~~~~ src/libavresample/utils.c:262:6: note: declared here 262 | void avresample_close(AVAudioResampleContext *avr) | ^~~~~~~~~~~~~~~~ src/libavresample/utils.c: In function ‘avresample_config’: src/libavresample/utils.c:507:5: warning: ‘avresample_is_open’ is deprecated [-Wdeprecated-declarations] 507 | if (avresample_is_open(avr)) { | ^~ src/libavresample/utils.c:257:5: note: declared here 257 | int avresample_is_open(AVAudioResampleContext *avr) | ^~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:508:9: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] 508 | avresample_close(avr); | ^~~~~~~~~~~~~~~~ src/libavresample/utils.c:262:6: note: declared here 262 | void avresample_close(AVAudioResampleContext *avr) | ^~~~~~~~~~~~~~~~ src/libavresample/utils.c: In function ‘convert_frame’: src/libavresample/utils.c:570:5: warning: ‘avresample_convert’ is deprecated [-Wdeprecated-declarations] 570 | ret = avresample_convert(avr, out_data, out_linesize, | ^~~ src/libavresample/utils.c:330:25: note: declared here 330 | int attribute_align_arg avresample_convert(AVAudioResampleContext *avr, | ^~~~~~~~~~~~~~~~~~ src/libavresample/utils.c: In function ‘avresample_convert_frame’: src/libavresample/utils.c:608:5: warning: ‘avresample_is_open’ is deprecated [-Wdeprecated-declarations] 608 | if (!avresample_is_open(avr)) { | ^~ src/libavresample/utils.c:257:5: note: declared here 257 | int avresample_is_open(AVAudioResampleContext *avr) | ^~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:609:9: warning: ‘avresample_config’ is deprecated [-Wdeprecated-declarations] 609 | if ((ret = avresample_config(avr, out, in)) < 0) | ^~ src/libavresample/utils.c:505:5: note: declared here 505 | int avresample_config(AVAudioResampleContext *avr, AVFrame *out, AVFrame *in) | ^~~~~~~~~~~~~~~~~ src/libavresample/utils.c:611:9: warning: ‘avresample_open’ is deprecated [-Wdeprecated-declarations] 611 | if ((ret = avresample_open(avr)) < 0) | ^~ src/libavresample/utils.c:36:5: note: declared here 36 | int avresample_open(AVAudioResampleContext *avr) | ^~~~~~~~~~~~~~~ src/libavresample/utils.c:622:13: warning: ‘avresample_get_out_samples’ is deprecated [-Wdeprecated-declarations] 622 | out->nb_samples = avresample_get_out_samples(avr, in->nb_samples); | ^~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:403:5: note: declared here 403 | int avresample_get_out_samples(AVAudioResampleContext *avr, int in_nb_samples); | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:625:21: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] 625 | avresample_close(avr); | ^~~~~~~~~~~~~~~~ src/libavresample/utils.c:262:6: note: declared here 262 | void avresample_close(AVAudioResampleContext *avr) | ^~~~~~~~~~~~~~~~ src/libavresample/utils.c: In function ‘avresample_get_out_samples’: src/libavresample/utils.c:755:5: warning: ‘avresample_get_delay’ is deprecated [-Wdeprecated-declarations] 755 | int64_t samples = avresample_get_delay(avr) + (int64_t)in_nb_samples; | ^~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:473:5: note: declared here 473 | int avresample_get_delay(AVAudioResampleContext *avr); | ^~~~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:764:5: warning: ‘avresample_available’ is deprecated [-Wdeprecated-declarations] 764 | samples += avresample_available(avr); | ^~~~~~~ src/libavresample/utils.c:748:5: note: declared here 748 | int avresample_available(AVAudioResampleContext *avr) | ^~~~~~~~~~~~~~~~~~~~ AR libpostproc/libpostproc.a STRIP libavresample/x86/dither.o CC libswresample/audioconvert.o In file included from src/libavresample/audio_data.h:30, from src/libavresample/dither.h:25, from src/libavresample/x86/dither_init.c:24: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/dither.h:24, from src/libavresample/x86/dither_init.c:24: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_data.h:30, from src/libavresample/dither.h:25, from src/libavresample/x86/dither_init.c:24: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/dither.h:24, from src/libavresample/x86/dither_init.c:24: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_data.h:30, from src/libavresample/dither.h:25, from src/libavresample/x86/dither_init.c:24: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/dither.h:24, from src/libavresample/x86/dither_init.c:24: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/x86/dither_init.c:24: src/libavresample/dither.h:91:30: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 91 | enum AVResampleDitherMethod method); | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/dither.h:24, from src/libavresample/x86/dither_init.c:24: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ src/libavresample/x86/dither_init.c:35:38: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 35 | enum AVResampleDitherMethod method) | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/dither.h:24, from src/libavresample/x86/dither_init.c:24: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ CC libswresample/dither.o CC libswresample/options.o In file included from src/libavresample/audio_mix.h:28, from src/libavresample/x86/audio_mix_init.c:24: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.h:27, from src/libavresample/x86/audio_mix_init.c:24: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.h:28, from src/libavresample/x86/audio_mix_init.c:24: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.h:27, from src/libavresample/x86/audio_mix_init.c:24: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.h:28, from src/libavresample/x86/audio_mix_init.c:24: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.h:27, from src/libavresample/x86/audio_mix_init.c:24: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/x86/audio_mix_init.c:24: src/libavresample/audio_mix.h:55:33: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 55 | enum AVMixCoeffType coeff_type, int in_channels, | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.h:27, from src/libavresample/x86/audio_mix_init.c:24: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ CC libswresample/rematrix.o In file included from src/libavresample/audio_convert.h:26, from src/libavresample/audio_convert.c:30: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/audio_convert.c:30: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:26, from src/libavresample/audio_convert.c:30: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/audio_convert.c:30: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:26, from src/libavresample/audio_convert.c:30: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/audio_convert.c:30: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.c:32: src/libavresample/dither.h:91:30: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 91 | enum AVResampleDitherMethod method); | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/audio_convert.h:25, from src/libavresample/audio_convert.c:30: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ CC libswresample/resample.o CC libswresample/resample_dsp.o In file included from src/libavresample/resample.c:25: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 63 | enum AVMixCoeffType mix_coeff_type; /**< mixing coefficient type */ | ^~~~~~~~~~~~~~ In file included from src/libavresample/internal.h:28, from src/libavresample/resample.c:25: src/libavresample/avresample.h:112:27: note: declared here 112 | enum attribute_deprecated AVMixCoeffType { | ^~~~~~~~~~~~~~ In file included from src/libavresample/resample.c:25: src/libavresample/internal.h:73:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 73 | enum AVResampleFilterType filter_type; /**< resampling filter type */ | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/internal.h:28, from src/libavresample/resample.c:25: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/resample.c:25: src/libavresample/internal.h:75:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 75 | enum AVResampleDitherMethod dither_method; /**< dither method */ | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/internal.h:28, from src/libavresample/resample.c:25: src/libavresample/avresample.h:132:27: note: declared here 132 | enum attribute_deprecated AVResampleDitherMethod { | ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/resample.c:26: src/libavresample/resample.h:42:10: warning: ‘AVResampleFilterType’ is deprecated [-Wdeprecated-declarations] 42 | enum AVResampleFilterType filter_type; | ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/internal.h:28, from src/libavresample/resample.c:25: src/libavresample/avresample.h:123:27: note: declared here 123 | enum attribute_deprecated AVResampleFilterType { | ^~~~~~~~~~~~~~~~~~~~ CC libswresample/swresample.o CC libswresample/swresample_frame.o STRIP libavresample/x86/audio_convert.o X86ASM libswresample/x86/audio_convert.o CC libswresample/x86/audio_convert_init.o X86ASM libswresample/x86/rematrix.o CC libswresample/x86/rematrix_init.o X86ASM libswresample/x86/resample.o CC libswresample/x86/resample_init.o CC libswscale/alphablend.o CC libswscale/gamma.o CC libswscale/hscale.o CC libswscale/hscale_fast_bilinear.o STRIP libswresample/x86/rematrix.o CC libswscale/input.o CC libswscale/options.o CC libswscale/output.o CC libswscale/rgb2rgb.o CC libswscale/slice.o CC libswscale/swscale.o CC libswscale/swscale_unscaled.o STRIP libswresample/x86/resample.o CC libswscale/utils.o CC libswscale/vscale.o CC libswscale/x86/hscale_fast_bilinear_simd.o X86ASM libswscale/x86/input.o STRIP libswresample/x86/audio_convert.o X86ASM libswscale/x86/output.o CC libswscale/x86/rgb2rgb.o X86ASM libswscale/x86/rgb_2_rgb.o X86ASM libswscale/x86/scale.o STRIP libavresample/x86/audio_mix.o CC libswscale/x86/swscale.o STRIP libswscale/x86/rgb_2_rgb.o CC libswscale/x86/yuv2rgb.o STRIP libswscale/x86/input.o X86ASM libswscale/x86/yuv_2_rgb.o STRIP libswscale/x86/output.o CC libswscale/yuv2rgb.o CC libavutil/adler32.o CC libavutil/aes.o CC libavutil/aes_ctr.o STRIP libswscale/x86/yuv_2_rgb.o CC libavutil/audio_fifo.o CC libavutil/avsscanf.o CC libavutil/avstring.o CC libavutil/base64.o CC libavutil/blowfish.o CC libavutil/bprint.o STRIP libswscale/x86/scale.o CC libavutil/buffer.o CC libavutil/camellia.o CC libavutil/cast5.o CC libavutil/channel_layout.o CC libavutil/color_utils.o CC libavutil/cpu.o CC libavutil/crc.o In file included from src/libavutil/cpu.c:44: /usr/include/sys/sysctl.h:21:2: warning: #warning "The header is deprecated and will be removed." [-Wcpp] 21 | #warning "The header is deprecated and will be removed." | ^~~~~~~ CC libavutil/des.o CC libavutil/dict.o CC libavutil/display.o CC libavutil/dovi_meta.o CC libavutil/downmix_info.o CC libavutil/encryption_info.o CC libavutil/error.o CC libavutil/eval.o CC libavutil/fifo.o CC libavutil/file.o CC libavutil/file_open.o CC libavutil/film_grain_params.o CC libavutil/fixed_dsp.o CC libavutil/float_dsp.o CC libavutil/frame.o CC libavutil/hash.o CC libavutil/hdr_dynamic_metadata.o CC libavutil/hmac.o CC libavutil/hwcontext.o CC libavutil/hwcontext_vaapi.o CC libavutil/hwcontext_vdpau.o CC libavutil/imgutils.o CC libavutil/integer.o CC libavutil/intmath.o CC libavutil/lfg.o CC libavutil/lls.o CC libavutil/log.o CC libavutil/log2_tab.o CC libavutil/lzo.o CC libavutil/mastering_display_metadata.o CC libavutil/mathematics.o CC libavutil/md5.o CC libavutil/mem.o CC libavutil/murmur3.o CC libavutil/opt.o CC libavutil/parseutils.o CC libavutil/pixdesc.o CC libavutil/pixelutils.o CC libavutil/random_seed.o CC libavutil/rational.o CC libavutil/rc4.o CC libavutil/reverse.o CC libavutil/ripemd.o CC libavutil/samplefmt.o CC libavutil/sha.o CC libavutil/sha512.o CC libavutil/slicethread.o CC libavutil/spherical.o CC libavutil/stereo3d.o CC libavutil/tea.o CC libavutil/threadmessage.o CC libavutil/time.o CC libavutil/timecode.o CC libavutil/tree.o CC libavutil/twofish.o CC libavutil/tx.o CC libavutil/tx_double.o src/libavutil/timecode.c: In function ‘av_timecode_make_string’: src/libavutil/timecode.c:121:60: warning: ‘%02d’ directive output may be truncated writing between 2 and 10 bytes into a region of size between 2 and 14 [-Wformat-truncation=] 121 | snprintf(buf, AV_TIMECODE_STR_SIZE, "%s%02d:%02d:%02d%c%02d", | ^~~~ src/libavutil/timecode.c:121:41: note: directive argument in the range [0, 2147483647] 121 | snprintf(buf, AV_TIMECODE_STR_SIZE, "%s%02d:%02d:%02d%c%02d", | ^~~~~~~~~~~~~~~~~~~~~~~~ src/libavutil/timecode.c:121:5: note: ‘snprintf’ output between 12 and 32 bytes into a destination of size 23 121 | snprintf(buf, AV_TIMECODE_STR_SIZE, "%s%02d:%02d:%02d%c%02d", | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 122 | neg ? "-" : "", | ~~~~~~~~~~~~~~~ 123 | hh, mm, ss, drop ? ';' : ':', ff); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CC libavutil/tx_float.o CC libavutil/tx_int32.o CC libavutil/utils.o src/libavutil/opt.c: In function ‘av_opt_child_class_iterate’: src/libavutil/opt.c:1738:15: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] 1738 | *iter = parent->child_class_next(*iter); | ^ CC libavutil/video_enc_params.o CC libavutil/x86/cpu.o X86ASM libavutil/x86/cpuid.o X86ASM libavutil/x86/fixed_dsp.o CC libavutil/x86/fixed_dsp_init.o X86ASM libavutil/x86/float_dsp.o STRIP libavutil/x86/cpuid.o src/libavutil/video_enc_params.c: In function ‘av_video_enc_params_alloc’: src/libavutil/video_enc_params.c:36:19: warning: comparison is always false due to limited range of data type [-Wtype-limits] 36 | if (nb_blocks > SIZE_MAX / sizeof(AVVideoBlockParams) || | ^ CC libavutil/x86/float_dsp_init.o X86ASM libavutil/x86/imgutils.o STRIP libavutil/x86/fixed_dsp.o CC libavutil/x86/imgutils_init.o X86ASM libavutil/x86/lls.o STRIP libavutil/x86/imgutils.o CC libavutil/x86/lls_init.o X86ASM libavutil/x86/pixelutils.o CC libavutil/x86/pixelutils_init.o CC libavutil/xga_font_data.o STRIP libavutil/x86/float_dsp.o CC libavutil/xtea.o STRIP libavutil/x86/lls.o HOSTLD doc/print_options AR libavresample/libavresample.a AR libavfilter/libavfilter.a GENTEXI doc/avoptions_format.texi AR libswresample/libswresample.a GENTEXI doc/avoptions_codec.texi HTML doc/ffmpeg-utils.html HTML doc/ffmpeg-scaler.html STRIP libavutil/x86/pixelutils.o HTML doc/ffmpeg-resampler.html HTML doc/ffmpeg-filters.html HTML doc/libavutil.html HTML doc/libswscale.html HTML doc/libswresample.html HTML doc/libavfilter.html HTML doc/developer.html HTML doc/faq.html HTML doc/fate.html HTML doc/general.html HTML doc/git-howto.html HTML doc/mailing-list-faq.html HTML doc/nut.html HTML doc/platform.html POD doc/ffmpeg-utils.pod POD doc/ffmpeg-scaler.pod POD doc/ffmpeg-resampler.pod POD doc/ffmpeg-filters.pod POD doc/libavutil.pod POD doc/libswscale.pod POD doc/libswresample.pod MAN doc/ffmpeg-utils.1 POD doc/libavfilter.pod MAN doc/ffmpeg-scaler.1 MAN doc/ffmpeg-resampler.1 MAN doc/libavutil.3 MAN doc/libswscale.3 MAN doc/libswresample.3 MAN doc/libavfilter.3 MAN doc/ffmpeg-filters.1 AR libavutil/libavutil.a AR libswscale/libswscale.a INSTALL home/fate/ffmpeg/doc/examples/avio_list_dir.c INSTALL home/fate/ffmpeg/doc/examples/avio_reading.c INSTALL home/fate/ffmpeg/doc/examples/decode_audio.c INSTALL home/fate/ffmpeg/doc/examples/decode_video.c INSTALL home/fate/ffmpeg/doc/examples/demuxing_decoding.c INSTALL home/fate/ffmpeg/doc/examples/encode_audio.c INSTALL home/fate/ffmpeg/doc/examples/encode_video.c INSTALL home/fate/ffmpeg/doc/examples/extract_mvs.c INSTALL home/fate/ffmpeg/doc/examples/filter_audio.c INSTALL home/fate/ffmpeg/doc/examples/filtering_audio.c INSTALL home/fate/ffmpeg/doc/examples/filtering_video.c INSTALL home/fate/ffmpeg/doc/examples/http_multiclient.c INSTALL home/fate/ffmpeg/doc/examples/hw_decode.c INSTALL home/fate/ffmpeg/doc/examples/metadata.c INSTALL home/fate/ffmpeg/doc/examples/muxing.c INSTALL home/fate/ffmpeg/doc/examples/qsvdec.c INSTALL home/fate/ffmpeg/doc/examples/remuxing.c INSTALL home/fate/ffmpeg/doc/examples/resampling_audio.c INSTALL home/fate/ffmpeg/doc/examples/scaling_video.c INSTALL home/fate/ffmpeg/doc/examples/transcode_aac.c INSTALL home/fate/ffmpeg/doc/examples/transcoding.c INSTALL home/fate/ffmpeg/doc/examples/vaapi_encode.c INSTALL home/fate/ffmpeg/doc/examples/vaapi_transcode.c INSTALL home/fate/ffmpeg/doc/examples/README INSTALL home/fate/ffmpeg/doc/examples/Makefile INSTALL home/fate/ffmpeg/doc/examples/avio_list_dir.c INSTALL home/fate/ffmpeg/doc/examples/avio_reading.c INSTALL home/fate/ffmpeg/doc/examples/decode_audio.c INSTALL home/fate/ffmpeg/doc/examples/decode_video.c INSTALL home/fate/ffmpeg/doc/examples/demuxing_decoding.c INSTALL home/fate/ffmpeg/doc/examples/encode_audio.c INSTALL home/fate/ffmpeg/doc/examples/encode_video.c INSTALL home/fate/ffmpeg/doc/examples/extract_mvs.c INSTALL home/fate/ffmpeg/doc/examples/filter_audio.c INSTALL home/fate/ffmpeg/doc/examples/filtering_audio.c INSTALL home/fate/ffmpeg/doc/examples/filtering_video.c INSTALL home/fate/ffmpeg/doc/examples/http_multiclient.c INSTALL home/fate/ffmpeg/doc/examples/hw_decode.c INSTALL home/fate/ffmpeg/doc/examples/metadata.c INSTALL home/fate/ffmpeg/doc/examples/muxing.c INSTALL home/fate/ffmpeg/doc/examples/qsvdec.c INSTALL home/fate/ffmpeg/doc/examples/remuxing.c INSTALL home/fate/ffmpeg/doc/examples/resampling_audio.c INSTALL home/fate/ffmpeg/doc/examples/scaling_video.c INSTALL home/fate/ffmpeg/doc/examples/transcode_aac.c INSTALL home/fate/ffmpeg/doc/examples/transcoding.c INSTALL home/fate/ffmpeg/doc/examples/vaapi_encode.c INSTALL home/fate/ffmpeg/doc/examples/vaapi_transcode.c INSTALL home/fate/ffmpeg/doc/examples/README INSTALL home/fate/ffmpeg/doc/examples/Makefile INSTALL libavfilter/libavfilter.a INSTALL libavresample/libavresample.a INSTALL libpostproc/libpostproc.a INSTALL libswresample/libswresample.a INSTALL libswscale/libswscale.a INSTALL libavutil/libavutil.a INSTALL home/fate/ffmpeg/libavfilter/avfilter.h INSTALL home/fate/ffmpeg/libavfilter/buffersink.h INSTALL home/fate/ffmpeg/libavfilter/buffersrc.h INSTALL home/fate/ffmpeg/libavfilter/version.h INSTALL libavfilter/libavfilter.pc INSTALL home/fate/ffmpeg/libavresample/avresample.h INSTALL home/fate/ffmpeg/libavresample/version.h INSTALL libavresample/libavresample.pc INSTALL home/fate/ffmpeg/libpostproc/postprocess.h INSTALL home/fate/ffmpeg/libpostproc/version.h INSTALL libpostproc/libpostproc.pc INSTALL home/fate/ffmpeg/libswresample/swresample.h INSTALL home/fate/ffmpeg/libswresample/version.h INSTALL libswresample/libswresample.pc INSTALL home/fate/ffmpeg/libswscale/swscale.h INSTALL home/fate/ffmpeg/libswscale/version.h INSTALL libswscale/libswscale.pc INSTALL home/fate/ffmpeg/libavutil/adler32.h INSTALL home/fate/ffmpeg/libavutil/aes.h INSTALL home/fate/ffmpeg/libavutil/aes_ctr.h INSTALL home/fate/ffmpeg/libavutil/attributes.h INSTALL home/fate/ffmpeg/libavutil/audio_fifo.h INSTALL home/fate/ffmpeg/libavutil/avassert.h INSTALL home/fate/ffmpeg/libavutil/avstring.h INSTALL home/fate/ffmpeg/libavutil/avutil.h INSTALL home/fate/ffmpeg/libavutil/base64.h INSTALL home/fate/ffmpeg/libavutil/blowfish.h INSTALL home/fate/ffmpeg/libavutil/bprint.h INSTALL home/fate/ffmpeg/libavutil/bswap.h INSTALL home/fate/ffmpeg/libavutil/buffer.h INSTALL home/fate/ffmpeg/libavutil/cast5.h INSTALL home/fate/ffmpeg/libavutil/camellia.h INSTALL home/fate/ffmpeg/libavutil/channel_layout.h INSTALL home/fate/ffmpeg/libavutil/common.h INSTALL home/fate/ffmpeg/libavutil/cpu.h INSTALL home/fate/ffmpeg/libavutil/crc.h INSTALL home/fate/ffmpeg/libavutil/des.h INSTALL home/fate/ffmpeg/libavutil/dict.h INSTALL home/fate/ffmpeg/libavutil/display.h INSTALL home/fate/ffmpeg/libavutil/dovi_meta.h INSTALL home/fate/ffmpeg/libavutil/downmix_info.h INSTALL home/fate/ffmpeg/libavutil/encryption_info.h INSTALL home/fate/ffmpeg/libavutil/error.h INSTALL home/fate/ffmpeg/libavutil/eval.h INSTALL home/fate/ffmpeg/libavutil/fifo.h INSTALL home/fate/ffmpeg/libavutil/file.h INSTALL home/fate/ffmpeg/libavutil/frame.h INSTALL home/fate/ffmpeg/libavutil/hash.h INSTALL home/fate/ffmpeg/libavutil/hdr_dynamic_metadata.h INSTALL home/fate/ffmpeg/libavutil/hmac.h INSTALL home/fate/ffmpeg/libavutil/hwcontext.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_cuda.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_d3d11va.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_drm.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_dxva2.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_qsv.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_mediacodec.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_opencl.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_vaapi.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_videotoolbox.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_vdpau.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_vulkan.h INSTALL home/fate/ffmpeg/libavutil/imgutils.h INSTALL home/fate/ffmpeg/libavutil/intfloat.h INSTALL home/fate/ffmpeg/libavutil/intreadwrite.h INSTALL home/fate/ffmpeg/libavutil/lfg.h INSTALL home/fate/ffmpeg/libavutil/log.h INSTALL home/fate/ffmpeg/libavutil/macros.h INSTALL home/fate/ffmpeg/libavutil/mathematics.h INSTALL home/fate/ffmpeg/libavutil/mastering_display_metadata.h INSTALL home/fate/ffmpeg/libavutil/md5.h INSTALL home/fate/ffmpeg/libavutil/mem.h INSTALL home/fate/ffmpeg/libavutil/motion_vector.h INSTALL home/fate/ffmpeg/libavutil/murmur3.h INSTALL home/fate/ffmpeg/libavutil/opt.h INSTALL home/fate/ffmpeg/libavutil/parseutils.h INSTALL home/fate/ffmpeg/libavutil/pixdesc.h INSTALL home/fate/ffmpeg/libavutil/pixelutils.h INSTALL home/fate/ffmpeg/libavutil/pixfmt.h INSTALL home/fate/ffmpeg/libavutil/random_seed.h INSTALL home/fate/ffmpeg/libavutil/rc4.h INSTALL home/fate/ffmpeg/libavutil/rational.h INSTALL home/fate/ffmpeg/libavutil/replaygain.h INSTALL home/fate/ffmpeg/libavutil/ripemd.h INSTALL home/fate/ffmpeg/libavutil/samplefmt.h INSTALL home/fate/ffmpeg/libavutil/sha.h INSTALL home/fate/ffmpeg/libavutil/sha512.h INSTALL home/fate/ffmpeg/libavutil/spherical.h INSTALL home/fate/ffmpeg/libavutil/stereo3d.h INSTALL home/fate/ffmpeg/libavutil/threadmessage.h INSTALL home/fate/ffmpeg/libavutil/time.h INSTALL home/fate/ffmpeg/libavutil/timecode.h INSTALL home/fate/ffmpeg/libavutil/timestamp.h INSTALL home/fate/ffmpeg/libavutil/tree.h INSTALL home/fate/ffmpeg/libavutil/twofish.h INSTALL home/fate/ffmpeg/libavutil/version.h INSTALL home/fate/ffmpeg/libavutil/video_enc_params.h INSTALL home/fate/ffmpeg/libavutil/xtea.h INSTALL home/fate/ffmpeg/libavutil/tea.h INSTALL home/fate/ffmpeg/libavutil/tx.h INSTALL home/fate/ffmpeg/libavutil/film_grain_params.h INSTALL home/fate/ffmpeg/libavutil/lzo.h INSTALL libavutil/avconfig.h INSTALL libavutil/ffversion.h INSTALL libavutil/libavutil.pc