Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2017
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 91.83 KB | None | 0 0
  1. pgorley@null:~/dev/ffmpeg# git log -1
  2. commit 4ee77cefaed0cf19b03b4b6f4945f52301165469
  3. Author: Michael Niedermayer <michael@niedermayer.cc>
  4. Date: Mon Oct 2 04:18:23 2017 +0200
  5.  
  6. avcodec/proresdec2: Use LAST_SKIP_BITS where possible
  7.  
  8. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
  9. pgorley@null:~/dev/ffmpeg# git diff
  10. diff --git a/libavdevice/fbdev_enc.c b/libavdevice/fbdev_enc.c
  11. index b4e5f84..a9be608 100644
  12. --- a/libavdevice/fbdev_enc.c
  13. +++ b/libavdevice/fbdev_enc.c
  14. @@ -28,6 +28,7 @@
  15. #include "libavutil/mem.h"
  16. #include "libavutil/opt.h"
  17. #include "libavformat/avformat.h"
  18. +#include "libavformat/os_support.h"
  19. #include "fbdev_common.h"
  20. #include "avdevice.h"
  21.  
  22. diff --git a/libavformat/os_support.h b/libavformat/os_support.h
  23. index 91220e9..5432460 100644
  24. --- a/libavformat/os_support.h
  25. +++ b/libavformat/os_support.h
  26. @@ -65,6 +65,12 @@
  27. # undef lseek
  28. # endif
  29. # define lseek(f,p,w) lseek64((f), (p), (w))
  30. +# if defined(__USE_FILE_OFFSET64) && __ANDROID_API__ < 21 && !defined(__LP64__)
  31. +# ifdef mmap
  32. +# undef mmap
  33. +# endif
  34. +void* mmap(void*, size_t, int, int, int, __kernel_off_t);
  35. +# endif
  36. #endif
  37.  
  38. static inline int is_dos_path(const char *path)
  39. diff --git a/libavutil/file.c b/libavutil/file.c
  40. index 7bdf6cd..c4b2253 100644
  41. --- a/libavutil/file.c
  42. +++ b/libavutil/file.c
  43. @@ -21,6 +21,7 @@
  44. #include "internal.h"
  45. #include "log.h"
  46. #include "mem.h"
  47. +#include "libavformat/os_support.h"
  48. #include <fcntl.h>
  49. #include <sys/stat.h>
  50. #if HAVE_UNISTD_H
  51. pgorley@null:~/dev/ffmpeg# PATH="/tmp/my-android-toolchain/bin:${PATH}" ./configure --arch=armv7 --cpu=armv7-a --enable-cross-compile --target-os=android --cross-prefix=arm-linux-androideabi- --cc=arm-linux-androideabi-clang
  52. install prefix /usr/local
  53. source path .
  54. C compiler arm-linux-androideabi-clang
  55. C library bionic
  56. host C compiler gcc
  57. host C library glibc
  58. ARCH arm (armv7-a)
  59. big-endian no
  60. runtime cpu detection yes
  61. ARMv5TE enabled yes
  62. ARMv6 enabled yes
  63. ARMv6T2 enabled yes
  64. VFP enabled yes
  65. NEON enabled yes
  66. THUMB enabled no
  67. debug symbols yes
  68. strip symbols yes
  69. optimize for size no
  70. optimizations yes
  71. static yes
  72. shared no
  73. postprocessing support no
  74. network support yes
  75. threading support pthreads
  76. safe bitstream reader yes
  77. texi2html enabled no
  78. perl enabled yes
  79. pod2man enabled yes
  80. makeinfo enabled yes
  81. makeinfo supports HTML yes
  82.  
  83. External libraries:
  84. libxcb_shape libxcb_shm libxcb_xfixes xlib zlib
  85.  
  86. External libraries providing hardware acceleration:
  87. v4l2_m2m
  88.  
  89. Libraries:
  90. avcodec avdevice avfilter avformat avutil swresample swscale
  91.  
  92. Programs:
  93. ffmpeg ffprobe ffserver
  94.  
  95. Enabled decoders:
  96. aac alac cpia fmvc magicyuv opus ppm srgc vp3
  97. aac_fixed alias_pix cscd fourxm mdec paf_audio prores srt vp5
  98. aac_latm als cyuv fraps metasound paf_video prores_lgpl ssa vp6
  99. aasc amrnb dca frwu microdvd pam psd stl vp6a
  100. ac3 amrwb dds g2m mimic pbm ptx subrip vp6f
  101. ac3_fixed amv dfa g723_1 mjpeg pcm_alaw qcelp subviewer vp7
  102. adpcm_4xm anm dirac g729 mjpegb pcm_bluray qdm2 subviewer1 vp8
  103. adpcm_adx ansi dnxhd gdv mlp pcm_dvd qdmc sunrast vp8_v4l2m2m
  104. adpcm_afc ape dolby_e gif mmvideo pcm_f16le qdraw svq1 vp9
  105. adpcm_aica apng dpx gremlin_dpcm motionpixels pcm_f24le qpeg svq3 vp9_v4l2m2m
  106. adpcm_ct ass dsd_lsbf gsm movtext pcm_f32be qtrle tak vplayer
  107. adpcm_dtk asv1 dsd_lsbf_planar gsm_ms mp1 pcm_f32le r10k targa vqa
  108. adpcm_ea asv2 dsd_msbf h261 mp1float pcm_f64be r210 targa_y216 wavpack
  109. adpcm_ea_maxis_xa atrac1 dsd_msbf_planar h263 mp2 pcm_f64le ra_144 tdsc webp
  110. adpcm_ea_r1 atrac3 dsicinaudio h263_v4l2m2m mp2float pcm_lxf ra_288 text webvtt
  111. adpcm_ea_r2 atrac3al dsicinvideo h263i mp3 pcm_mulaw ralf theora wmalossless
  112. adpcm_ea_r3 atrac3p dss_sp h263p mp3adu pcm_s16be rawvideo thp wmapro
  113. adpcm_ea_xas atrac3pal dst h264 mp3adufloat pcm_s16be_planar realtext tiertexseqvideo wmav1
  114. adpcm_g722 aura dvaudio h264_v4l2m2m mp3float pcm_s16le rl2 tiff wmav2
  115. adpcm_g726 aura2 dvbsub hap mp3on4 pcm_s16le_planar roq tmv wmavoice
  116. adpcm_g726le avrn dvdsub hevc mp3on4float pcm_s24be roq_dpcm truehd wmv1
  117. adpcm_ima_amv avrp dvvideo hnm4_video mpc7 pcm_s24daud rpza truemotion1 wmv2
  118. adpcm_ima_apc avs dxa hq_hqa mpc8 pcm_s24le rscc truemotion2 wmv3
  119. adpcm_ima_dat4 avui dxtory hqx mpeg1_v4l2m2m pcm_s24le_planar rv10 truemotion2rt wmv3image
  120. adpcm_ima_dk3 ayuv dxv huffyuv mpeg1video pcm_s32be rv20 truespeech wnv1
  121. adpcm_ima_dk4 bethsoftvid eac3 iac mpeg2_v4l2m2m pcm_s32le rv30 tscc wrapped_avframe
  122. adpcm_ima_ea_eacs bfi eacmv idcin mpeg2video pcm_s32le_planar rv40 tscc2 ws_snd1
  123. adpcm_ima_ea_sead bink eamad idf mpeg4 pcm_s64be s302m tta xan_dpcm
  124. adpcm_ima_iss binkaudio_dct eatgq iff_ilbm mpeg4_v4l2m2m pcm_s64le sami twinvq xan_wc3
  125. adpcm_ima_oki binkaudio_rdft eatgv imc mpegvideo pcm_s8 sanm txd xan_wc4
  126. adpcm_ima_qt bintext eatqi indeo2 mpl2 pcm_s8_planar scpr ulti xbin
  127. adpcm_ima_rad bitpacked eightbps indeo3 msa1 pcm_u16be screenpresso utvideo xbm
  128. adpcm_ima_smjpeg bmp eightsvx_exp indeo4 mscc pcm_u16le sdx2_dpcm v210 xface
  129. adpcm_ima_wav bmv_audio eightsvx_fib indeo5 msmpeg4v1 pcm_u24be sgi v210x xl
  130. adpcm_ima_ws bmv_video escape124 interplay_acm msmpeg4v2 pcm_u24le sgirle v308 xma1
  131. adpcm_ms brender_pix escape130 interplay_dpcm msmpeg4v3 pcm_u32be sheervideo v408 xma2
  132. adpcm_mtaf c93 evrc interplay_video msrle pcm_u32le shorten v410 xpm
  133. adpcm_psx cavs exr jacosub mss1 pcm_u8 sipr vb xsub
  134. adpcm_sbpro_2 ccaption ffv1 jpeg2000 mss2 pcm_zork smackaud vble xwd
  135. adpcm_sbpro_3 cdgraphics ffvhuff jpegls msvideo1 pcx smacker vc1 y41p
  136. adpcm_sbpro_4 cdxl ffwavesynth jv mszh pgm smc vc1_v4l2m2m ylc
  137. adpcm_swf cfhd fic kgv1 mts2 pgmyuv smvjpeg vc1image yop
  138. adpcm_thp cinepak fits kmvc mvc1 pgssub snow vcr1 yuv4
  139. adpcm_thp_le clearvideo flac lagarith mvc2 pictor sol_dpcm vmdaudio zero12v
  140. adpcm_vima cljr flashsv loco mxpeg pixlet sonic vmdvideo zerocodec
  141. adpcm_xa cllc flashsv2 m101 nellymoser pjs sp5x vmnc zlib
  142. adpcm_yamaha comfortnoise flic mace3 nuv png speedhq vorbis zmbv
  143. aic cook flv mace6 on2avc
  144.  
  145. Enabled encoders:
  146. a64multi apng eac3 jpegls pbm pcm_s32le_planar prores srt vp8_v4l2m2m
  147. a64multi5 ass ffv1 ljpeg pcm_alaw pcm_s64be prores_aw ssa wavpack
  148. aac asv1 ffvhuff mjpeg pcm_f32be pcm_s64le prores_ks subrip webvtt
  149. ac3 asv2 fits mlp pcm_f32le pcm_s8 qtrle sunrast wmav1
  150. ac3_fixed avrp flac movtext pcm_f64be pcm_s8_planar r10k svq1 wmav2
  151. adpcm_adx avui flashsv mp2 pcm_f64le pcm_u16be r210 targa wmv1
  152. adpcm_g722 ayuv flashsv2 mp2fixed pcm_mulaw pcm_u16le ra_144 text wmv2
  153. adpcm_g726 bmp flv mpeg1video pcm_s16be pcm_u24be rawvideo tiff wrapped_avframe
  154. adpcm_g726le cinepak g723_1 mpeg2video pcm_s16be_planar pcm_u24le roq truehd xbm
  155. adpcm_ima_qt cljr gif mpeg4 pcm_s16le pcm_u32be roq_dpcm tta xface
  156. adpcm_ima_wav comfortnoise h261 mpeg4_v4l2m2m pcm_s16le_planar pcm_u32le rv10 utvideo xsub
  157. adpcm_ms dca h263 msmpeg4v2 pcm_s24be pcm_u8 rv20 v210 xwd
  158. adpcm_swf dnxhd h263_v4l2m2m msmpeg4v3 pcm_s24daud pcx s302m v308 y41p
  159. adpcm_yamaha dpx h263p msvideo1 pcm_s24le pgm sgi v408 yuv4
  160. alac dvbsub h264_v4l2m2m nellymoser pcm_s24le_planar pgmyuv snow v410 zlib
  161. alias_pix dvdsub huffyuv opus pcm_s32be png sonic vc2 zmbv
  162. amv dvvideo jpeg2000 pam pcm_s32le ppm sonic_ls vorbis
  163.  
  164. Enabled hwaccels:
  165.  
  166. Enabled parsers:
  167. aac cavsvideo dpx flac h264 mpeg4video png sipr vp3
  168. aac_latm cook dvaudio g729 hevc mpegaudio pnm tak vp8
  169. ac3 dca dvbsub gsm mjpeg mpegvideo rv30 vc1 vp9
  170. adx dirac dvd_nav h261 mlp opus rv40 vorbis xma
  171. bmp dnxhd dvdsub h263
  172.  
  173. Enabled demuxers:
  174. aa bintext ffm image2 iv8 mpsub pcm_u16be sds v210
  175. aac bit ffmetadata image2_alias_pix ivf msf pcm_u16le sdx v210x
  176. ac3 bmv filmstrip image2_brender_pix ivr msnwc_tcp pcm_u24be segafilm vag
  177. acm boa fits image2pipe jacosub mtaf pcm_u24le shorten vc1
  178. act brstm flac image_bmp_pipe jv mtv pcm_u32be siff vc1t
  179. adf c93 flic image_dds_pipe live_flv musx pcm_u32le sln vivo
  180. adp caf flv image_dpx_pipe lmlm4 mv pcm_u8 smacker vmd
  181. ads cavsvideo fourxm image_exr_pipe loas mvi pjs smjpeg vobsub
  182. adx cdg frm image_j2k_pipe lrc mxf pmp smush voc
  183. aea cdxl fsb image_jpeg_pipe lvf mxg pva sol vpk
  184. afc cine g722 image_jpegls_pipe lxf nc pvf sox vplayer
  185. aiff concat g723_1 image_pam_pipe m4v nistsphere qcp spdif vqf
  186. aix data g726 image_pbm_pipe matroska nsv r3d srt w64
  187. amr daud g726le image_pcx_pipe mgsts nut rawvideo stl wav
  188. anm dcstr g729 image_pgm_pipe microdvd nuv realtext str wc3
  189. apc dfa gdv image_pgmyuv_pipe mjpeg ogg redspark subviewer webm_dash_manifest
  190. ape dirac genh image_pictor_pipe mjpeg_2000 oma rl2 subviewer1 webvtt
  191. apng dnxhd gif image_png_pipe mlp paf rm sup wsaud
  192. aqtitle dsf gsm image_ppm_pipe mlv pcm_alaw roq svag wsd
  193. asf dsicin gxf image_psd_pipe mm pcm_f32be rpl swf wsvqa
  194. asf_o dss h261 image_qdraw_pipe mmf pcm_f32le rsd tak wtv
  195. ass dts h263 image_sgi_pipe mov pcm_f64be rso tedcaptions wv
  196. ast dtshd h264 image_sunrast_pipe mp3 pcm_f64le rtp thp wve
  197. au dv hevc image_svg_pipe mpc pcm_mulaw rtsp threedostr xa
  198. avi dvbsub hls image_tiff_pipe mpc8 pcm_s16be s337m tiertexseq xbin
  199. avr dvbtxt hnm image_webp_pipe mpegps pcm_s16le sami tmv xmv
  200. avs dxa ico image_xpm_pipe mpegts pcm_s24be sap truehd xvag
  201. bethsoftvid ea idcin ingenient mpegtsraw pcm_s24le sbg tta xwma
  202. bfi ea_cdata idf ipmovie mpegvideo pcm_s32be scc tty yop
  203. bfstm eac3 iff ircam mpjpeg pcm_s32le sdp txd yuv4mpegpipe
  204. bink epaf ilbc iss mpl2 pcm_s8 sdr2
  205.  
  206. Enabled muxers:
  207. a64 dash framehash ilbc mlp mxf_opatom pcm_s24le rtp_mpegts tgp
  208. ac3 data framemd5 image2 mmf null pcm_s32be rtsp truehd
  209. adts daud g722 image2pipe mov nut pcm_s32le sap tta
  210. adx dirac g723_1 ipod mp2 oga pcm_s8 scc uncodedframecrc
  211. aiff dnxhd g726 ircam mp3 ogg pcm_u16be segment vc1
  212. amr dts g726le ismv mp4 ogv pcm_u16le singlejpeg vc1t
  213. apng dv gif ivf mpeg1system oma pcm_u24be smjpeg voc
  214. asf eac3 gsm jacosub mpeg1vcd opus pcm_u24le smoothstreaming w64
  215. asf_stream f4v gxf latm mpeg1video pcm_alaw pcm_u32be sox wav
  216. ass ffm h261 lrc mpeg2dvd pcm_f32be pcm_u32le spdif webm
  217. ast ffmetadata h263 m4v mpeg2svcd pcm_f32le pcm_u8 spx webm_chunk
  218. au fifo h264 matroska mpeg2video pcm_f64be psp srt webm_dash_manifest
  219. avi filmstrip hash matroska_audio mpeg2vob pcm_f64le rawvideo stream_segment webp
  220. avm2 fits hds md5 mpegts pcm_mulaw rm sup webvtt
  221. bit flac hevc microdvd mpjpeg pcm_s16be roq swf wtv
  222. caf flv hls mjpeg mxf pcm_s16le rso tee wv
  223. cavsvideo framecrc ico mkvtimestamp_v2 mxf_d10 pcm_s24be rtp tg2 yuv4mpegpipe
  224. crc
  225.  
  226. Enabled protocols:
  227. async data ftp http md5 pipe rtmpt subfile udp
  228. cache ffrtmphttp gopher httpproxy mmsh prompeg rtp tcp udplite
  229. concat file hls icecast mmst rtmp srtp tee unix
  230. crypto
  231.  
  232. Enabled filters:
  233. abench anull bench dctdnoiz flanger limiter pan settb swapuv
  234. abitscope anullsink biquad deband floodfill loop perms showcqt tblend
  235. acompressor anullsrc bitplanenoise decimate format loudnorm pixdesctest showfreqs telecine
  236. acopy apad blackdetect deflate fps lowpass pixscope showinfo testsrc
  237. acrossfade aperms blend deflicker framepack lumakey premultiply showpalette testsrc2
  238. acrusher aphasemeter bwdif dejudder framerate lut prewitt showspectrum threshold
  239. adelay aphaser cellauto deshake framestep lut2 pseudocolor showspectrumpic thumbnail
  240. adrawgraph apulsator channelmap despill gblur lut3d psnr showvolume tile
  241. aecho arealtime channelsplit detelecine gradfun lutrgb qp showwaves tlut2
  242. aemphasis aresample chorus dilation haas lutyuv random showwavespic tonemap
  243. aeval areverse chromakey displace haldclut mandelbrot readeia608 shuffleframes transpose
  244. aevalsrc aselect ciescope doubleweave haldclutsrc maskedclamp readvitc shuffleplanes treble
  245. afade asendcmd codecview drawbox hdcd maskedmerge realtime sidechaincompress tremolo
  246. afftfilt asetnsamples color drawgraph headphone mergeplanes remap sidechaingate trim
  247. afir asetpts colorbalance drawgrid hflip mestimate removegrain sidedata unpremultiply
  248. aformat asetrate colorchannelmixer dynaudnorm highpass metadata removelogo signalstats unsharp
  249. agate asettb colorkey earwax histogram midequalizer replaygain silencedetect vectorscope
  250. ahistogram ashowinfo colorlevels ebur128 hqx minterpolate reverse silenceremove vflip
  251. ainterleave asidedata colorspace edgedetect hstack movie rgbtestsrc sine vibrato
  252. alimiter asplit compand elbg hue negate roberts smptebars vignette
  253. allpass astats compensationdelay equalizer hwdownload nlmeans rotate smptehdbars vmafmotion
  254. allrgb astreamselect concat erosion hwmap noformat scale sobel volume
  255. allyuv atadenoise convolution extractplanes hwupload noise scale2ref spectrumsynth volumedetect
  256. aloop atempo convolve extrastereo hysteresis null select split vstack
  257. alphaextract atrim copy fade idet nullsink selectivecolor ssim w3fdif
  258. alphamerge avectorscope crop fftfilt il nullsrc sendcmd stereotools waveform
  259. amerge avgblur crossfeed field inflate oscilloscope separatefields stereowiden weave
  260. ametadata bandpass crystalizer fieldhint interleave overlay setdar streamselect xbr
  261. amix bandreject curves fieldmatch join pad setfield superequalizer yadif
  262. amovie bass datascope fieldorder lenscorrection palettegen setpts surround yuvtestsrc
  263. anequalizer bbox dcshift firequalizer life paletteuse setsar swaprect zoompan
  264. anoisesrc
  265.  
  266. Enabled bsfs:
  267. aac_adtstoasc dump_extradata hevc_mp4toannexb mjpeg2jpeg mov2textsub mpeg4_unpack_bframes null text2movsub vp9_superframe
  268. chomp extract_extradata imx_dump_header mjpega_dump_header mp3_header_decompress noise remove_extradata vp9_raw_reorder vp9_superframe_split
  269. dca_core h264_mp4toannexb
  270.  
  271. Enabled indevs:
  272. fbdev lavfi v4l2
  273.  
  274. Enabled outdevs:
  275. fbdev v4l2
  276.  
  277. License: LGPL version 2.1 or later
  278. Creating configuration files ...
  279.  
  280. WARNING: arm-linux-androideabi-pkg-config not found, library detection may fail.
  281. pgorley@null:~/dev/ffmpeg# PATH="/tmp/my-android-toolchain/bin:${PATH}" make -j4
  282. GEN libavutil/libavutil.version
  283. GEN libswscale/libswscale.version
  284. GEN libswresample/libswresample.version
  285. GEN libavcodec/libavcodec.version
  286. GEN libavformat/libavformat.version
  287. GEN libavfilter/libavfilter.version
  288. GEN libavdevice/libavdevice.version
  289. CC libavdevice/alldevices.o
  290. CC libavdevice/avdevice.o
  291. CC libavdevice/fbdev_common.o
  292. CC libavdevice/fbdev_dec.o
  293. CC libavdevice/fbdev_enc.o
  294. CC libavdevice/lavfi.o
  295. CC libavdevice/timefilter.o
  296. CC libavdevice/utils.o
  297. CC libavdevice/v4l2-common.o
  298. CC libavdevice/v4l2.o
  299. CC libavdevice/v4l2enc.o
  300. libavdevice/v4l2.c:135:9: warning: incompatible pointer types assigning to 'int (*)(int, unsigned long, ...)' from 'int (int, int, ...)' [-Wincompatible-pointer-types]
  301. SET_WRAPPERS();
  302. ^~~~~~~~~~~~~~
  303. libavdevice/v4l2.c:121:17: note: expanded from macro 'SET_WRAPPERS'
  304. s->ioctl_f = prefix ## ioctl; \
  305. ^ ~~~~~
  306. libavdevice/v4l2.c:135:9: warning: incompatible pointer types assigning to 'void *(*)(void *, size_t, int, int, int, int64_t)' (aka 'void *(*)(void *, unsigned int, int, int, int, long long)') from
  307. 'void *(void *, size_t, int, int, int, __kernel_off_t)' (aka 'void *(void *, unsigned int, int, int, int, long)') [-Wincompatible-pointer-types]
  308. SET_WRAPPERS();
  309. ^~~~~~~~~~~~~~
  310. libavdevice/v4l2.c:123:17: note: expanded from macro 'SET_WRAPPERS'
  311. s->mmap_f = prefix ## mmap; \
  312. ^ ~~~~
  313. GEN libavdevice/libavdevice.pc
  314. CC libavfilter/aeval.o
  315. CC libavfilter/af_acopy.o
  316. CC libavfilter/af_acrusher.o
  317. CC libavfilter/af_adelay.o
  318. CC libavfilter/af_aecho.o
  319. CC libavfilter/af_aemphasis.o
  320. CC libavfilter/af_afade.o
  321. CC libavfilter/af_afftfilt.o
  322. 2 warnings generated.
  323. CC libavfilter/af_afir.o
  324. CC libavfilter/af_aformat.o
  325. CC libavfilter/af_agate.o
  326. CC libavfilter/af_amerge.o
  327. CC libavfilter/af_alimiter.o
  328. CC libavfilter/af_amix.o
  329. CC libavfilter/af_anequalizer.o
  330. CC libavfilter/af_anull.o
  331. CC libavfilter/af_apad.o
  332. CC libavfilter/af_aphaser.o
  333. CC libavfilter/af_apulsator.o
  334. CC libavfilter/af_aresample.o
  335. CC libavfilter/af_asetnsamples.o
  336. CC libavfilter/af_asetrate.o
  337. CC libavfilter/af_ashowinfo.o
  338. CC libavfilter/af_astats.o
  339. CC libavfilter/af_atempo.o
  340. CC libavfilter/af_biquads.o
  341. CC libavfilter/af_channelmap.o
  342. CC libavfilter/af_channelsplit.o
  343. CC libavfilter/af_chorus.o
  344. CC libavfilter/af_compand.o
  345. CC libavfilter/af_compensationdelay.o
  346. CC libavfilter/af_crossfeed.o
  347. CC libavfilter/af_crystalizer.o
  348. CC libavfilter/af_dcshift.o
  349. CC libavfilter/af_dynaudnorm.o
  350. CC libavfilter/af_earwax.o
  351. CC libavfilter/af_extrastereo.o
  352. CC libavfilter/af_firequalizer.o
  353. CC libavfilter/af_flanger.o
  354. CC libavfilter/af_haas.o
  355. CC libavfilter/af_hdcd.o
  356. CC libavfilter/af_headphone.o
  357. CC libavfilter/af_join.o
  358. CC libavfilter/af_loudnorm.o
  359. CC libavfilter/af_pan.o
  360. CC libavfilter/af_replaygain.o
  361. CC libavfilter/af_sidechaincompress.o
  362. CC libavfilter/af_silencedetect.o
  363. CC libavfilter/af_silenceremove.o
  364. CC libavfilter/af_stereotools.o
  365. CC libavfilter/af_stereowiden.o
  366. CC libavfilter/af_superequalizer.o
  367. CC libavfilter/af_surround.o
  368. CC libavfilter/af_tremolo.o
  369. CC libavfilter/af_vibrato.o
  370. CC libavfilter/af_volume.o
  371. CC libavfilter/af_volumedetect.o
  372. CC libavfilter/allfilters.o
  373. CC libavfilter/asink_anullsink.o
  374. CC libavfilter/asrc_anoisesrc.o
  375. CC libavfilter/asrc_anullsrc.o
  376. CC libavfilter/asrc_sine.o
  377. CC libavfilter/audio.o
  378. CC libavfilter/avf_abitscope.o
  379. CC libavfilter/avf_ahistogram.o
  380. CC libavfilter/avf_aphasemeter.o
  381. CC libavfilter/avf_avectorscope.o
  382. CC libavfilter/avf_concat.o
  383. CC libavfilter/avf_showcqt.o
  384. CC libavfilter/avf_showfreqs.o
  385. CC libavfilter/avf_showspectrum.o
  386. CC libavfilter/avf_showvolume.o
  387. CC libavfilter/avf_showwaves.o
  388. CC libavfilter/avfilter.o
  389. CC libavfilter/avfiltergraph.o
  390. libavfilter/avfiltergraph.c:132:25: warning: 'resample_lavr_opts' is deprecated [-Wdeprecated-declarations]
  391. av_freep(&(*graph)->resample_lavr_opts);
  392. ^
  393. libavfilter/avfilter.h:862:5: note: 'resample_lavr_opts' has been explicitly marked deprecated here
  394. attribute_deprecated char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters
  395. ^
  396. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  397. # define attribute_deprecated __attribute__((deprecated))
  398. ^
  399. CC libavfilter/bbox.o
  400. CC libavfilter/buffersink.o
  401. CC libavfilter/buffersrc.o
  402. CC libavfilter/colorspacedsp.o
  403. CC libavfilter/drawutils.o
  404. CC libavfilter/ebur128.o
  405. CC libavfilter/f_bench.o
  406. 1 warning generated.
  407. CC libavfilter/f_drawgraph.o
  408. CC libavfilter/f_ebur128.o
  409. CC libavfilter/f_interleave.o
  410. CC libavfilter/f_loop.o
  411. CC libavfilter/f_metadata.o
  412. CC libavfilter/f_perms.o
  413. CC libavfilter/f_realtime.o
  414. CC libavfilter/f_reverse.o
  415. CC libavfilter/f_select.o
  416. CC libavfilter/f_sendcmd.o
  417. CC libavfilter/f_sidedata.o
  418. libavfilter/f_sidedata.c:72:17: warning: comparison of constant -1 with expression of type 'enum AVFrameSideDataType' is always false [-Wtautological-constant-out-of-range-compare]
  419. if (s->type == -1 && s->mode != SIDEDATA_DELETE) {
  420. ~~~~~~~ ^ ~~
  421. libavfilter/f_sidedata.c:87:17: warning: comparison of constant -1 with expression of type 'enum AVFrameSideDataType' is always true [-Wtautological-constant-out-of-range-compare]
  422. if (s->type != -1)
  423. ~~~~~~~ ^ ~~
  424. libavfilter/f_sidedata.c:97:21: warning: comparison of constant -1 with expression of type 'enum AVFrameSideDataType' is always false [-Wtautological-constant-out-of-range-compare]
  425. if (s->type == -1) {
  426. ~~~~~~~ ^ ~~
  427. 3 warnings generated.
  428. CC libavfilter/f_streamselect.o
  429. CC libavfilter/fifo.o
  430. CC libavfilter/formats.o
  431. CC libavfilter/framepool.o
  432. CC libavfilter/framequeue.o
  433. CC libavfilter/framesync.o
  434. CC libavfilter/generate_wave_table.o
  435. CC libavfilter/graphdump.o
  436. CC libavfilter/graphparser.o
  437. CC libavfilter/lavfutils.o
  438. libavfilter/lavfutils.c:93:11: warning: 'avcodec_decode_video2' is deprecated [-Wdeprecated-declarations]
  439. ret = avcodec_decode_video2(codec_ctx, frame, &frame_decoded, &pkt);
  440. ^
  441. ./libavcodec/avcodec.h:4991:1: note: 'avcodec_decode_video2' has been explicitly marked deprecated here
  442. attribute_deprecated
  443. ^
  444. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  445. # define attribute_deprecated __attribute__((deprecated))
  446. ^
  447. CC libavfilter/lswsutils.o
  448. 1 warning generated.
  449. CC libavfilter/motion_estimation.o
  450. CC libavfilter/opencl_allkernels.o
  451. CC libavfilter/pthread.o
  452. CC libavfilter/scale.o
  453. CC libavfilter/setpts.o
  454. CC libavfilter/settb.o
  455. CC libavfilter/split.o
  456. CC libavfilter/src_movie.o
  457. CC libavfilter/transform.o
  458. CC libavfilter/trim.o
  459. libavfilter/src_movie.c:175:20: warning: 'refcounted_frames' is deprecated [-Wdeprecated-declarations]
  460. st->codec_ctx->refcounted_frames = 1;
  461. ^
  462. ./libavcodec/avcodec.h:2693:5: note: 'refcounted_frames' has been explicitly marked deprecated here
  463. attribute_deprecated
  464. ^
  465. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  466. # define attribute_deprecated __attribute__((deprecated))
  467. ^
  468. libavfilter/src_movie.c:531:15: warning: 'avcodec_decode_video2' is deprecated [-Wdeprecated-declarations]
  469. ret = avcodec_decode_video2(st->codec_ctx, frame, &got_frame, pkt);
  470. ^
  471. ./libavcodec/avcodec.h:4991:1: note: 'avcodec_decode_video2' has been explicitly marked deprecated here
  472. attribute_deprecated
  473. ^
  474. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  475. # define attribute_deprecated __attribute__((deprecated))
  476. ^
  477. libavfilter/src_movie.c:534:15: warning: 'avcodec_decode_audio4' is deprecated [-Wdeprecated-declarations]
  478. ret = avcodec_decode_audio4(st->codec_ctx, frame, &got_frame, pkt);
  479. ^
  480. ./libavcodec/avcodec.h:4942:1: note: 'avcodec_decode_audio4' has been explicitly marked deprecated here
  481. attribute_deprecated
  482. ^
  483. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  484. # define attribute_deprecated __attribute__((deprecated))
  485. ^
  486. CC libavfilter/vaf_spectrumsynth.o
  487. CC libavfilter/vf_alphamerge.o
  488. CC libavfilter/vf_aspect.o
  489. 3 warnings generated.
  490. CC libavfilter/vf_atadenoise.o
  491. CC libavfilter/vf_avgblur.o
  492. CC libavfilter/vf_bbox.o
  493. CC libavfilter/vf_bitplanenoise.o
  494. CC libavfilter/vf_blackdetect.o
  495. CC libavfilter/vf_blend.o
  496. CC libavfilter/vf_bwdif.o
  497. CC libavfilter/vf_chromakey.o
  498. CC libavfilter/vf_ciescope.o
  499. CC libavfilter/vf_codecview.o
  500. CC libavfilter/vf_colorbalance.o
  501. CC libavfilter/vf_colorchannelmixer.o
  502. CC libavfilter/vf_colorkey.o
  503. CC libavfilter/vf_colorlevels.o
  504. CC libavfilter/vf_colorspace.o
  505. CC libavfilter/vf_convolution.o
  506. CC libavfilter/vf_convolve.o
  507. CC libavfilter/vf_copy.o
  508. CC libavfilter/vf_crop.o
  509. CC libavfilter/vf_curves.o
  510. CC libavfilter/vf_datascope.o
  511. CC libavfilter/vf_dctdnoiz.o
  512. CC libavfilter/vf_deband.o
  513. CC libavfilter/vf_decimate.o
  514. CC libavfilter/vf_deflicker.o
  515. CC libavfilter/vf_dejudder.o
  516. CC libavfilter/vf_deshake.o
  517. CC libavfilter/vf_despill.o
  518. CC libavfilter/vf_detelecine.o
  519. CC libavfilter/vf_displace.o
  520. CC libavfilter/vf_drawbox.o
  521. CC libavfilter/vf_edgedetect.o
  522. CC libavfilter/vf_elbg.o
  523. CC libavfilter/vf_extractplanes.o
  524. CC libavfilter/vf_fade.o
  525. CC libavfilter/vf_fftfilt.o
  526. CC libavfilter/vf_field.o
  527. CC libavfilter/vf_fieldhint.o
  528. CC libavfilter/vf_fieldmatch.o
  529. CC libavfilter/vf_fieldorder.o
  530. CC libavfilter/vf_floodfill.o
  531. CC libavfilter/vf_format.o
  532. CC libavfilter/vf_fps.o
  533. CC libavfilter/vf_framepack.o
  534. CC libavfilter/vf_framerate.o
  535. CC libavfilter/vf_framestep.o
  536. CC libavfilter/vf_gblur.o
  537. CC libavfilter/vf_gradfun.o
  538. CC libavfilter/vf_hflip.o
  539. CC libavfilter/vf_histogram.o
  540. CC libavfilter/vf_hqx.o
  541. CC libavfilter/vf_hue.o
  542. CC libavfilter/vf_hwdownload.o
  543. CC libavfilter/vf_hwmap.o
  544. CC libavfilter/vf_hwupload.o
  545. CC libavfilter/vf_hysteresis.o
  546. CC libavfilter/vf_idet.o
  547. CC libavfilter/vf_il.o
  548. CC libavfilter/vf_lenscorrection.o
  549. CC libavfilter/vf_limiter.o
  550. CC libavfilter/vf_lumakey.o
  551. CC libavfilter/vf_lut.o
  552. CC libavfilter/vf_lut2.o
  553. CC libavfilter/vf_lut3d.o
  554. CC libavfilter/vf_maskedclamp.o
  555. CC libavfilter/vf_maskedmerge.o
  556. CC libavfilter/vf_mergeplanes.o
  557. CC libavfilter/vf_mestimate.o
  558. CC libavfilter/vf_midequalizer.o
  559. CC libavfilter/vf_minterpolate.o
  560. CC libavfilter/vf_neighbor.o
  561. CC libavfilter/vf_nlmeans.o
  562. CC libavfilter/vf_noise.o
  563. CC libavfilter/vf_null.o
  564. CC libavfilter/vf_overlay.o
  565. CC libavfilter/vf_pad.o
  566. CC libavfilter/vf_palettegen.o
  567. CC libavfilter/vf_paletteuse.o
  568. CC libavfilter/vf_pixdesctest.o
  569. CC libavfilter/vf_premultiply.o
  570. CC libavfilter/vf_pseudocolor.o
  571. CC libavfilter/vf_psnr.o
  572. CC libavfilter/vf_qp.o
  573. CC libavfilter/vf_random.o
  574. CC libavfilter/vf_readeia608.o
  575. CC libavfilter/vf_readvitc.o
  576. CC libavfilter/vf_remap.o
  577. CC libavfilter/vf_removegrain.o
  578. CC libavfilter/vf_removelogo.o
  579. CC libavfilter/vf_rotate.o
  580. CC libavfilter/vf_scale.o
  581. CC libavfilter/vf_selectivecolor.o
  582. CC libavfilter/vf_separatefields.o
  583. CC libavfilter/vf_setfield.o
  584. CC libavfilter/vf_showinfo.o
  585. CC libavfilter/vf_showpalette.o
  586. CC libavfilter/vf_shuffleframes.o
  587. CC libavfilter/vf_shuffleplanes.o
  588. CC libavfilter/vf_signalstats.o
  589. CC libavfilter/vf_ssim.o
  590. CC libavfilter/vf_stack.o
  591. CC libavfilter/vf_swaprect.o
  592. CC libavfilter/vf_swapuv.o
  593. CC libavfilter/vf_telecine.o
  594. CC libavfilter/vf_threshold.o
  595. CC libavfilter/vf_thumbnail.o
  596. CC libavfilter/vf_tile.o
  597. CC libavfilter/vf_tonemap.o
  598. CC libavfilter/vf_transpose.o
  599. CC libavfilter/vf_unsharp.o
  600. CC libavfilter/vf_vectorscope.o
  601. CC libavfilter/vf_vignette.o
  602. CC libavfilter/vf_vflip.o
  603. CC libavfilter/vf_vmafmotion.o
  604. CC libavfilter/vf_w3fdif.o
  605. CC libavfilter/vf_waveform.o
  606. CC libavfilter/vf_weave.o
  607. CC libavfilter/vf_xbr.o
  608. CC libavfilter/vf_yadif.o
  609. CC libavfilter/vf_zoompan.o
  610. CC libavfilter/video.o
  611. CC libavfilter/vsink_nullsink.o
  612. CC libavfilter/vsrc_cellauto.o
  613. CC libavfilter/vsrc_life.o
  614. CC libavfilter/vsrc_mandelbrot.o
  615. CC libavfilter/vsrc_testsrc.o
  616. GEN libavfilter/libavfilter.pc
  617. CC libavformat/3dostr.o
  618. CC libavformat/4xm.o
  619. CC libavformat/a64.o
  620. CC libavformat/aacdec.o
  621. CC libavformat/aadec.o
  622. CC libavformat/ac3dec.o
  623. CC libavformat/acm.o
  624. CC libavformat/act.o
  625. CC libavformat/adp.o
  626. CC libavformat/ads.o
  627. CC libavformat/adtsenc.o
  628. CC libavformat/adxdec.o
  629. CC libavformat/aea.o
  630. CC libavformat/afc.o
  631. CC libavformat/aiffdec.o
  632. CC libavformat/aiffenc.o
  633. CC libavformat/aixdec.o
  634. CC libavformat/allformats.o
  635. CC libavformat/amr.o
  636. CC libavformat/anm.o
  637. CC libavformat/apc.o
  638. CC libavformat/ape.o
  639. CC libavformat/apetag.o
  640. CC libavformat/apngdec.o
  641. CC libavformat/apngenc.o
  642. CC libavformat/aqtitledec.o
  643. CC libavformat/asf.o
  644. CC libavformat/asfcrypt.o
  645. CC libavformat/asfdec_f.o
  646. CC libavformat/asfdec_o.o
  647. CC libavformat/asfenc.o
  648. CC libavformat/assdec.o
  649. CC libavformat/assenc.o
  650. CC libavformat/ast.o
  651. CC libavformat/astdec.o
  652. CC libavformat/astenc.o
  653. CC libavformat/async.o
  654. CC libavformat/au.o
  655. CC libavformat/audiointerleave.o
  656. CC libavformat/avc.o
  657. CC libavformat/avidec.o
  658. CC libavformat/avienc.o
  659. CC libavformat/avio.o
  660. CC libavformat/aviobuf.o
  661. CC libavformat/avlanguage.o
  662. CC libavformat/avr.o
  663. CC libavformat/avs.o
  664. CC libavformat/bethsoftvid.o
  665. CC libavformat/bfi.o
  666. CC libavformat/bink.o
  667. CC libavformat/bintext.o
  668. CC libavformat/bit.o
  669. CC libavformat/bmv.o
  670. CC libavformat/boadec.o
  671. CC libavformat/brstm.o
  672. CC libavformat/c93.o
  673. CC libavformat/cache.o
  674. CC libavformat/caf.o
  675. CC libavformat/cafdec.o
  676. CC libavformat/cafenc.o
  677. CC libavformat/cavsvideodec.o
  678. CC libavformat/cdg.o
  679. CC libavformat/cdxl.o
  680. CC libavformat/cinedec.o
  681. CC libavformat/concat.o
  682. CC libavformat/concatdec.o
  683. CC libavformat/crcenc.o
  684. CC libavformat/crypto.o
  685. CC libavformat/cutils.o
  686. CC libavformat/dash.o
  687. CC libavformat/dashenc.o
  688. CC libavformat/data_uri.o
  689. CC libavformat/dauddec.o
  690. CC libavformat/daudenc.o
  691. CC libavformat/dcstr.o
  692. CC libavformat/dfa.o
  693. CC libavformat/diracdec.o
  694. CC libavformat/dnxhddec.o
  695. CC libavformat/dsfdec.o
  696. CC libavformat/dsicin.o
  697. CC libavformat/dss.o
  698. CC libavformat/dtsdec.o
  699. CC libavformat/dtshddec.o
  700. CC libavformat/dump.o
  701. CC libavformat/dv.o
  702. CC libavformat/dvbsub.o
  703. libavformat/dump.c:473:29: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  704. avctx->properties = st->codec->properties;
  705. ^
  706. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  707. attribute_deprecated
  708. ^
  709. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  710. # define attribute_deprecated __attribute__((deprecated))
  711. ^
  712. libavformat/dump.c:474:29: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  713. avctx->codec = st->codec->codec;
  714. ^
  715. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  716. attribute_deprecated
  717. ^
  718. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  719. # define attribute_deprecated __attribute__((deprecated))
  720. ^
  721. libavformat/dump.c:475:29: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  722. avctx->qmin = st->codec->qmin;
  723. ^
  724. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  725. attribute_deprecated
  726. ^
  727. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  728. # define attribute_deprecated __attribute__((deprecated))
  729. ^
  730. libavformat/dump.c:476:29: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  731. avctx->qmax = st->codec->qmax;
  732. ^
  733. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  734. attribute_deprecated
  735. ^
  736. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  737. # define attribute_deprecated __attribute__((deprecated))
  738. ^
  739. libavformat/dump.c:477:31: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  740. avctx->coded_width = st->codec->coded_width;
  741. ^
  742. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  743. attribute_deprecated
  744. ^
  745. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  746. # define attribute_deprecated __attribute__((deprecated))
  747. ^
  748. libavformat/dump.c:478:31: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  749. avctx->coded_height = st->codec->coded_height;
  750. ^
  751. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  752. attribute_deprecated
  753. ^
  754. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  755. # define attribute_deprecated __attribute__((deprecated))
  756. ^
  757. libavformat/dump.c:513:23: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  758. int tbc = st->codec->time_base.den && st->codec->time_base.num;
  759. ^
  760. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  761. attribute_deprecated
  762. ^
  763. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  764. # define attribute_deprecated __attribute__((deprecated))
  765. ^
  766. libavformat/dump.c:513:51: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  767. int tbc = st->codec->time_base.den && st->codec->time_base.num;
  768. ^
  769. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  770. attribute_deprecated
  771. ^
  772. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  773. # define attribute_deprecated __attribute__((deprecated))
  774. ^
  775. libavformat/dump.c:525:38: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  776. print_fps(1 / av_q2d(st->codec->time_base), "tbc");
  777. ^
  778. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  779. attribute_deprecated
  780. ^
  781. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  782. # define attribute_deprecated __attribute__((deprecated))
  783. ^
  784. CC libavformat/dvbtxt.o
  785. CC libavformat/dvenc.o
  786. CC libavformat/dxa.o
  787. CC libavformat/eacdata.o
  788. CC libavformat/electronicarts.o
  789. 9 warnings generated.
  790. CC libavformat/epafdec.o
  791. CC libavformat/ffmdec.o
  792. CC libavformat/ffmenc.o
  793. CC libavformat/ffmetadec.o
  794. CC libavformat/ffmetaenc.o
  795. CC libavformat/fifo.o
  796. CC libavformat/file.o
  797. CC libavformat/filmstripdec.o
  798. CC libavformat/filmstripenc.o
  799. CC libavformat/fitsdec.o
  800. CC libavformat/fitsenc.o
  801. CC libavformat/flac_picture.o
  802. CC libavformat/flacdec.o
  803. CC libavformat/flacenc_header.o
  804. CC libavformat/flic.o
  805. CC libavformat/flacenc.o
  806. CC libavformat/flvdec.o
  807. CC libavformat/flvenc.o
  808. CC libavformat/format.o
  809. CC libavformat/framecrcenc.o
  810. CC libavformat/framehash.o
  811. CC libavformat/frmdec.o
  812. CC libavformat/fsb.o
  813. CC libavformat/ftp.o
  814. CC libavformat/g722.o
  815. CC libavformat/g723_1.o
  816. CC libavformat/g726.o
  817. CC libavformat/g729dec.o
  818. CC libavformat/gdv.o
  819. CC libavformat/genh.o
  820. CC libavformat/gif.o
  821. CC libavformat/gifdec.o
  822. CC libavformat/gopher.o
  823. CC libavformat/gsmdec.o
  824. CC libavformat/gxf.o
  825. CC libavformat/gxfenc.o
  826. CC libavformat/h261dec.o
  827. CC libavformat/h263dec.o
  828. CC libavformat/h264dec.o
  829. CC libavformat/hashenc.o
  830. CC libavformat/hdsenc.o
  831. CC libavformat/hevc.o
  832. CC libavformat/hevcdec.o
  833. CC libavformat/hls.o
  834. CC libavformat/hlsenc.o
  835. CC libavformat/hlsproto.o
  836. CC libavformat/hnm.o
  837. CC libavformat/http.o
  838. CC libavformat/httpauth.o
  839. CC libavformat/icecast.o
  840. CC libavformat/icodec.o
  841. CC libavformat/icoenc.o
  842. CC libavformat/id3v1.o
  843. CC libavformat/id3v2.o
  844. CC libavformat/id3v2enc.o
  845. CC libavformat/idcin.o
  846. CC libavformat/idroqdec.o
  847. CC libavformat/idroqenc.o
  848. CC libavformat/iff.o
  849. CC libavformat/ilbc.o
  850. CC libavformat/img2.o
  851. CC libavformat/img2_alias_pix.o
  852. CC libavformat/img2_brender_pix.o
  853. CC libavformat/img2dec.o
  854. CC libavformat/img2enc.o
  855. CC libavformat/ingenientdec.o
  856. CC libavformat/ipmovie.o
  857. CC libavformat/ircam.o
  858. CC libavformat/ircamdec.o
  859. CC libavformat/ircamenc.o
  860. CC libavformat/isom.o
  861. CC libavformat/iss.o
  862. CC libavformat/iv8.o
  863. CC libavformat/ivfdec.o
  864. CC libavformat/ivfenc.o
  865. CC libavformat/jacosubdec.o
  866. CC libavformat/jacosubenc.o
  867. CC libavformat/jvdec.o
  868. CC libavformat/latmenc.o
  869. CC libavformat/lmlm4.o
  870. CC libavformat/loasdec.o
  871. CC libavformat/lrc.o
  872. CC libavformat/lrcdec.o
  873. CC libavformat/lrcenc.o
  874. CC libavformat/lvfdec.o
  875. CC libavformat/lxfdec.o
  876. CC libavformat/m4vdec.o
  877. CC libavformat/matroska.o
  878. CC libavformat/matroskadec.o
  879. CC libavformat/matroskaenc.o
  880. CC libavformat/md5proto.o
  881. CC libavformat/metadata.o
  882. CC libavformat/mgsts.o
  883. CC libavformat/microdvddec.o
  884. CC libavformat/microdvdenc.o
  885. CC libavformat/mj2kdec.o
  886. CC libavformat/mkvtimestamp_v2.o
  887. CC libavformat/mlpdec.o
  888. CC libavformat/mlvdec.o
  889. CC libavformat/mm.o
  890. CC libavformat/mmf.o
  891. CC libavformat/mms.o
  892. CC libavformat/mmsh.o
  893. CC libavformat/mmst.o
  894. CC libavformat/mov.o
  895. CC libavformat/mov_chan.o
  896. CC libavformat/movenc.o
  897. libavformat/movenc.c:453:20: warning: 'av_copy_packet_side_data' is deprecated [-Wdeprecated-declarations]
  898. if ((ret = av_copy_packet_side_data(&info->pkt, pkt)) < 0)
  899. ^
  900. ./libavcodec/avcodec.h:4638:1: note: 'av_copy_packet_side_data' has been explicitly marked deprecated here
  901. attribute_deprecated
  902. ^
  903. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  904. # define attribute_deprecated __attribute__((deprecated))
  905. ^
  906. CC libavformat/movenccenc.o
  907. CC libavformat/movenchint.o
  908. CC libavformat/mp3dec.o
  909. CC libavformat/mp3enc.o
  910. CC libavformat/mpc.o
  911. CC libavformat/mpc8.o
  912. CC libavformat/mpeg.o
  913. CC libavformat/mpegenc.o
  914. CC libavformat/mpegts.o
  915. CC libavformat/mpegtsenc.o
  916. CC libavformat/mpegvideodec.o
  917. CC libavformat/mpjpeg.o
  918. CC libavformat/mpjpegdec.o
  919. CC libavformat/mpl2dec.o
  920. CC libavformat/mpsubdec.o
  921. CC libavformat/msf.o
  922. CC libavformat/msnwc_tcp.o
  923. CC libavformat/mtaf.o
  924. CC libavformat/mtv.o
  925. CC libavformat/musx.o
  926. CC libavformat/mux.o
  927. CC libavformat/mvdec.o
  928. CC libavformat/mvi.o
  929. CC libavformat/mxf.o
  930. CC libavformat/mxfdec.o
  931. CC libavformat/mxfenc.o
  932. 1 warning generated.
  933. CC libavformat/mxg.o
  934. CC libavformat/ncdec.o
  935. CC libavformat/network.o
  936. CC libavformat/nistspheredec.o
  937. CC libavformat/nsvdec.o
  938. CC libavformat/nullenc.o
  939. CC libavformat/nut.o
  940. CC libavformat/nutdec.o
  941. CC libavformat/nutenc.o
  942. CC libavformat/nuv.o
  943. CC libavformat/oggdec.o
  944. CC libavformat/oggenc.o
  945. CC libavformat/oggparsecelt.o
  946. CC libavformat/oggparsedaala.o
  947. CC libavformat/oggparsedirac.o
  948. CC libavformat/oggparseflac.o
  949. CC libavformat/oggparseogm.o
  950. CC libavformat/oggparseopus.o
  951. CC libavformat/oggparseskeleton.o
  952. CC libavformat/oggparsespeex.o
  953. CC libavformat/oggparsetheora.o
  954. CC libavformat/oggparsevorbis.o
  955. CC libavformat/oggparsevp8.o
  956. CC libavformat/oma.o
  957. CC libavformat/omadec.o
  958. CC libavformat/omaenc.o
  959. CC libavformat/options.o
  960. CC libavformat/os_support.o
  961. CC libavformat/paf.o
  962. CC libavformat/pcm.o
  963. CC libavformat/pcmdec.o
  964. CC libavformat/pcmenc.o
  965. CC libavformat/pjsdec.o
  966. CC libavformat/pmpdec.o
  967. CC libavformat/prompeg.o
  968. CC libavformat/protocols.o
  969. libavformat/protocols.c:100:7: warning: assigning to 'const URLProtocol **' (aka 'const struct URLProtocol **') from 'const URLProtocol *const *' (aka 'const struct URLProtocol *const *') discards qualifiers
  970. [-Wincompatible-pointer-types-discards-qualifiers]
  971. p = p ? p + 1 : url_protocols;
  972. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
  973. CC libavformat/psxstr.o
  974. CC libavformat/pva.o
  975. 1 warning generated.
  976. CC libavformat/pvfdec.o
  977. CC libavformat/qcp.o
  978. CC libavformat/qtpalette.o
  979. CC libavformat/r3d.o
  980. CC libavformat/rawdec.o
  981. CC libavformat/rawenc.o
  982. CC libavformat/rawutils.o
  983. CC libavformat/rawvideodec.o
  984. CC libavformat/rdt.o
  985. CC libavformat/realtextdec.o
  986. CC libavformat/redspark.o
  987. CC libavformat/replaygain.o
  988. CC libavformat/riff.o
  989. CC libavformat/riffdec.o
  990. CC libavformat/riffenc.o
  991. CC libavformat/rl2.o
  992. CC libavformat/rm.o
  993. CC libavformat/rmdec.o
  994. CC libavformat/rmenc.o
  995. CC libavformat/rmsipr.o
  996. CC libavformat/rpl.o
  997. CC libavformat/rsd.o
  998. CC libavformat/rso.o
  999. CC libavformat/rsodec.o
  1000. CC libavformat/rsoenc.o
  1001. CC libavformat/rtmphttp.o
  1002. CC libavformat/rtmppkt.o
  1003. CC libavformat/rtmpproto.o
  1004. CC libavformat/rtp.o
  1005. CC libavformat/rtpdec.o
  1006. CC libavformat/rtpdec_ac3.o
  1007. CC libavformat/rtpdec_amr.o
  1008. CC libavformat/rtpdec_asf.o
  1009. CC libavformat/rtpdec_dv.o
  1010. CC libavformat/rtpdec_g726.o
  1011. CC libavformat/rtpdec_h261.o
  1012. CC libavformat/rtpdec_h263.o
  1013. CC libavformat/rtpdec_h263_rfc2190.o
  1014. CC libavformat/rtpdec_h264.o
  1015. CC libavformat/rtpdec_hevc.o
  1016. CC libavformat/rtpdec_ilbc.o
  1017. CC libavformat/rtpdec_jpeg.o
  1018. CC libavformat/rtpdec_latm.o
  1019. CC libavformat/rtpdec_mpa_robust.o
  1020. CC libavformat/rtpdec_mpeg12.o
  1021. CC libavformat/rtpdec_mpeg4.o
  1022. CC libavformat/rtpdec_mpegts.o
  1023. CC libavformat/rtpdec_qcelp.o
  1024. CC libavformat/rtpdec_qdm2.o
  1025. CC libavformat/rtpdec_qt.o
  1026. CC libavformat/rtpdec_rfc4175.o
  1027. CC libavformat/rtpdec_svq3.o
  1028. CC libavformat/rtpdec_vc2hq.o
  1029. CC libavformat/rtpdec_vp8.o
  1030. CC libavformat/rtpdec_vp9.o
  1031. CC libavformat/rtpdec_xiph.o
  1032. CC libavformat/rtpenc.o
  1033. CC libavformat/rtpenc_aac.o
  1034. CC libavformat/rtpenc_amr.o
  1035. CC libavformat/rtpenc_chain.o
  1036. CC libavformat/rtpenc_h261.o
  1037. CC libavformat/rtpenc_h263.o
  1038. CC libavformat/rtpenc_h263_rfc2190.o
  1039. CC libavformat/rtpenc_h264_hevc.o
  1040. CC libavformat/rtpenc_jpeg.o
  1041. CC libavformat/rtpenc_latm.o
  1042. CC libavformat/rtpenc_mpegts.o
  1043. CC libavformat/rtpenc_mpv.o
  1044. CC libavformat/rtpenc_vc2hq.o
  1045. CC libavformat/rtpenc_vp8.o
  1046. CC libavformat/rtpenc_vp9.o
  1047. CC libavformat/rtpenc_xiph.o
  1048. CC libavformat/rtpproto.o
  1049. CC libavformat/rtsp.o
  1050. CC libavformat/rtspdec.o
  1051. CC libavformat/rtspenc.o
  1052. CC libavformat/s337m.o
  1053. CC libavformat/samidec.o
  1054. CC libavformat/sapdec.o
  1055. CC libavformat/sapenc.o
  1056. CC libavformat/sauce.o
  1057. CC libavformat/sbgdec.o
  1058. CC libavformat/sccdec.o
  1059. CC libavformat/sccenc.o
  1060. CC libavformat/sdp.o
  1061. CC libavformat/sdr2.o
  1062. libavformat/sdp.c:692:21: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  1063. if (st->codec) {
  1064. ^
  1065. ./libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  1066. attribute_deprecated
  1067. ^
  1068. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1069. # define attribute_deprecated __attribute__((deprecated))
  1070. ^
  1071. libavformat/sdp.c:696:25: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  1072. if (st->codec->flags & AV_CODEC_FLAG_QSCALE)
  1073. ^
  1074. ./libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  1075. attribute_deprecated
  1076. ^
  1077. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1078. # define attribute_deprecated __attribute__((deprecated))
  1079. ^
  1080. libavformat/sdp.c:698:46: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  1081. else if (!av_opt_get_int(st->codec, "vad", AV_OPT_FLAG_ENCODING_PARAM, &vad_option) && vad_option)
  1082. ^
  1083. ./libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  1084. attribute_deprecated
  1085. ^
  1086. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1087. # define attribute_deprecated __attribute__((deprecated))
  1088. ^
  1089. CC libavformat/sdsdec.o
  1090. CC libavformat/sdxdec.o
  1091. 3 warnings generated.
  1092. CC libavformat/segafilm.o
  1093. CC libavformat/segment.o
  1094. CC libavformat/shortendec.o
  1095. CC libavformat/sierravmd.o
  1096. CC libavformat/siff.o
  1097. CC libavformat/smacker.o
  1098. CC libavformat/smjpeg.o
  1099. CC libavformat/smjpegdec.o
  1100. CC libavformat/smjpegenc.o
  1101. CC libavformat/smoothstreamingenc.o
  1102. CC libavformat/smush.o
  1103. CC libavformat/sol.o
  1104. CC libavformat/soxdec.o
  1105. CC libavformat/soxenc.o
  1106. CC libavformat/spdif.o
  1107. CC libavformat/spdifdec.o
  1108. CC libavformat/spdifenc.o
  1109. CC libavformat/srtdec.o
  1110. CC libavformat/srtenc.o
  1111. CC libavformat/srtp.o
  1112. CC libavformat/srtpproto.o
  1113. CC libavformat/stldec.o
  1114. CC libavformat/subfile.o
  1115. CC libavformat/subtitles.o
  1116. CC libavformat/subviewer1dec.o
  1117. CC libavformat/subviewerdec.o
  1118. CC libavformat/supdec.o
  1119. CC libavformat/supenc.o
  1120. CC libavformat/svag.o
  1121. CC libavformat/swf.o
  1122. CC libavformat/swfdec.o
  1123. CC libavformat/swfenc.o
  1124. CC libavformat/takdec.o
  1125. CC libavformat/tcp.o
  1126. CC libavformat/tedcaptionsdec.o
  1127. CC libavformat/tee.o
  1128. CC libavformat/tee_common.o
  1129. CC libavformat/teeproto.o
  1130. CC libavformat/thp.o
  1131. CC libavformat/tiertexseq.o
  1132. CC libavformat/tmv.o
  1133. CC libavformat/tta.o
  1134. CC libavformat/ttaenc.o
  1135. CC libavformat/tty.o
  1136. CC libavformat/txd.o
  1137. CC libavformat/udp.o
  1138. CC libavformat/uncodedframecrcenc.o
  1139. CC libavformat/unix.o
  1140. CC libavformat/url.o
  1141. CC libavformat/urldecode.o
  1142. CC libavformat/utils.o
  1143. CC libavformat/v210.o
  1144. CC libavformat/vag.o
  1145. CC libavformat/vc1dec.o
  1146. libavformat/utils.c:2124:9: warning: variable 'pos_min' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
  1147. if (st->index_entries) {
  1148. ^~~~~~~~~~~~~~~~~
  1149. libavformat/utils.c:2157:53: note: uninitialized use occurs here
  1150. pos = ff_gen_search(s, stream_index, target_ts, pos_min, pos_max, pos_limit,
  1151. ^~~~~~~
  1152. libavformat/utils.c:2124:5: note: remove the 'if' if its condition is always true
  1153. if (st->index_entries) {
  1154. ^~~~~~~~~~~~~~~~~~~~~~~
  1155. libavformat/utils.c:2108:5: note: variable 'pos_min' is declared here
  1156. int64_t av_uninit(pos_min), av_uninit(pos_max), pos, pos_limit;
  1157. ^
  1158. libavformat/utils.c:2146:13: warning: variable 'pos_max' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
  1159. if (index >= 0) {
  1160. ^~~~~~~~~~
  1161. libavformat/utils.c:2157:62: note: uninitialized use occurs here
  1162. pos = ff_gen_search(s, stream_index, target_ts, pos_min, pos_max, pos_limit,
  1163. ^~~~~~~
  1164. libavformat/utils.c:2146:9: note: remove the 'if' if its condition is always true
  1165. if (index >= 0) {
  1166. ^~~~~~~~~~~~~~~~
  1167. libavformat/utils.c:2124:9: warning: variable 'pos_max' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
  1168. if (st->index_entries) {
  1169. ^~~~~~~~~~~~~~~~~
  1170. libavformat/utils.c:2157:62: note: uninitialized use occurs here
  1171. pos = ff_gen_search(s, stream_index, target_ts, pos_min, pos_max, pos_limit,
  1172. ^~~~~~~
  1173. libavformat/utils.c:2124:5: note: remove the 'if' if its condition is always true
  1174. if (st->index_entries) {
  1175. ^~~~~~~~~~~~~~~~~~~~~~~
  1176. libavformat/utils.c:2108:5: note: variable 'pos_max' is declared here
  1177. int64_t av_uninit(pos_min), av_uninit(pos_max), pos, pos_limit;
  1178. ^
  1179. CC libavformat/vc1test.o
  1180. CC libavformat/vc1testenc.o
  1181. CC libavformat/vivo.o
  1182. libavformat/utils.c:5537:42: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  1183. const AVCodecContext *dec_ctx = ist->codec;
  1184. ^
  1185. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  1186. attribute_deprecated
  1187. ^
  1188. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1189. # define attribute_deprecated __attribute__((deprecated))
  1190. ^
  1191. libavformat/utils.c:5538:42: warning: 'codec' is deprecated [-Wdeprecated-declarations]
  1192. AVCodecContext *enc_ctx = ost->codec;
  1193. ^
  1194. libavformat/avformat.h:892:5: note: 'codec' has been explicitly marked deprecated here
  1195. attribute_deprecated
  1196. ^
  1197. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1198. # define attribute_deprecated __attribute__((deprecated))
  1199. ^
  1200. CC libavformat/voc.o
  1201. CC libavformat/voc_packet.o
  1202. CC libavformat/vocdec.o
  1203. CC libavformat/vocenc.o
  1204. CC libavformat/vorbiscomment.o
  1205. CC libavformat/vpcc.o
  1206. CC libavformat/vpk.o
  1207. CC libavformat/vplayerdec.o
  1208. CC libavformat/vqf.o
  1209. CC libavformat/w64.o
  1210. CC libavformat/wavdec.o
  1211. CC libavformat/wavenc.o
  1212. CC libavformat/wc3movie.o
  1213. CC libavformat/webm_chunk.o
  1214. CC libavformat/webmdashenc.o
  1215. CC libavformat/webpenc.o
  1216. CC libavformat/webvttdec.o
  1217. CC libavformat/webvttenc.o
  1218. CC libavformat/westwood_aud.o
  1219. CC libavformat/wsddec.o
  1220. CC libavformat/westwood_vqa.o
  1221. CC libavformat/wtv_common.o
  1222. CC libavformat/wtvdec.o
  1223. CC libavformat/wtvenc.o
  1224. CC libavformat/wv.o
  1225. CC libavformat/wvdec.o
  1226. CC libavformat/wvedec.o
  1227. CC libavformat/wvenc.o
  1228. CC libavformat/xa.o
  1229. CC libavformat/xmv.o
  1230. CC libavformat/xvag.o
  1231. CC libavformat/xwma.o
  1232. CC libavformat/yop.o
  1233. CC libavformat/yuv4mpegdec.o
  1234. CC libavformat/yuv4mpegenc.o
  1235. GEN libavformat/libavformat.pc
  1236. CC libavcodec/012v.o
  1237. CC libavcodec/4xm.o
  1238. CC libavcodec/8bps.o
  1239. CC libavcodec/8svx.o
  1240. CC libavcodec/a64multienc.o
  1241. CC libavcodec/aac_ac3_parser.o
  1242. CC libavcodec/aac_adtstoasc_bsf.o
  1243. CC libavcodec/aac_parser.o
  1244. CC libavcodec/aacadtsdec.o
  1245. CC libavcodec/aaccoder.o
  1246. CC libavcodec/aacdec.o
  1247. 5 warnings generated.
  1248. CC libavcodec/aacdec_fixed.o
  1249. CC libavcodec/aacenc.o
  1250. CC libavcodec/aacenc_is.o
  1251. CC libavcodec/aacenc_ltp.o
  1252. CC libavcodec/aacenc_pred.o
  1253. CC libavcodec/aacenc_tns.o
  1254. CC libavcodec/aacenctab.o
  1255. CC libavcodec/aacps_fixed.o
  1256. CC libavcodec/aacps_float.o
  1257. CC libavcodec/aacpsdsp_fixed.o
  1258. CC libavcodec/aacpsdsp_float.o
  1259. CC libavcodec/aacpsy.o
  1260. CC libavcodec/aacsbr.o
  1261. CC libavcodec/aacsbr_fixed.o
  1262. CC libavcodec/aactab.o
  1263. CC libavcodec/aandcttab.o
  1264. CC libavcodec/aasc.o
  1265. CC libavcodec/ac3.o
  1266. CC libavcodec/ac3_parser.o
  1267. CC libavcodec/ac3dec_data.o
  1268. CC libavcodec/ac3dec_fixed.o
  1269. CC libavcodec/ac3dec_float.o
  1270. CC libavcodec/ac3dsp.o
  1271. CC libavcodec/ac3enc.o
  1272. CC libavcodec/ac3enc_fixed.o
  1273. CC libavcodec/ac3enc_float.o
  1274. CC libavcodec/ac3tab.o
  1275. CC libavcodec/acelp_filters.o
  1276. CC libavcodec/acelp_pitch_delay.o
  1277. CC libavcodec/acelp_vectors.o
  1278. CC libavcodec/adpcm.o
  1279. CC libavcodec/adpcm_data.o
  1280. CC libavcodec/adpcmenc.o
  1281. CC libavcodec/adx.o
  1282. CC libavcodec/adx_parser.o
  1283. CC libavcodec/adxdec.o
  1284. CC libavcodec/adxenc.o
  1285. CC libavcodec/aic.o
  1286. CC libavcodec/alac.o
  1287. CC libavcodec/alac_data.o
  1288. CC libavcodec/alacdsp.o
  1289. CC libavcodec/alacenc.o
  1290. CC libavcodec/aliaspixdec.o
  1291. CC libavcodec/aliaspixenc.o
  1292. CC libavcodec/allcodecs.o
  1293. CC libavcodec/alsdec.o
  1294. CC libavcodec/amrnbdec.o
  1295. CC libavcodec/amrwbdec.o
  1296. CC libavcodec/anm.o
  1297. CC libavcodec/ansi.o
  1298. CC libavcodec/apedec.o
  1299. CC libavcodec/arm/aacpsdsp_init_arm.o
  1300. AS libavcodec/arm/aacpsdsp_neon.o
  1301. AS libavcodec/arm/ac3dsp_arm.o
  1302. AS libavcodec/arm/ac3dsp_armv6.o
  1303. CC libavcodec/arm/ac3dsp_init_arm.o
  1304. AS libavcodec/arm/ac3dsp_neon.o
  1305. CC libavcodec/arm/audiodsp_init_arm.o
  1306. CC libavcodec/arm/audiodsp_init_neon.o
  1307. AS libavcodec/arm/audiodsp_neon.o
  1308. CC libavcodec/arm/blockdsp_init_arm.o
  1309. CC libavcodec/arm/blockdsp_init_neon.o
  1310. AS libavcodec/arm/blockdsp_neon.o
  1311. CC libavcodec/arm/fft_fixed_init_arm.o
  1312. AS libavcodec/arm/fft_fixed_neon.o
  1313. CC libavcodec/arm/fft_init_arm.o
  1314. AS libavcodec/arm/fft_neon.o
  1315. AS libavcodec/arm/fft_vfp.o
  1316. AS libavcodec/arm/flacdsp_arm.o
  1317. CC libavcodec/arm/flacdsp_init_arm.o
  1318. CC libavcodec/arm/fmtconvert_init_arm.o
  1319. AS libavcodec/arm/fmtconvert_neon.o
  1320. AS libavcodec/arm/fmtconvert_vfp.o
  1321. CC libavcodec/arm/g722dsp_init_arm.o
  1322. AS libavcodec/arm/g722dsp_neon.o
  1323. CC libavcodec/arm/h264chroma_init_arm.o
  1324. AS libavcodec/arm/h264cmc_neon.o
  1325. CC libavcodec/arm/h264dsp_init_arm.o
  1326. AS libavcodec/arm/h264dsp_neon.o
  1327. AS libavcodec/arm/h264idct_neon.o
  1328. CC libavcodec/arm/h264pred_init_arm.o
  1329. AS libavcodec/arm/h264pred_neon.o
  1330. CC libavcodec/arm/h264qpel_init_arm.o
  1331. AS libavcodec/arm/h264qpel_neon.o
  1332. AS libavcodec/arm/hevcdsp_deblock_neon.o
  1333. AS libavcodec/arm/hevcdsp_idct_neon.o
  1334. CC libavcodec/arm/hevcdsp_init_arm.o
  1335. CC libavcodec/arm/hevcdsp_init_neon.o
  1336. AS libavcodec/arm/hevcdsp_qpel_neon.o
  1337. AS libavcodec/arm/hpeldsp_arm.o
  1338. AS libavcodec/arm/hpeldsp_armv6.o
  1339. CC libavcodec/arm/hpeldsp_init_arm.o
  1340. CC libavcodec/arm/hpeldsp_init_armv6.o
  1341. CC libavcodec/arm/hpeldsp_init_neon.o
  1342. AS libavcodec/arm/hpeldsp_neon.o
  1343. AS libavcodec/arm/idctdsp_arm.o
  1344. AS libavcodec/arm/idctdsp_armv6.o
  1345. CC libavcodec/arm/idctdsp_init_arm.o
  1346. CC libavcodec/arm/idctdsp_init_armv5te.o
  1347. CC libavcodec/arm/idctdsp_init_armv6.o
  1348. CC libavcodec/arm/idctdsp_init_neon.o
  1349. AS libavcodec/arm/idctdsp_neon.o
  1350. AS libavcodec/arm/int_neon.o
  1351. AS libavcodec/arm/jrevdct_arm.o
  1352. CC libavcodec/arm/lossless_audiodsp_init_arm.o
  1353. AS libavcodec/arm/lossless_audiodsp_neon.o
  1354. AS libavcodec/arm/mdct_fixed_neon.o
  1355. AS libavcodec/arm/mdct_neon.o
  1356. AS libavcodec/arm/mdct_vfp.o
  1357. AS libavcodec/arm/me_cmp_armv6.o
  1358. CC libavcodec/arm/me_cmp_init_arm.o
  1359. AS libavcodec/arm/mlpdsp_armv5te.o
  1360. AS libavcodec/arm/mlpdsp_armv6.o
  1361. CC libavcodec/arm/mlpdsp_init_arm.o
  1362. AS libavcodec/arm/mpegaudiodsp_fixed_armv6.o
  1363. CC libavcodec/arm/mpegaudiodsp_init_arm.o
  1364. CC libavcodec/arm/mpegvideo_arm.o
  1365. CC libavcodec/arm/mpegvideo_armv5te.o
  1366. AS libavcodec/arm/mpegvideo_armv5te_s.o
  1367. AS libavcodec/arm/mpegvideo_neon.o
  1368. AS libavcodec/arm/mpegvideoencdsp_armv6.o
  1369. CC libavcodec/arm/mpegvideoencdsp_init_arm.o
  1370. AS libavcodec/arm/pixblockdsp_armv6.o
  1371. CC libavcodec/arm/pixblockdsp_init_arm.o
  1372. CC libavcodec/arm/rdft_init_arm.o
  1373. AS libavcodec/arm/rdft_neon.o
  1374. CC libavcodec/arm/rv34dsp_init_arm.o
  1375. AS libavcodec/arm/rv34dsp_neon.o
  1376. CC libavcodec/arm/rv40dsp_init_arm.o
  1377. AS libavcodec/arm/rv40dsp_neon.o
  1378. CC libavcodec/arm/sbrdsp_init_arm.o
  1379. AS libavcodec/arm/sbrdsp_neon.o
  1380. AS libavcodec/arm/simple_idct_arm.o
  1381. AS libavcodec/arm/simple_idct_armv5te.o
  1382. AS libavcodec/arm/simple_idct_armv6.o
  1383. AS libavcodec/arm/simple_idct_neon.o
  1384. AS libavcodec/arm/startcode_armv6.o
  1385. CC libavcodec/arm/synth_filter_init_arm.o
  1386. AS libavcodec/arm/synth_filter_neon.o
  1387. AS libavcodec/arm/synth_filter_vfp.o
  1388. CC libavcodec/arm/vc1dsp_init_arm.o
  1389. CC libavcodec/arm/vc1dsp_init_neon.o
  1390. AS libavcodec/arm/vc1dsp_neon.o
  1391. AS libavcodec/arm/videodsp_armv5te.o
  1392. CC libavcodec/arm/videodsp_init_arm.o
  1393. CC libavcodec/arm/videodsp_init_armv5te.o
  1394. CC libavcodec/arm/vorbisdsp_init_arm.o
  1395. AS libavcodec/arm/vorbisdsp_neon.o
  1396. CC libavcodec/arm/vp3dsp_init_arm.o
  1397. AS libavcodec/arm/vp3dsp_neon.o
  1398. CC libavcodec/arm/vp6dsp_init_arm.o
  1399. AS libavcodec/arm/vp6dsp_neon.o
  1400. AS libavcodec/arm/vp8_armv6.o
  1401. AS libavcodec/arm/vp8dsp_armv6.o
  1402. CC libavcodec/arm/vp8dsp_init_arm.o
  1403. CC libavcodec/arm/vp8dsp_init_armv6.o
  1404. CC libavcodec/arm/vp8dsp_init_neon.o
  1405. AS libavcodec/arm/vp8dsp_neon.o
  1406. CC libavcodec/arm/vp9dsp_init_10bpp_arm.o
  1407. CC libavcodec/arm/vp9dsp_init_12bpp_arm.o
  1408. CC libavcodec/arm/vp9dsp_init_arm.o
  1409. AS libavcodec/arm/vp9itxfm_16bpp_neon.o
  1410. AS libavcodec/arm/vp9itxfm_neon.o
  1411. AS libavcodec/arm/vp9lpf_16bpp_neon.o
  1412. AS libavcodec/arm/vp9lpf_neon.o
  1413. AS libavcodec/arm/vp9mc_16bpp_neon.o
  1414. CC libavcodec/ass.o
  1415. AS libavcodec/arm/vp9mc_neon.o
  1416. CC libavcodec/ass_split.o
  1417. CC libavcodec/assdec.o
  1418. CC libavcodec/assenc.o
  1419. CC libavcodec/asv.o
  1420. CC libavcodec/asvdec.o
  1421. CC libavcodec/asvenc.o
  1422. CC libavcodec/atrac.o
  1423. CC libavcodec/atrac1.o
  1424. CC libavcodec/atrac3.o
  1425. CC libavcodec/atrac3plus.o
  1426. CC libavcodec/atrac3plusdec.o
  1427. CC libavcodec/atrac3plusdsp.o
  1428. CC libavcodec/audio_frame_queue.o
  1429. CC libavcodec/audioconvert.o
  1430. CC libavcodec/audiodsp.o
  1431. CC libavcodec/aura.o
  1432. CC libavcodec/avdct.o
  1433. CC libavcodec/avfft.o
  1434. CC libavcodec/avpacket.o
  1435. CC libavcodec/avpicture.o
  1436. CC libavcodec/avrndec.o
  1437. libavcodec/avrndec.c:59:25: warning: 'refcounted_frames' is deprecated [-Wdeprecated-declarations]
  1438. a->mjpeg_avctx->refcounted_frames = 1;
  1439. ^
  1440. libavcodec/avcodec.h:2693:5: note: 'refcounted_frames' has been explicitly marked deprecated here
  1441. attribute_deprecated
  1442. ^
  1443. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1444. # define attribute_deprecated __attribute__((deprecated))
  1445. ^
  1446. libavcodec/avrndec.c:110:15: warning: 'avcodec_decode_video2' is deprecated [-Wdeprecated-declarations]
  1447. ret = avcodec_decode_video2(a->mjpeg_avctx, data, got_frame, avpkt);
  1448. ^
  1449. libavcodec/avcodec.h:4991:1: note: 'avcodec_decode_video2' has been explicitly marked deprecated here
  1450. attribute_deprecated
  1451. ^
  1452. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1453. # define attribute_deprecated __attribute__((deprecated))
  1454. ^
  1455. 2 warnings generated.
  1456. CC libavcodec/avs.o
  1457. CC libavcodec/avuidec.o
  1458. CC libavcodec/avuienc.o
  1459. CC libavcodec/bethsoftvideo.o
  1460. CC libavcodec/bfi.o
  1461. CC libavcodec/bgmc.o
  1462. CC libavcodec/bink.o
  1463. CC libavcodec/binkaudio.o
  1464. CC libavcodec/binkdsp.o
  1465. CC libavcodec/bintext.o
  1466. CC libavcodec/bitpacked.o
  1467. CC libavcodec/bitstream.o
  1468. CC libavcodec/bitstream_filter.o
  1469. libavcodec/bitstream_filter.c:39:12: warning: returning 'const AVBitStreamFilter *' (aka 'const struct AVBitStreamFilter *') from a function with result type 'AVBitStreamFilter *' (aka 'struct AVBitStreamFilter *') discards qualifiers
  1470. [-Wincompatible-pointer-types-discards-qualifiers]
  1471. return av_bsf_next(&opaque);
  1472. ^~~~~~~~~~~~~~~~~~~~
  1473. libavcodec/bitstream_filter.c:134:14: warning: assigning to 'uint8_t *' (aka 'unsigned char *') from 'const uint8_t *' (aka 'const unsigned char *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
  1474. pkt.data = buf;
  1475. ^ ~~~
  1476. 2 warnings generated.
  1477. CC libavcodec/bitstream_filters.o
  1478. CC libavcodec/blockdsp.o
  1479. CC libavcodec/bmp.o
  1480. CC libavcodec/bmp_parser.o
  1481. CC libavcodec/bmpenc.o
  1482. CC libavcodec/bmvaudio.o
  1483. CC libavcodec/bmvvideo.o
  1484. CC libavcodec/brenderpix.o
  1485. CC libavcodec/bsf.o
  1486. CC libavcodec/bswapdsp.o
  1487. CC libavcodec/c93.o
  1488. CC libavcodec/cabac.o
  1489. CC libavcodec/canopus.o
  1490. CC libavcodec/cavs.o
  1491. CC libavcodec/cavs_parser.o
  1492. CC libavcodec/cavsdata.o
  1493. CC libavcodec/cavsdec.o
  1494. CC libavcodec/cavsdsp.o
  1495. CC libavcodec/cbrt_data.o
  1496. CC libavcodec/cbrt_data_fixed.o
  1497. CC libavcodec/ccaption_dec.o
  1498. CC libavcodec/cdgraphics.o
  1499. CC libavcodec/cdxl.o
  1500. CC libavcodec/celp_filters.o
  1501. CC libavcodec/celp_math.o
  1502. CC libavcodec/cfhd.o
  1503. CC libavcodec/cfhddata.o
  1504. CC libavcodec/cga_data.o
  1505. libavcodec/cfhd.c:165:5: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1506. avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_x_shift, &s->chroma_y_shift);
  1507. ^
  1508. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1509. attribute_deprecated
  1510. ^
  1511. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1512. # define attribute_deprecated __attribute__((deprecated))
  1513. ^
  1514. CC libavcodec/chomp_bsf.o
  1515. CC libavcodec/cinepak.o
  1516. CC libavcodec/cinepakenc.o
  1517. CC libavcodec/clearvideo.o
  1518. 1 warning generated.
  1519. CC libavcodec/cljrdec.o
  1520. CC libavcodec/cljrenc.o
  1521. CC libavcodec/cllc.o
  1522. CC libavcodec/cngdec.o
  1523. CC libavcodec/cngenc.o
  1524. CC libavcodec/codec_desc.o
  1525. CC libavcodec/cook.o
  1526. CC libavcodec/cook_parser.o
  1527. CC libavcodec/cpia.o
  1528. CC libavcodec/cyuv.o
  1529. CC libavcodec/cscd.o
  1530. CC libavcodec/d3d11va.o
  1531. CC libavcodec/dca.o
  1532. CC libavcodec/dca_core.o
  1533. CC libavcodec/dca_core_bsf.o
  1534. CC libavcodec/dca_exss.o
  1535. CC libavcodec/dca_lbr.o
  1536. CC libavcodec/dca_parser.o
  1537. CC libavcodec/dca_xll.o
  1538. CC libavcodec/dcaadpcm.o
  1539. CC libavcodec/dcadata.o
  1540. CC libavcodec/dcadct.o
  1541. CC libavcodec/dcadec.o
  1542. CC libavcodec/dcadsp.o
  1543. CC libavcodec/dcaenc.o
  1544. CC libavcodec/dcahuff.o
  1545. CC libavcodec/dct.o
  1546. CC libavcodec/dct32_fixed.o
  1547. CC libavcodec/dct32_float.o
  1548. CC libavcodec/dds.o
  1549. CC libavcodec/decode.o
  1550. CC libavcodec/dfa.o
  1551. libavcodec/decode.c:789:25: warning: 'refcounted_frames' is deprecated [-Wdeprecated-declarations]
  1552. if (!avctx->refcounted_frames) {
  1553. ^
  1554. libavcodec/avcodec.h:2693:5: note: 'refcounted_frames' has been explicitly marked deprecated here
  1555. attribute_deprecated
  1556. ^
  1557. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1558. # define attribute_deprecated __attribute__((deprecated))
  1559. ^
  1560. libavcodec/decode.c:1743:17: warning: 'refcounted_frames' is deprecated [-Wdeprecated-declarations]
  1561. if (!avctx->refcounted_frames)
  1562. ^
  1563. libavcodec/avcodec.h:2693:5: note: 'refcounted_frames' has been explicitly marked deprecated here
  1564. attribute_deprecated
  1565. ^
  1566. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1567. # define attribute_deprecated __attribute__((deprecated))
  1568. ^
  1569. CC libavcodec/dirac.o
  1570. CC libavcodec/dirac_arith.o
  1571. libavcodec/dirac.c:272:5: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1572. avcodec_get_chroma_sub_sample(dsh->pix_fmt, &chroma_x_shift, &chroma_y_shift);
  1573. ^
  1574. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1575. attribute_deprecated
  1576. ^
  1577. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1578. # define attribute_deprecated __attribute__((deprecated))
  1579. ^
  1580. CC libavcodec/dirac_dwt.o
  1581. 2 warnings generated.
  1582. CC libavcodec/dirac_parser.o
  1583. 1 warning generated.
  1584. CC libavcodec/dirac_vlc.o
  1585. CC libavcodec/diracdec.o
  1586. CC libavcodec/diracdsp.o
  1587. libavcodec/diracdec.c:1930:5: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1588. avcodec_get_chroma_sub_sample(avctx->pix_fmt, &chroma_x_shift, &chroma_y_shift);
  1589. ^
  1590. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1591. attribute_deprecated
  1592. ^
  1593. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1594. # define attribute_deprecated __attribute__((deprecated))
  1595. ^
  1596. libavcodec/diracdec.c:2129:9: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1597. avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_x_shift, &s->chroma_y_shift);
  1598. ^
  1599. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1600. attribute_deprecated
  1601. ^
  1602. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1603. # define attribute_deprecated __attribute__((deprecated))
  1604. ^
  1605. CC libavcodec/diractab.o
  1606. CC libavcodec/dnxhd_parser.o
  1607. CC libavcodec/dnxhddata.o
  1608. CC libavcodec/dnxhddec.o
  1609. CC libavcodec/dnxhdenc.o
  1610. CC libavcodec/dolby_e.o
  1611. CC libavcodec/dpcm.o
  1612. CC libavcodec/dpx.o
  1613. CC libavcodec/dpx_parser.o
  1614. CC libavcodec/dpxenc.o
  1615. CC libavcodec/dsd.o
  1616. CC libavcodec/dsddec.o
  1617. CC libavcodec/dsicinaudio.o
  1618. CC libavcodec/dsicinvideo.o
  1619. CC libavcodec/dss_sp.o
  1620. CC libavcodec/dstdec.o
  1621. CC libavcodec/dump_extradata_bsf.o
  1622. CC libavcodec/dv.o
  1623. CC libavcodec/dv_profile.o
  1624. CC libavcodec/dvaudio_parser.o
  1625. CC libavcodec/dvaudiodec.o
  1626. CC libavcodec/dvbsub.o
  1627. CC libavcodec/dvbsub_parser.o
  1628. CC libavcodec/dvbsubdec.o
  1629. CC libavcodec/dvd_nav_parser.o
  1630. CC libavcodec/dvdata.o
  1631. CC libavcodec/dvdec.o
  1632. CC libavcodec/dvdsub_parser.o
  1633. CC libavcodec/dvdsubdec.o
  1634. 2 warnings generated.
  1635. CC libavcodec/dvdsubenc.o
  1636. CC libavcodec/dvenc.o
  1637. CC libavcodec/dxa.o
  1638. CC libavcodec/dxtory.o
  1639. CC libavcodec/dxv.o
  1640. CC libavcodec/eac3_data.o
  1641. CC libavcodec/eac3enc.o
  1642. CC libavcodec/eacmv.o
  1643. CC libavcodec/eaidct.o
  1644. CC libavcodec/eamad.o
  1645. CC libavcodec/eatgq.o
  1646. CC libavcodec/eatgv.o
  1647. CC libavcodec/eatqi.o
  1648. CC libavcodec/elbg.o
  1649. CC libavcodec/elsdec.o
  1650. CC libavcodec/encode.o
  1651. CC libavcodec/error_resilience.o
  1652. libavcodec/encode.c:378:15: warning: 'avcodec_encode_video2' is deprecated [-Wdeprecated-declarations]
  1653. ret = avcodec_encode_video2(avctx, avctx->internal->buffer_pkt,
  1654. ^
  1655. libavcodec/avcodec.h:5506:1: note: 'avcodec_encode_video2' has been explicitly marked deprecated here
  1656. attribute_deprecated
  1657. ^
  1658. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1659. # define attribute_deprecated __attribute__((deprecated))
  1660. ^
  1661. libavcodec/encode.c:381:15: warning: 'avcodec_encode_audio2' is deprecated [-Wdeprecated-declarations]
  1662. ret = avcodec_encode_audio2(avctx, avctx->internal->buffer_pkt,
  1663. ^
  1664. libavcodec/avcodec.h:5467:1: note: 'avcodec_encode_audio2' has been explicitly marked deprecated here
  1665. attribute_deprecated
  1666. ^
  1667. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1668. # define attribute_deprecated __attribute__((deprecated))
  1669. ^
  1670. 2 warnings generated.
  1671. CC libavcodec/escape124.o
  1672. CC libavcodec/escape130.o
  1673. CC libavcodec/evrcdec.o
  1674. CC libavcodec/exif.o
  1675. CC libavcodec/exr.o
  1676. CC libavcodec/exrdsp.o
  1677. CC libavcodec/extract_extradata_bsf.o
  1678. CC libavcodec/faandct.o
  1679. CC libavcodec/faanidct.o
  1680. CC libavcodec/faxcompr.o
  1681. CC libavcodec/fdctdsp.o
  1682. CC libavcodec/fft_fixed.o
  1683. CC libavcodec/fft_fixed_32.o
  1684. CC libavcodec/fft_float.o
  1685. CC libavcodec/fft_init_table.o
  1686. CC libavcodec/ffv1.o
  1687. CC libavcodec/ffv1dec.o
  1688. CC libavcodec/ffv1enc.o
  1689. CC libavcodec/ffwavesynth.o
  1690. CC libavcodec/fic.o
  1691. In file included from libavcodec/ffv1enc.c:266:
  1692. libavcodec/ffv1enc_template.c:148:17: warning: variable 'a' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
  1693. if (lbd) {
  1694. ^~~
  1695. libavcodec/ffv1enc_template.c:180:31: note: uninitialized use occurs here
  1696. sample[3][0][x] = a;
  1697. ^
  1698. libavcodec/ffv1enc_template.c:148:13: note: remove the 'if' if its condition is always true
  1699. if (lbd) {
  1700. ^~~~~~~~~
  1701. libavcodec/ffv1enc_template.c:147:13: note: variable 'a' is declared here
  1702. int b, g, r, av_uninit(a);
  1703. ^
  1704. In file included from libavcodec/ffv1enc.c:272:
  1705. libavcodec/ffv1enc_template.c:148:17: warning: variable 'a' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
  1706. if (lbd) {
  1707. ^~~
  1708. libavcodec/ffv1enc_template.c:180:31: note: uninitialized use occurs here
  1709. sample[3][0][x] = a;
  1710. ^
  1711. libavcodec/ffv1enc_template.c:148:13: note: remove the 'if' if its condition is always true
  1712. if (lbd) {
  1713. ^~~~~~~~~
  1714. libavcodec/ffv1enc_template.c:147:13: note: variable 'a' is declared here
  1715. int b, g, r, av_uninit(a);
  1716. ^
  1717. libavcodec/ffv1enc.c:757:5: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1718. avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_h_shift, &s->chroma_v_shift);
  1719. ^
  1720. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1721. attribute_deprecated
  1722. ^
  1723. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1724. # define attribute_deprecated __attribute__((deprecated))
  1725. ^
  1726. CC libavcodec/fits.o
  1727. CC libavcodec/fitsdec.o
  1728. CC libavcodec/fitsenc.o
  1729. CC libavcodec/flac.o
  1730. CC libavcodec/flac_parser.o
  1731. CC libavcodec/flacdata.o
  1732. CC libavcodec/flacdec.o
  1733. CC libavcodec/flacdsp.o
  1734. CC libavcodec/flacenc.o
  1735. CC libavcodec/flashsv.o
  1736. CC libavcodec/flashsv2enc.o
  1737. CC libavcodec/flashsvenc.o
  1738. CC libavcodec/flicvideo.o
  1739. CC libavcodec/flvdec.o
  1740. CC libavcodec/flvenc.o
  1741. CC libavcodec/fmtconvert.o
  1742. CC libavcodec/fmvc.o
  1743. CC libavcodec/frame_thread_encoder.o
  1744. libavcodec/frame_thread_encoder.c:89:15: warning: 'avcodec_encode_video2' is deprecated [-Wdeprecated-declarations]
  1745. ret = avcodec_encode_video2(avctx, pkt, frame, &got_packet);
  1746. ^
  1747. libavcodec/avcodec.h:5506:1: note: 'avcodec_encode_video2' has been explicitly marked deprecated here
  1748. attribute_deprecated
  1749. ^
  1750. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1751. # define attribute_deprecated __attribute__((deprecated))
  1752. ^
  1753. libavcodec/frame_thread_encoder.c:95:24: warning: 'av_dup_packet' is deprecated [-Wdeprecated-declarations]
  1754. int ret2 = av_dup_packet(pkt);
  1755. ^
  1756. libavcodec/avcodec.h:4619:1: note: 'av_dup_packet' has been explicitly marked deprecated here
  1757. attribute_deprecated
  1758. ^
  1759. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1760. # define attribute_deprecated __attribute__((deprecated))
  1761. ^
  1762. 2 warnings generated.
  1763. CC libavcodec/fraps.o
  1764. 3 warnings generated.
  1765. CC libavcodec/frwu.o
  1766. CC libavcodec/g2meet.o
  1767. CC libavcodec/g722.o
  1768. CC libavcodec/g722dec.o
  1769. CC libavcodec/g722dsp.o
  1770. CC libavcodec/g722enc.o
  1771. CC libavcodec/g723_1.o
  1772. CC libavcodec/g723_1dec.o
  1773. CC libavcodec/g723_1enc.o
  1774. CC libavcodec/g726.o
  1775. CC libavcodec/g729_parser.o
  1776. CC libavcodec/g729dec.o
  1777. CC libavcodec/g729postfilter.o
  1778. CC libavcodec/gdv.o
  1779. CC libavcodec/gif.o
  1780. CC libavcodec/gifdec.o
  1781. CC libavcodec/golomb.o
  1782. CC libavcodec/gsm_parser.o
  1783. CC libavcodec/gsmdec.o
  1784. CC libavcodec/gsmdec_data.o
  1785. CC libavcodec/h261.o
  1786. CC libavcodec/h261_parser.o
  1787. CC libavcodec/h261data.o
  1788. CC libavcodec/h261dec.o
  1789. CC libavcodec/h261enc.o
  1790. CC libavcodec/h263.o
  1791. CC libavcodec/h263_parser.o
  1792. CC libavcodec/h263data.o
  1793. CC libavcodec/h263dec.o
  1794. CC libavcodec/h263dsp.o
  1795. CC libavcodec/h2645_parse.o
  1796. CC libavcodec/h264_cabac.o
  1797. CC libavcodec/h264_cavlc.o
  1798. CC libavcodec/h264_direct.o
  1799. CC libavcodec/h264_loopfilter.o
  1800. CC libavcodec/h264_mb.o
  1801. CC libavcodec/h264_mp4toannexb_bsf.o
  1802. CC libavcodec/h264_parse.o
  1803. CC libavcodec/h264_parser.o
  1804. CC libavcodec/h264_picture.o
  1805. CC libavcodec/h264_ps.o
  1806. CC libavcodec/h264_refs.o
  1807. CC libavcodec/h264_sei.o
  1808. CC libavcodec/h264_slice.o
  1809. CC libavcodec/h264chroma.o
  1810. CC libavcodec/h264data.o
  1811. CC libavcodec/h264dec.o
  1812. CC libavcodec/h264dsp.o
  1813. CC libavcodec/h264idct.o
  1814. CC libavcodec/h264pred.o
  1815. CC libavcodec/h264qpel.o
  1816. CC libavcodec/hap.o
  1817. CC libavcodec/hapdec.o
  1818. CC libavcodec/hevc_cabac.o
  1819. libavcodec/hevc_cabac.c:37:21: warning: variable 'num_bins_in_se' is not needed and will not be emitted [-Wunneeded-internal-declaration]
  1820. static const int8_t num_bins_in_se[] = {
  1821. ^
  1822. 1 warning generated.
  1823. CC libavcodec/hevc_data.o
  1824. CC libavcodec/hevc_filter.o
  1825. CC libavcodec/hevc_mp4toannexb_bsf.o
  1826. CC libavcodec/hevc_mvs.o
  1827. CC libavcodec/hevc_parse.o
  1828. CC libavcodec/hevc_parser.o
  1829. CC libavcodec/hevc_ps.o
  1830. CC libavcodec/hevc_refs.o
  1831. CC libavcodec/hevc_sei.o
  1832. CC libavcodec/hevcdec.o
  1833. CC libavcodec/hevcdsp.o
  1834. CC libavcodec/hevcpred.o
  1835. CC libavcodec/hnm4video.o
  1836. CC libavcodec/hpeldsp.o
  1837. CC libavcodec/hq_hqa.o
  1838. CC libavcodec/hq_hqadata.o
  1839. CC libavcodec/hq_hqadsp.o
  1840. CC libavcodec/hqx.o
  1841. CC libavcodec/hqxdsp.o
  1842. CC libavcodec/hqxvlc.o
  1843. CC libavcodec/htmlsubtitles.o
  1844. CC libavcodec/huffman.o
  1845. CC libavcodec/huffyuv.o
  1846. CC libavcodec/huffyuvdec.o
  1847. CC libavcodec/huffyuvdsp.o
  1848. CC libavcodec/huffyuvenc.o
  1849. CC libavcodec/huffyuvencdsp.o
  1850. CC libavcodec/idcinvideo.o
  1851. CC libavcodec/idctdsp.o
  1852. CC libavcodec/iff.o
  1853. CC libavcodec/iirfilter.o
  1854. CC libavcodec/imc.o
  1855. CC libavcodec/imgconvert.o
  1856. CC libavcodec/imx_dump_header_bsf.o
  1857. CC libavcodec/indeo2.o
  1858. CC libavcodec/indeo3.o
  1859. CC libavcodec/indeo4.o
  1860. CC libavcodec/indeo5.o
  1861. CC libavcodec/intelh263dec.o
  1862. CC libavcodec/interplayacm.o
  1863. CC libavcodec/interplayvideo.o
  1864. CC libavcodec/intrax8.o
  1865. CC libavcodec/intrax8dsp.o
  1866. CC libavcodec/ituh263dec.o
  1867. CC libavcodec/ituh263enc.o
  1868. CC libavcodec/ivi.o
  1869. CC libavcodec/ivi_dsp.o
  1870. CC libavcodec/j2kenc.o
  1871. libavcodec/j2kenc.c:1153:9: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1872. avcodec_get_chroma_sub_sample(avctx->pix_fmt,
  1873. ^
  1874. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1875. attribute_deprecated
  1876. ^
  1877. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1878. # define attribute_deprecated __attribute__((deprecated))
  1879. ^
  1880. CC libavcodec/jacosubdec.o
  1881. CC libavcodec/jfdctfst.o
  1882. CC libavcodec/jfdctint.o
  1883. CC libavcodec/jni.o
  1884. CC libavcodec/jpeg2000.o
  1885. CC libavcodec/jpeg2000dec.o
  1886. CC libavcodec/jpeg2000dsp.o
  1887. CC libavcodec/jpeg2000dwt.o
  1888. CC libavcodec/jpegls.o
  1889. CC libavcodec/jpeglsdec.o
  1890. 1 warning generated.
  1891. CC libavcodec/jpeglsenc.o
  1892. CC libavcodec/jpegtables.o
  1893. CC libavcodec/jrevdct.o
  1894. CC libavcodec/jvdec.o
  1895. CC libavcodec/kbdwin.o
  1896. CC libavcodec/kgv1dec.o
  1897. CC libavcodec/kmvc.o
  1898. CC libavcodec/lagarith.o
  1899. CC libavcodec/lagarithrac.o
  1900. CC libavcodec/latm_parser.o
  1901. CC libavcodec/lcldec.o
  1902. CC libavcodec/lclenc.o
  1903. CC libavcodec/ljpegenc.o
  1904. CC libavcodec/loco.o
  1905. CC libavcodec/lossless_audiodsp.o
  1906. CC libavcodec/lossless_videodsp.o
  1907. CC libavcodec/lossless_videoencdsp.o
  1908. CC libavcodec/lpc.o
  1909. CC libavcodec/lsp.o
  1910. CC libavcodec/lzf.o
  1911. CC libavcodec/lzw.o
  1912. CC libavcodec/lzwenc.o
  1913. CC libavcodec/m101.o
  1914. CC libavcodec/mace.o
  1915. CC libavcodec/magicyuv.o
  1916. CC libavcodec/mathtables.o
  1917. CC libavcodec/mdct15.o
  1918. CC libavcodec/mdct_fixed.o
  1919. CC libavcodec/mdct_fixed_32.o
  1920. CC libavcodec/mdct_float.o
  1921. CC libavcodec/mdec.o
  1922. CC libavcodec/me_cmp.o
  1923. CC libavcodec/mediacodec.o
  1924. CC libavcodec/metasound.o
  1925. CC libavcodec/metasound_data.o
  1926. CC libavcodec/microdvddec.o
  1927. CC libavcodec/mimic.o
  1928. CC libavcodec/mjpeg2jpeg_bsf.o
  1929. CC libavcodec/mjpeg_parser.o
  1930. CC libavcodec/mjpega_dump_header_bsf.o
  1931. CC libavcodec/mjpegbdec.o
  1932. CC libavcodec/mjpegdec.o
  1933. CC libavcodec/mjpegenc.o
  1934. libavcodec/mjpegdec.c:2431:9: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1935. avcodec_get_chroma_sub_sample(s->avctx->pix_fmt, &hshift, &vshift);
  1936. ^
  1937. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1938. attribute_deprecated
  1939. ^
  1940. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1941. # define attribute_deprecated __attribute__((deprecated))
  1942. ^
  1943. libavcodec/mjpegdec.c:2490:9: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1944. avcodec_get_chroma_sub_sample(s->avctx->pix_fmt, &hshift, &vshift);
  1945. ^
  1946. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1947. attribute_deprecated
  1948. ^
  1949. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1950. # define attribute_deprecated __attribute__((deprecated))
  1951. ^
  1952. libavcodec/mjpegdec.c:2518:9: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  1953. avcodec_get_chroma_sub_sample(s->avctx->pix_fmt, &hshift, &vshift);
  1954. ^
  1955. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  1956. attribute_deprecated
  1957. ^
  1958. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  1959. # define attribute_deprecated __attribute__((deprecated))
  1960. ^
  1961. CC libavcodec/mjpegenc_common.o
  1962. CC libavcodec/mjpegenc_huffman.o
  1963. CC libavcodec/mlp.o
  1964. CC libavcodec/mlp_parser.o
  1965. CC libavcodec/mlpdec.o
  1966. CC libavcodec/mlpdsp.o
  1967. CC libavcodec/mlpenc.o
  1968. CC libavcodec/mlz.o
  1969. CC libavcodec/mmvideo.o
  1970. CC libavcodec/motion_est.o
  1971. CC libavcodec/motionpixels.o
  1972. CC libavcodec/movsub_bsf.o
  1973. CC libavcodec/movtextdec.o
  1974. CC libavcodec/movtextenc.o
  1975. CC libavcodec/mp3_header_decompress_bsf.o
  1976. CC libavcodec/mpc.o
  1977. CC libavcodec/mpc7.o
  1978. 3 warnings generated.
  1979. CC libavcodec/mpc8.o
  1980. CC libavcodec/mpeg12.o
  1981. CC libavcodec/mpeg12data.o
  1982. CC libavcodec/mpeg12dec.o
  1983. CC libavcodec/mpeg12enc.o
  1984. CC libavcodec/mpeg12framerate.o
  1985. CC libavcodec/mpeg4_unpack_bframes_bsf.o
  1986. CC libavcodec/mpeg4audio.o
  1987. CC libavcodec/mpeg4video.o
  1988. CC libavcodec/mpeg4video_parser.o
  1989. CC libavcodec/mpeg4videodec.o
  1990. CC libavcodec/mpeg4videoenc.o
  1991. CC libavcodec/mpeg_er.o
  1992. CC libavcodec/mpegaudio.o
  1993. CC libavcodec/mpegaudio_parser.o
  1994. CC libavcodec/mpegaudiodata.o
  1995. CC libavcodec/mpegaudiodec_fixed.o
  1996. CC libavcodec/mpegaudiodec_float.o
  1997. CC libavcodec/mpegaudiodecheader.o
  1998. CC libavcodec/mpegaudiodsp.o
  1999. CC libavcodec/mpegaudiodsp_data.o
  2000. CC libavcodec/mpegaudiodsp_fixed.o
  2001. CC libavcodec/mpegaudiodsp_float.o
  2002. CC libavcodec/mpegaudioenc_fixed.o
  2003. CC libavcodec/mpegaudioenc_float.o
  2004. CC libavcodec/mpegpicture.o
  2005. CC libavcodec/mpegutils.o
  2006. CC libavcodec/mpegvideo.o
  2007. libavcodec/mpegvideo.c:918:5: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  2008. avcodec_get_chroma_sub_sample(s->avctx->pix_fmt,
  2009. ^
  2010. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  2011. attribute_deprecated
  2012. ^
  2013. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  2014. # define attribute_deprecated __attribute__((deprecated))
  2015. ^
  2016. libavcodec/mpegvideo.c:1765:9: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  2017. avcodec_get_chroma_sub_sample(avctx->pix_fmt, &h_chroma_shift, &v_chroma_shift);
  2018. ^
  2019. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  2020. attribute_deprecated
  2021. ^
  2022. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  2023. # define attribute_deprecated __attribute__((deprecated))
  2024. ^
  2025. CC libavcodec/mpegvideo_enc.o
  2026. CC libavcodec/mpegvideo_motion.o
  2027. CC libavcodec/mpegvideo_parser.o
  2028. CC libavcodec/mpegvideodata.o
  2029. CC libavcodec/mpegvideodsp.o
  2030. CC libavcodec/mpegvideoencdsp.o
  2031. 2 warnings generated.
  2032. CC libavcodec/mpl2dec.o
  2033. CC libavcodec/mqc.o
  2034. CC libavcodec/mqcdec.o
  2035. CC libavcodec/mqcenc.o
  2036. CC libavcodec/mscc.o
  2037. CC libavcodec/msgsmdec.o
  2038. CC libavcodec/msmpeg4.o
  2039. CC libavcodec/msmpeg4data.o
  2040. CC libavcodec/msmpeg4dec.o
  2041. CC libavcodec/msmpeg4enc.o
  2042. CC libavcodec/msrle.o
  2043. CC libavcodec/msrledec.o
  2044. CC libavcodec/mss1.o
  2045. CC libavcodec/mss12.o
  2046. CC libavcodec/mss2.o
  2047. CC libavcodec/mss2dsp.o
  2048. CC libavcodec/mss3.o
  2049. CC libavcodec/mss34dsp.o
  2050. CC libavcodec/mss4.o
  2051. CC libavcodec/msvideo1.o
  2052. CC libavcodec/msvideo1enc.o
  2053. CC libavcodec/mvcdec.o
  2054. CC libavcodec/mxpegdec.o
  2055. CC libavcodec/nellymoser.o
  2056. CC libavcodec/nellymoserdec.o
  2057. CC libavcodec/nellymoserenc.o
  2058. CC libavcodec/neon/mpegvideo.o
  2059. CC libavcodec/noise_bsf.o
  2060. CC libavcodec/null_bsf.o
  2061. CC libavcodec/nuv.o
  2062. CC libavcodec/on2avc.o
  2063. CC libavcodec/on2avcdata.o
  2064. CC libavcodec/options.o
  2065. CC libavcodec/opus.o
  2066. CC libavcodec/opus_celt.o
  2067. CC libavcodec/opus_parser.o
  2068. CC libavcodec/opus_pvq.o
  2069. CC libavcodec/opus_rc.o
  2070. libavcodec/opus_rc.c:170:17: warning: passing 'const uint8_t *' (aka 'const unsigned char *') to parameter of type 'void *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
  2071. AV_WB32(rc->rb.position, rc->rb.cacheval);
  2072. ^~~~~~~~~~~~~~~
  2073. ./libavutil/intreadwrite.h:424:36: note: expanded from macro 'AV_WB32'
  2074. # define AV_WB32(p, v) AV_WB(32, p, v)
  2075. ^
  2076. ./libavutil/intreadwrite.h:395:36: note: expanded from macro 'AV_WB'
  2077. # define AV_WB(s, p, v) AV_WN##s(p, av_bswap##s(v))
  2078. ^
  2079. ./libavutil/arm/intreadwrite.h:59:44: note: passing argument to parameter 'p' here
  2080. static av_always_inline void AV_WN32(void *p, uint32_t v)
  2081. ^
  2082. CC libavcodec/opus_silk.o
  2083. 1 warning generated.
  2084. CC libavcodec/opusdec.o
  2085. CC libavcodec/opusenc.o
  2086. CC libavcodec/opusenc_psy.o
  2087. CC libavcodec/opustab.o
  2088. CC libavcodec/pafaudio.o
  2089. CC libavcodec/pafvideo.o
  2090. CC libavcodec/pamenc.o
  2091. CC libavcodec/parser.o
  2092. CC libavcodec/pcm-bluray.o
  2093. CC libavcodec/pcm-dvd.o
  2094. CC libavcodec/pcm.o
  2095. CC libavcodec/pcx.o
  2096. CC libavcodec/pcxenc.o
  2097. CC libavcodec/pgssubdec.o
  2098. CC libavcodec/pictordec.o
  2099. CC libavcodec/pixblockdsp.o
  2100. CC libavcodec/pixlet.o
  2101. CC libavcodec/png.o
  2102. CC libavcodec/png_parser.o
  2103. CC libavcodec/pngdec.o
  2104. CC libavcodec/pngdsp.o
  2105. CC libavcodec/pngenc.o
  2106. libavcodec/pngenc.c:277:25: warning: assigning to 'Bytef *' (aka 'unsigned char *') from 'const uint8_t *' (aka 'const unsigned char *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
  2107. s->zstream.next_in = data;
  2108. ^ ~~~~
  2109. CC libavcodec/pnm.o
  2110. CC libavcodec/pnm_parser.o
  2111. 1 warning generated.
  2112. CC libavcodec/pnmdec.o
  2113. CC libavcodec/pnmenc.o
  2114. CC libavcodec/profiles.o
  2115. CC libavcodec/proresdata.o
  2116. CC libavcodec/proresdec2.o
  2117. CC libavcodec/proresdec_lgpl.o
  2118. CC libavcodec/proresdsp.o
  2119. CC libavcodec/proresenc_anatoliy.o
  2120. CC libavcodec/proresenc_kostya.o
  2121. CC libavcodec/psd.o
  2122. CC libavcodec/psymodel.o
  2123. CC libavcodec/pthread.o
  2124. CC libavcodec/pthread_frame.o
  2125. CC libavcodec/pthread_slice.o
  2126. CC libavcodec/ptx.o
  2127. CC libavcodec/qcelpdec.o
  2128. CC libavcodec/qdm2.o
  2129. CC libavcodec/qdmc.o
  2130. CC libavcodec/qdrw.o
  2131. CC libavcodec/qpeg.o
  2132. CC libavcodec/qpeldsp.o
  2133. CC libavcodec/qsv_api.o
  2134. CC libavcodec/qtrle.o
  2135. CC libavcodec/qtrleenc.o
  2136. CC libavcodec/r210dec.o
  2137. CC libavcodec/r210enc.o
  2138. CC libavcodec/ra144.o
  2139. CC libavcodec/ra144dec.o
  2140. CC libavcodec/ra144enc.o
  2141. CC libavcodec/ra288.o
  2142. CC libavcodec/ralf.o
  2143. CC libavcodec/rangecoder.o
  2144. CC libavcodec/ratecontrol.o
  2145. CC libavcodec/raw.o
  2146. CC libavcodec/rawdec.o
  2147. CC libavcodec/rawenc.o
  2148. CC libavcodec/rdft.o
  2149. CC libavcodec/realtextdec.o
  2150. CC libavcodec/remove_extradata_bsf.o
  2151. CC libavcodec/resample.o
  2152. CC libavcodec/resample2.o
  2153. CC libavcodec/rl.o
  2154. CC libavcodec/rl2.o
  2155. CC libavcodec/rle.o
  2156. CC libavcodec/roqaudioenc.o
  2157. CC libavcodec/roqvideo.o
  2158. CC libavcodec/roqvideodec.o
  2159. CC libavcodec/roqvideoenc.o
  2160. CC libavcodec/rpza.o
  2161. CC libavcodec/rscc.o
  2162. CC libavcodec/rtjpeg.o
  2163. CC libavcodec/rv10.o
  2164. CC libavcodec/rv10enc.o
  2165. CC libavcodec/rv20enc.o
  2166. CC libavcodec/rv30.o
  2167. CC libavcodec/rv30dsp.o
  2168. CC libavcodec/rv34.o
  2169. CC libavcodec/rv34_parser.o
  2170. CC libavcodec/rv34dsp.o
  2171. CC libavcodec/rv40.o
  2172. CC libavcodec/rv40dsp.o
  2173. CC libavcodec/s302m.o
  2174. CC libavcodec/s302menc.o
  2175. CC libavcodec/samidec.o
  2176. CC libavcodec/sanm.o
  2177. CC libavcodec/sbrdsp.o
  2178. CC libavcodec/sbrdsp_fixed.o
  2179. CC libavcodec/scpr.o
  2180. CC libavcodec/screenpresso.o
  2181. CC libavcodec/sgidec.o
  2182. CC libavcodec/sgienc.o
  2183. CC libavcodec/sgirledec.o
  2184. CC libavcodec/sheervideo.o
  2185. CC libavcodec/shorten.o
  2186. CC libavcodec/simple_idct.o
  2187. CC libavcodec/sinewin.o
  2188. CC libavcodec/sinewin_fixed.o
  2189. CC libavcodec/sipr.o
  2190. CC libavcodec/sipr16k.o
  2191. CC libavcodec/sipr_parser.o
  2192. CC libavcodec/smacker.o
  2193. CC libavcodec/smc.o
  2194. CC libavcodec/smvjpegdec.o
  2195. libavcodec/smvjpegdec.c:131:15: warning: 'refcounted_frames' is deprecated [-Wdeprecated-declarations]
  2196. s->avctx->refcounted_frames = 1;
  2197. ^
  2198. libavcodec/avcodec.h:2693:5: note: 'refcounted_frames' has been explicitly marked deprecated here
  2199. attribute_deprecated
  2200. ^
  2201. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  2202. # define attribute_deprecated __attribute__((deprecated))
  2203. ^
  2204. libavcodec/smvjpegdec.c:162:15: warning: 'avcodec_decode_video2' is deprecated [-Wdeprecated-declarations]
  2205. ret = avcodec_decode_video2(s->avctx, mjpeg_data, &s->mjpeg_data_size, avpkt);
  2206. ^
  2207. libavcodec/avcodec.h:4991:1: note: 'avcodec_decode_video2' has been explicitly marked deprecated here
  2208. attribute_deprecated
  2209. ^
  2210. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  2211. # define attribute_deprecated __attribute__((deprecated))
  2212. ^
  2213. 2 warnings generated.
  2214. CC libavcodec/snappy.o
  2215. CC libavcodec/snow.o
  2216. CC libavcodec/snow_dwt.o
  2217. CC libavcodec/snowdec.o
  2218. CC libavcodec/snowenc.o
  2219. libavcodec/snowenc.c:136:5: warning: 'avcodec_get_chroma_sub_sample' is deprecated [-Wdeprecated-declarations]
  2220. avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_h_shift, &s->chroma_v_shift);
  2221. ^
  2222. libavcodec/avcodec.h:5701:1: note: 'avcodec_get_chroma_sub_sample' has been explicitly marked deprecated here
  2223. attribute_deprecated
  2224. ^
  2225. ./libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  2226. # define attribute_deprecated __attribute__((deprecated))
  2227. ^
  2228. CC libavcodec/sonic.o
  2229. CC libavcodec/sp5xdec.o
  2230. CC libavcodec/speedhq.o
  2231. CC libavcodec/srtdec.o
  2232. CC libavcodec/srtenc.o
  2233. CC libavcodec/startcode.o
  2234. CC libavcodec/subviewerdec.o
  2235. CC libavcodec/sunrast.o
  2236. CC libavcodec/sunrastenc.o
  2237. CC libavcodec/svq1.o
  2238. CC libavcodec/svq13.o
  2239. CC libavcodec/svq1dec.o
  2240. CC libavcodec/svq1enc.o
  2241. CC libavcodec/svq3.o
  2242. libavcodec/svq3.c:1056:21: warning: passing 'const uint8_t *' (aka 'const unsigned char *') to parameter of type 'void *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
  2243. AV_WL32(&s->gb_slice.buffer[1], header ^ s->watermark_key);
  2244. ^~~~~~~~~~~~~~~~~~~~~~
  2245. ./libavutil/intreadwrite.h:182:38: note: expanded from macro 'AV_WL32'
  2246. # define AV_WL32(p, v) AV_WN32(p, v)
  2247. ^
  2248. ./libavutil/arm/intreadwrite.h:59:44: note: passing argument to parameter 'p' here
  2249. static av_always_inline void AV_WN32(void *p, uint32_t v)
  2250. ^
  2251. CC libavcodec/synth_filter.o
  2252. CC libavcodec/tak.o
  2253. CC libavcodec/tak_parser.o
  2254. CC libavcodec/takdec.o
  2255. CC libavcodec/takdsp.o
  2256. CC libavcodec/targa.o
  2257. 1 warning generated.
  2258. CC libavcodec/targa_y216dec.o
  2259. CC libavcodec/targaenc.o
  2260. CC libavcodec/tdsc.o
  2261. CC libavcodec/textdec.o
  2262. CC libavcodec/texturedsp.o
  2263. CC libavcodec/tiertexseqv.o
  2264. CC libavcodec/tiff.o
  2265. CC libavcodec/tiff_common.o
  2266. CC libavcodec/tiff_data.o
  2267. CC libavcodec/tiffenc.o
  2268. CC libavcodec/tmv.o
  2269. CC libavcodec/tpeldsp.o
  2270. CC libavcodec/truemotion1.o
  2271. CC libavcodec/truemotion2.o
  2272. CC libavcodec/truemotion2rt.o
  2273. CC libavcodec/truespeech.o
  2274. CC libavcodec/tscc.o
  2275. libavcodec/tscc.c:81:26: warning: assigning to 'Bytef *' (aka 'unsigned char *') from 'const uint8_t *' (aka 'const unsigned char *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
  2276. c->zstream.next_in = buf;
  2277. ^ ~~~
  2278. 1 warning generated.
  2279. CC libavcodec/tscc2.o
  2280. CC libavcodec/tta.o
  2281. 1 warning generated.
  2282. CC libavcodec/ttadata.o
  2283. CC libavcodec/ttadsp.o
  2284. CC libavcodec/ttaenc.o
  2285. CC libavcodec/ttaencdsp.o
  2286. CC libavcodec/twinvq.o
  2287. CC libavcodec/twinvqdec.o
  2288. CC libavcodec/txd.o
  2289. CC libavcodec/ulti.o
  2290. CC libavcodec/utils.o
  2291. CC libavcodec/utvideo.o
  2292. CC libavcodec/utvideodec.o
  2293. CC libavcodec/utvideodsp.o
  2294. CC libavcodec/utvideoenc.o
  2295. CC libavcodec/v210dec.o
  2296. CC libavcodec/v210enc.o
  2297. CC libavcodec/v210x.o
  2298. CC libavcodec/v308dec.o
  2299. CC libavcodec/v308enc.o
  2300. CC libavcodec/v408dec.o
  2301. CC libavcodec/v408enc.o
  2302. CC libavcodec/v410dec.o
  2303. CC libavcodec/v410enc.o
  2304. CC libavcodec/v4l2_buffers.o
  2305. CC libavcodec/v4l2_context.o
  2306. CC libavcodec/v4l2_fmt.o
  2307. CC libavcodec/v4l2_m2m.o
  2308. libavcodec/v4l2_buffers.c:409:44: error: implicit declaration of function 'mmap' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
  2309. avbuf->plane_info[i].mm_addr = mmap(NULL, avbuf->buf.m.planes[i].length,
  2310. ^
  2311. libavcodec/v4l2_buffers.c:409:44: warning: this function declaration is not a prototype [-Wstrict-prototypes]
  2312. libavcodec/v4l2_buffers.c:409:42: warning: incompatible integer to pointer conversion assigning to 'void *' from 'int' [-Wint-conversion]
  2313. avbuf->plane_info[i].mm_addr = mmap(NULL, avbuf->buf.m.planes[i].length,
  2314. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2315. libavcodec/v4l2_buffers.c:414:42: warning: incompatible integer to pointer conversion assigning to 'void *' from 'int' [-Wint-conversion]
  2316. avbuf->plane_info[i].mm_addr = mmap(NULL, avbuf->buf.length,
  2317. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2318. 3 warnings and 1 error generated.
  2319. make: *** [libavcodec/v4l2_buffers.o] Error 1
  2320. make: *** Waiting for unfinished jobs....
  2321. libavcodec/v4l2_fmt.c:125:12: error: implicit declaration of function 'lfind' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
  2322. item = lfind(&avcodec, fmt_map, &len, sizeof(fmt_map[0]), match_codec);
  2323. ^
  2324. libavcodec/v4l2_fmt.c:125:12: note: did you mean 'tfind'?
  2325. /tmp/my-android-toolchain/bin/../sysroot/usr/include/search.h:49:7: note: 'tfind' declared here
  2326. void* tfind(const void*, void* const*, int (*)(const void*, const void*)) __INTRODUCED_IN(16);
  2327. ^
  2328. libavcodec/v4l2_fmt.c:125:12: warning: this function declaration is not a prototype [-Wstrict-prototypes]
  2329. item = lfind(&avcodec, fmt_map, &len, sizeof(fmt_map[0]), match_codec);
  2330. ^
  2331. libavcodec/v4l2_fmt.c:125:10: warning: incompatible integer to pointer conversion assigning to 'struct fmt_conversion *' from 'int' [-Wint-conversion]
  2332. item = lfind(&avcodec, fmt_map, &len, sizeof(fmt_map[0]), match_codec);
  2333. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2334. libavcodec/v4l2_fmt.c:145:10: warning: incompatible integer to pointer conversion assigning to 'struct fmt_conversion *' from 'int' [-Wint-conversion]
  2335. item = lfind(&avfmt, fmt_map, &len, sizeof(fmt_map[0]), match_fmt);
  2336. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2337. libavcodec/v4l2_fmt.c:177:10: warning: incompatible integer to pointer conversion assigning to 'struct fmt_conversion *' from 'int' [-Wint-conversion]
  2338. item = lfind(&key, fmt_map, &len, sizeof(fmt_map[0]), match_codecfmt);
  2339. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2340. 4 warnings and 1 error generated.
  2341. make: *** [libavcodec/v4l2_fmt.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement