GEN libavutil/libavutil.version GEN libavfilter/libavfilter.version GEN libavresample/libavresample.version GEN libswscale/libswscale.version GEN libswresample/libswresample.version GEN libpostproc/libpostproc.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/aeval.o CC libavfilter/af_acontrast.o CC libavfilter/af_acopy.o TXT doc/fate.txt CC libavfilter/af_acrossover.o CC libavfilter/af_acrusher.o CC libavfilter/af_adeclick.o CC libavfilter/af_adelay.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_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_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_asetnsamples.o CC libavfilter/af_asetrate.o CC libavfilter/af_ashowinfo.o CC libavfilter/af_astats.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_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_loudnorm.o CC libavfilter/af_join.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_stereotools.o CC libavfilter/af_stereowiden.o CC libavfilter/af_superequalizer.o src/libavfilter/af_resample.c: In function ‘init’: src/libavfilter/af_resample.c:54:5: warning: ‘avresample_get_class’ is deprecated [-Wdeprecated-declarations] 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 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] avresample_close(s->avr); ^~~~~~~~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:245:6: note: declared here void avresample_close(AVAudioResampleContext *avr); ^~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:84:9: warning: ‘avresample_free’ is deprecated [-Wdeprecated-declarations] avresample_free(&s->avr); ^~~~~~~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:258:6: note: declared here 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] avresample_close(s->avr); ^~~~~~~~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:245:6: note: declared here void avresample_close(AVAudioResampleContext *avr); ^~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:128:9: warning: ‘avresample_free’ is deprecated [-Wdeprecated-declarations] avresample_free(&s->avr); ^~~~~~~~~~~~~~~ In file included from src/libavfilter/af_resample.c:31: src/libavresample/avresample.h:258:6: note: declared here void avresample_free(AVAudioResampleContext **avr); ^~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:140:5: warning: ‘avresample_alloc_context’ is deprecated [-Wdeprecated-declarations] 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 AVAudioResampleContext *avresample_alloc_context(void); ^~~~~~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:161:5: warning: ‘avresample_open’ is deprecated [-Wdeprecated-declarations] 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 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] 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 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] 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 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] 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 int avresample_get_delay(AVAudioResampleContext *avr); ^~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:236:9: warning: ‘avresample_get_out_samples’ is deprecated [-Wdeprecated-declarations] 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 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] 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 int avresample_convert(AVAudioResampleContext *avr, uint8_t **output, ^~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c:253:9: warning: ‘avresample_available’ is deprecated [-Wdeprecated-declarations] 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 int avresample_available(AVAudioResampleContext *avr); ^~~~~~~~~~~~~~~~~~~~ src/libavfilter/af_resample.c: In function ‘resample_child_class_next’: src/libavfilter/af_resample.c:311:5: warning: ‘avresample_get_class’ is deprecated [-Wdeprecated-declarations] 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 const AVClass *avresample_get_class(void); ^~~~~~~~~~~~~~~~~~~~ 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_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_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/drawutils.o 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 src/libavfilter/avfiltergraph.c: In function ‘avfilter_graph_free’: src/libavfilter/avfiltergraph.c:135:5: warning: ‘resample_lavr_opts’ is deprecated [-Wdeprecated-declarations] av_freep(&(*graph)->resample_lavr_opts); ^~~~~~~~ In file included from src/libavfilter/avfiltergraph.c:39: src/libavfilter/avfilter.h:847:32: note: declared here attribute_deprecated char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters ^~~~~~~~~~~~~~~~~~ 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.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_alphamerge.o CC libavfilter/vf_amplify.o CC libavfilter/vf_aspect.o CC libavfilter/vf_atadenoise.o CC libavfilter/vf_avgblur.o CC libavfilter/vf_bbox.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_chromakey.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 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] 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:691:9: note: declared here int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_colorlevels.o 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_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_deshake.o CC libavfilter/vf_despill.o CC libavfilter/vf_detelecine.o CC libavfilter/vf_displace.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_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 src/libavfilter/vf_geq.c: In function ‘geq_init’: src/libavfilter/vf_geq.c:146:51: warning: ‘%d’ directive output may be truncated writing between 1 and 11 bytes into a region of size 8 [-Wformat-truncation=] snprintf(bps_string, sizeof(bps_string), "%d", (1<bps) - 1); ^~ src/libavfilter/vf_geq.c:146:50: note: directive argument in the range [-2147483648, 2147483646] snprintf(bps_string, sizeof(bps_string), "%d", (1<bps) - 1); ^~~~ src/libavfilter/vf_geq.c:146:9: note: ‘snprintf’ output between 2 and 12 bytes into a destination of size 8 snprintf(bps_string, sizeof(bps_string), "%d", (1<bps) - 1); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_hwupload.o CC libavfilter/vf_hysteresis.o CC libavfilter/vf_idet.o CC libavfilter/vf_il.o CC libavfilter/vf_kerndeint.o CC libavfilter/vf_lenscorrection.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] 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:691:9: note: declared here int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_limiter.o 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_maskfun.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_pixdesctest.o CC libavfilter/vf_pp.o CC libavfilter/vf_pp7.o CC libavfilter/vf_premultiply.o CC libavfilter/vf_procamp_vaapi.o CC libavfilter/vf_pseudocolor.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] 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:691:9: note: declared here int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_psnr.o CC libavfilter/vf_pullup.o CC libavfilter/vf_qp.o CC libavfilter/vf_random.o CC libavfilter/vf_readeia608.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] 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:691:9: note: declared here int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type); ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_readvitc.o CC libavfilter/vf_remap.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] 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:691:9: note: declared here 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] 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:693:5: note: declared here int av_frame_set_qp_table(AVFrame *f, AVBufferRef *buf, int stride, int type); ^~~~~~~~~~~~~~~~~~~~~ CC libavfilter/vf_removegrain.o 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_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_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_tpad.o CC libavfilter/vf_transpose.o CC libavfilter/vf_transpose_vaapi.o CC libavfilter/vf_unsharp.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_yadif.o CC libavfilter/vf_zoompan.o CC libavfilter/video.o CC libavfilter/vsink_nullsink.o CC libavfilter/vsrc_cellauto.o CC libavfilter/vsrc_life.o CC libavfilter/vsrc_mandelbrot.o CC libavfilter/vsrc_mptestsrc.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 STRIP libavfilter/x86/af_volume.o CC libavfilter/x86/colorspacedsp_init.o X86ASM libavfilter/x86/scene_sad.o CC libavfilter/x86/scene_sad_init.o X86ASM libavfilter/x86/vf_blend.o CC libavfilter/x86/vf_blend_init.o X86ASM libavfilter/x86/vf_bwdif.o STRIP libavfilter/x86/scene_sad.o CC libavfilter/x86/vf_bwdif_init.o CC libavfilter/x86/vf_eq.o X86ASM libavfilter/x86/vf_framerate.o CC libavfilter/x86/vf_framerate_init.o STRIP libavfilter/x86/vf_framerate.o X86ASM libavfilter/x86/vf_fspp.o CC libavfilter/x86/vf_fspp_init.o X86ASM libavfilter/x86/vf_gradfun.o CC libavfilter/x86/vf_gradfun_init.o STRIP libavfilter/x86/vf_gradfun.o X86ASM libavfilter/x86/vf_hflip.o CC libavfilter/x86/vf_hflip_init.o X86ASM libavfilter/x86/vf_hqdn3d.o STRIP libavfilter/x86/vf_bwdif.o CC libavfilter/x86/vf_hqdn3d_init.o STRIP libavfilter/x86/vf_blend.o STRIP libavfilter/x86/vf_hflip.o X86ASM libavfilter/x86/vf_idet.o CC libavfilter/x86/vf_idet_init.o STRIP libavfilter/x86/vf_hqdn3d.o X86ASM libavfilter/x86/vf_interlace.o X86ASM libavfilter/x86/vf_limiter.o CC libavfilter/x86/vf_limiter_init.o STRIP libavfilter/x86/vf_fspp.o X86ASM libavfilter/x86/vf_maskedmerge.o STRIP libavfilter/x86/vf_idet.o CC libavfilter/x86/vf_maskedmerge_init.o CC libavfilter/x86/vf_noise.o STRIP libavfilter/x86/vf_limiter.o X86ASM libavfilter/x86/vf_overlay.o CC libavfilter/x86/vf_overlay_init.o X86ASM libavfilter/x86/vf_pp7.o STRIP libavfilter/x86/vf_maskedmerge.o CC libavfilter/x86/vf_pp7_init.o STRIP libavfilter/x86/vf_interlace.o X86ASM libavfilter/x86/vf_psnr.o CC libavfilter/x86/vf_psnr_init.o STRIP libavfilter/x86/vf_pp7.o X86ASM libavfilter/x86/vf_pullup.o STRIP libavfilter/x86/vf_overlay.o CC libavfilter/x86/vf_pullup_init.o X86ASM libavfilter/x86/vf_removegrain.o CC libavfilter/x86/vf_removegrain_init.o X86ASM libavfilter/x86/vf_ssim.o CC libavfilter/x86/vf_ssim_init.o X86ASM libavfilter/x86/vf_stereo3d.o STRIP libavfilter/x86/vf_psnr.o CC libavfilter/x86/vf_stereo3d_init.o STRIP libavfilter/x86/vf_pullup.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_w3fdif.o CC libavfilter/x86/vf_w3fdif_init.o X86ASM libavfilter/x86/vf_yadif.o STRIP libavfilter/x86/vf_ssim.o CC libavfilter/x86/vf_yadif_init.o STRIP libavfilter/x86/vf_threshold.o X86ASM libavfilter/x86/yadif-10.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 CC libavresample/audio_mix_matrix.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] 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 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] 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 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] 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 enum attribute_deprecated AVResampleDitherMethod { ^~~~~~~~~~~~~~~~~~~~~~ CC libavresample/dither.o STRIP libavfilter/x86/vf_removegrain.o STRIP libavfilter/x86/yadif-10.o CC libavresample/options.o CC libavresample/resample.o In file included from src/libavresample/audio_mix_matrix.c:28: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 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 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] 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 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] 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 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] 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 enum attribute_deprecated AVMixCoeffType { ^~~~~~~~~~~~~~ CC libavresample/utils.o STRIP libavfilter/x86/vf_yadif.o In file included from src/libavresample/options.c:27: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 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 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] 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 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] enum AVResampleDitherMethod dither_method; /**< dither method */ ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/options.c:26: src/libavresample/avresample.h:132:27: note: declared here 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] 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 enum attribute_deprecated AVMixCoeffType { ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:27: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 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 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] 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 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] 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 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] 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 enum attribute_deprecated AVMixCoeffType { ^~~~~~~~~~~~~~ src/libavresample/audio_mix.c:36:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] enum AVMixCoeffType coeff_type; ^~~~~~~~~~~~~~ In file included from src/libavresample/audio_mix.c:26: src/libavresample/avresample.h:112:27: note: declared here enum attribute_deprecated AVMixCoeffType { ^~~~~~~~~~~~~~ src/libavresample/audio_mix.c:62:33: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 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 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] 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 int avresample_build_matrix(uint64_t in_layout, uint64_t out_layout, ^~~~~~~~~~~~~~~~~~~~~~~ X86ASM libavresample/x86/audio_convert.o CC libavresample/x86/audio_convert_init.o X86ASM libavresample/x86/audio_mix.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] 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 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] 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 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] 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 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] 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 enum attribute_deprecated AVResampleDitherMethod { ^~~~~~~~~~~~~~~~~~~~~~ src/libavresample/dither.c:56:10: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 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 enum attribute_deprecated AVResampleDitherMethod { ^~~~~~~~~~~~~~~~~~~~~~ src/libavresample/dither.c:330:38: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 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 enum attribute_deprecated AVResampleDitherMethod { ^~~~~~~~~~~~~~~~~~~~~~ CC libavresample/x86/audio_mix_init.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] 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 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] 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 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] 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 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] 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 enum attribute_deprecated AVResampleDitherMethod { ^~~~~~~~~~~~~~~~~~~~~~ STRIP libavfilter/x86/yadif-16.o X86ASM libavresample/x86/dither.o CC libavresample/x86/dither_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] 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 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] 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 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] 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 enum attribute_deprecated AVResampleDitherMethod { ^~~~~~~~~~~~~~~~~~~~~~ AR libpostproc/libpostproc.a CC libswresample/audioconvert.o In file included from src/libavresample/utils.c:30: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 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 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] 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 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] enum AVResampleDitherMethod dither_method; /**< dither method */ ^~~~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:132:27: note: declared here 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] 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 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] enum AVResampleFilterType filter_type; ^~~~~~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:123:27: note: declared here 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] if (avresample_is_open(avr)) { ^~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:226:5: note: declared here int avresample_is_open(AVAudioResampleContext *avr); ^~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:253:5: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] avresample_close(avr); ^~~~~~~~~~~~~~~~ In file included from src/libavresample/utils.c:29: src/libavresample/avresample.h:245:6: note: declared here 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] avresample_close(*avr); ^~~~~~~~~~~~~~~~ src/libavresample/utils.c:262:6: note: declared here 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] if (avresample_is_open(avr)) { ^~ src/libavresample/utils.c:257:5: note: declared here int avresample_is_open(AVAudioResampleContext *avr) ^~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:508:9: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] avresample_close(avr); ^~~~~~~~~~~~~~~~ src/libavresample/utils.c:262:6: note: declared here 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] ret = avresample_convert(avr, out_data, out_linesize, ^~~ src/libavresample/utils.c:330:25: note: declared here 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] if (!avresample_is_open(avr)) { ^~ src/libavresample/utils.c:257:5: note: declared here int avresample_is_open(AVAudioResampleContext *avr) ^~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:609:9: warning: ‘avresample_config’ is deprecated [-Wdeprecated-declarations] if ((ret = avresample_config(avr, out, in)) < 0) ^~ src/libavresample/utils.c:505:5: note: declared here int avresample_config(AVAudioResampleContext *avr, AVFrame *out, AVFrame *in) ^~~~~~~~~~~~~~~~~ src/libavresample/utils.c:611:9: warning: ‘avresample_open’ is deprecated [-Wdeprecated-declarations] if ((ret = avresample_open(avr)) < 0) ^~ src/libavresample/utils.c:36:5: note: declared here int avresample_open(AVAudioResampleContext *avr) ^~~~~~~~~~~~~~~ src/libavresample/utils.c:622:13: warning: ‘avresample_get_out_samples’ is deprecated [-Wdeprecated-declarations] 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 int avresample_get_out_samples(AVAudioResampleContext *avr, int in_nb_samples); ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:625:21: warning: ‘avresample_close’ is deprecated [-Wdeprecated-declarations] avresample_close(avr); ^~~~~~~~~~~~~~~~ src/libavresample/utils.c:262:6: note: declared here 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] 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 int avresample_get_delay(AVAudioResampleContext *avr); ^~~~~~~~~~~~~~~~~~~~ src/libavresample/utils.c:764:5: warning: ‘avresample_available’ is deprecated [-Wdeprecated-declarations] samples += avresample_available(avr); ^~~~~~~ src/libavresample/utils.c:748:5: note: declared here int avresample_available(AVAudioResampleContext *avr) ^~~~~~~~~~~~~~~~~~~~ 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] 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 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] 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 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] 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 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] 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 enum attribute_deprecated AVResampleDitherMethod { ^~~~~~~~~~~~~~~~~~~~~~ src/libavresample/x86/dither_init.c:35:38: warning: ‘AVResampleDitherMethod’ is deprecated [-Wdeprecated-declarations] 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 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] 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 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] 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 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] 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 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] 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 enum attribute_deprecated AVMixCoeffType { ^~~~~~~~~~~~~~ In file included from src/libavresample/resample.c:25: src/libavresample/internal.h:63:10: warning: ‘AVMixCoeffType’ is deprecated [-Wdeprecated-declarations] 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 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] 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 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] 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 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] 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 enum attribute_deprecated AVResampleFilterType { ^~~~~~~~~~~~~~~~~~~~ STRIP libavfilter/x86/colorspacedsp.o CC libswresample/rematrix.o CC libswresample/resample_dsp.o CC libswresample/resample.o CC libswresample/swresample.o STRIP libavresample/x86/dither.o CC libswresample/swresample_frame.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 STRIP libavresample/x86/audio_convert.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 CC libswscale/utils.o STRIP libswresample/x86/resample.o CC libswscale/vscale.o CC libswscale/x86/hscale_fast_bilinear_simd.o X86ASM libswscale/x86/input.o X86ASM libswscale/x86/output.o CC libswscale/x86/rgb2rgb.o X86ASM libswscale/x86/rgb_2_rgb.o STRIP libswresample/x86/audio_convert.o X86ASM libswscale/x86/scale.o STRIP libswscale/x86/rgb_2_rgb.o CC libswscale/x86/swscale.o CC libswscale/x86/yuv2rgb.o STRIP libswscale/x86/input.o STRIP libswscale/x86/output.o CC libswscale/yuv2rgb.o CC libavutil/adler32.o CC libavutil/aes.o CC libavutil/aes_ctr.o CC libavutil/audio_fifo.o CC libavutil/avsscanf.o STRIP libavresample/x86/audio_mix.o CC libavutil/avstring.o CC libavutil/base64.o CC libavutil/blowfish.o CC libavutil/bprint.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 CC libavutil/des.o CC libavutil/dict.o CC libavutil/display.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/fixed_dsp.o STRIP libswscale/x86/scale.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/utils.o CC libavutil/x86/cpu.o X86ASM libavutil/x86/cpuid.o src/libavutil/timecode.c: In function ‘av_timecode_make_string’: src/libavutil/timecode.c:103: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=] snprintf(buf, AV_TIMECODE_STR_SIZE, "%s%02d:%02d:%02d%c%02d", ^~~~ src/libavutil/timecode.c:103:41: note: directive argument in the range [0, 2147483647] snprintf(buf, AV_TIMECODE_STR_SIZE, "%s%02d:%02d:%02d%c%02d", ^~~~~~~~~~~~~~~~~~~~~~~~ src/libavutil/timecode.c:103:5: note: ‘snprintf’ output between 12 and 32 bytes into a destination of size 23 snprintf(buf, AV_TIMECODE_STR_SIZE, "%s%02d:%02d:%02d%c%02d", ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ neg ? "-" : "", ~~~~~~~~~~~~~~~ hh, mm, ss, drop ? ';' : ':', ff); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ X86ASM libavutil/x86/fixed_dsp.o STRIP libavutil/x86/cpuid.o CC libavutil/x86/fixed_dsp_init.o X86ASM libavutil/x86/float_dsp.o 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 CC libavutil/x86/lls_init.o X86ASM libavutil/x86/pixelutils.o STRIP libavutil/x86/imgutils.o CC libavutil/x86/pixelutils_init.o CC libavutil/xga_font_data.o CC libavutil/xtea.o HOSTLD doc/print_options STRIP libavutil/x86/lls.o AR libavfilter/libavfilter.a AR libavresample/libavresample.a GENTEXI doc/avoptions_format.texi AR libswresample/libswresample.a GENTEXI doc/avoptions_codec.texi STRIP libavutil/x86/float_dsp.o HTML doc/ffmpeg-utils.html HTML doc/ffmpeg-scaler.html HTML doc/ffmpeg-resampler.html HTML doc/ffmpeg-filters.html Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. HTML doc/libavutil.html HTML doc/libswscale.html Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. HTML doc/libswresample.html STRIP libavutil/x86/pixelutils.o HTML doc/libavfilter.html HTML doc/developer.html Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. HTML doc/faq.html HTML doc/fate.html Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. HTML doc/general.html Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. HTML doc/git-howto.html HTML doc/mailing-list-faq.html Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. HTML doc/nut.html HTML doc/platform.html Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. POD doc/ffmpeg-utils.pod Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. POD doc/ffmpeg-scaler.pod POD doc/ffmpeg-resampler.pod Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at /usr/share/texinfo/Texinfo/Parser.pm line 5481. Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*(\@(c|comment)((\@|\s+).*)?)?/ at /usr/share/texinfo/Texinfo/Parser.pm line 5485. POD doc/ffmpeg-filters.pod POD doc/libswscale.pod POD doc/libswresample.pod POD doc/libavutil.pod POD doc/libavfilter.pod MAN doc/ffmpeg-utils.1 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/transcoding.c INSTALL home/fate/ffmpeg/doc/examples/vaapi_transcode.c INSTALL home/fate/ffmpeg/doc/examples/metadata.c INSTALL home/fate/ffmpeg/doc/examples/filtering_video.c INSTALL home/fate/ffmpeg/doc/examples/muxing.c INSTALL home/fate/ffmpeg/doc/examples/avio_dir_cmd.c INSTALL home/fate/ffmpeg/doc/examples/encode_audio.c INSTALL home/fate/ffmpeg/doc/examples/hw_decode.c INSTALL home/fate/ffmpeg/doc/examples/filtering_audio.c INSTALL home/fate/ffmpeg/doc/examples/http_multiclient.c INSTALL home/fate/ffmpeg/doc/examples/decode_video.c INSTALL home/fate/ffmpeg/doc/examples/resampling_audio.c INSTALL home/fate/ffmpeg/doc/examples/remuxing.c INSTALL home/fate/ffmpeg/doc/examples/extract_mvs.c INSTALL home/fate/ffmpeg/doc/examples/avio_reading.c INSTALL home/fate/ffmpeg/doc/examples/qsvdec.c INSTALL home/fate/ffmpeg/doc/examples/vaapi_encode.c INSTALL home/fate/ffmpeg/doc/examples/decode_audio.c INSTALL home/fate/ffmpeg/doc/examples/filter_audio.c INSTALL home/fate/ffmpeg/doc/examples/transcode_aac.c INSTALL home/fate/ffmpeg/doc/examples/demuxing_decoding.c INSTALL home/fate/ffmpeg/doc/examples/encode_video.c INSTALL home/fate/ffmpeg/doc/examples/scaling_video.c INSTALL home/fate/ffmpeg/doc/examples/README INSTALL home/fate/ffmpeg/doc/examples/Makefile INSTALL home/fate/ffmpeg/doc/examples/transcoding.c INSTALL home/fate/ffmpeg/doc/examples/vaapi_transcode.c INSTALL home/fate/ffmpeg/doc/examples/metadata.c INSTALL home/fate/ffmpeg/doc/examples/filtering_video.c INSTALL home/fate/ffmpeg/doc/examples/muxing.c INSTALL home/fate/ffmpeg/doc/examples/avio_dir_cmd.c INSTALL home/fate/ffmpeg/doc/examples/encode_audio.c INSTALL home/fate/ffmpeg/doc/examples/hw_decode.c INSTALL home/fate/ffmpeg/doc/examples/filtering_audio.c INSTALL home/fate/ffmpeg/doc/examples/http_multiclient.c INSTALL home/fate/ffmpeg/doc/examples/decode_video.c INSTALL home/fate/ffmpeg/doc/examples/resampling_audio.c INSTALL home/fate/ffmpeg/doc/examples/remuxing.c INSTALL home/fate/ffmpeg/doc/examples/extract_mvs.c INSTALL home/fate/ffmpeg/doc/examples/avio_reading.c INSTALL home/fate/ffmpeg/doc/examples/qsvdec.c INSTALL home/fate/ffmpeg/doc/examples/vaapi_encode.c INSTALL home/fate/ffmpeg/doc/examples/decode_audio.c INSTALL home/fate/ffmpeg/doc/examples/filter_audio.c INSTALL home/fate/ffmpeg/doc/examples/transcode_aac.c INSTALL home/fate/ffmpeg/doc/examples/demuxing_decoding.c INSTALL home/fate/ffmpeg/doc/examples/encode_video.c INSTALL home/fate/ffmpeg/doc/examples/scaling_video.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/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_vaapi.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_videotoolbox.h INSTALL home/fate/ffmpeg/libavutil/hwcontext_vdpau.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/xtea.h INSTALL home/fate/ffmpeg/libavutil/tea.h INSTALL home/fate/ffmpeg/libavutil/lzo.h INSTALL libavutil/avconfig.h INSTALL libavutil/ffversion.h INSTALL libavutil/libavutil.pc