configure 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410
  1. #!/bin/sh
  2. #
  3. # FFmpeg configure script
  4. #
  5. # Copyright (c) 2000-2002 Fabrice Bellard
  6. # Copyright (c) 2005-2008 Diego Biurrun
  7. # Copyright (c) 2005-2008 Mans Rullgard
  8. #
  9. # Prevent locale nonsense from breaking basic text processing.
  10. LC_ALL=C
  11. export LC_ALL
  12. # make sure we are running under a compatible shell
  13. # try to make this part work with most shells
  14. try_exec(){
  15. echo "Trying shell $1"
  16. type "$1" > /dev/null 2>&1 && exec "$@"
  17. }
  18. unset foo
  19. (: ${foo%%bar}) 2> /dev/null
  20. E1="$?"
  21. (: ${foo?}) 2> /dev/null
  22. E2="$?"
  23. if test "$E1" != 0 || test "$E2" = 0; then
  24. echo "Broken shell detected. Trying alternatives."
  25. export FF_CONF_EXEC
  26. if test "0$FF_CONF_EXEC" -lt 1; then
  27. FF_CONF_EXEC=1
  28. try_exec bash "$0" "$@"
  29. fi
  30. if test "0$FF_CONF_EXEC" -lt 2; then
  31. FF_CONF_EXEC=2
  32. try_exec ksh "$0" "$@"
  33. fi
  34. if test "0$FF_CONF_EXEC" -lt 3; then
  35. FF_CONF_EXEC=3
  36. try_exec /usr/xpg4/bin/sh "$0" "$@"
  37. fi
  38. echo "No compatible shell script interpreter found."
  39. echo "This configure script requires a POSIX-compatible shell"
  40. echo "such as bash or ksh."
  41. echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
  42. echo "Instead, install a working POSIX-compatible shell."
  43. echo "Disabling this configure test will create a broken FFmpeg."
  44. if test "$BASH_VERSION" = '2.04.0(1)-release'; then
  45. echo "This bash version ($BASH_VERSION) is broken on your platform."
  46. echo "Upgrade to a later version if available."
  47. fi
  48. exit 1
  49. fi
  50. show_help(){
  51. cat <<EOF
  52. Usage: configure [options]
  53. Options: [defaults in brackets after descriptions]
  54. Help options:
  55. --help print this message
  56. --list-decoders show all available decoders
  57. --list-encoders show all available encoders
  58. --list-hwaccels show all available hardware accelerators
  59. --list-demuxers show all available demuxers
  60. --list-muxers show all available muxers
  61. --list-parsers show all available parsers
  62. --list-protocols show all available protocols
  63. --list-bsfs show all available bitstream filters
  64. --list-indevs show all available input devices
  65. --list-outdevs show all available output devices
  66. --list-filters show all available filters
  67. Standard options:
  68. --logfile=FILE log tests and output to FILE [config.log]
  69. --disable-logging do not log configure debug information
  70. --prefix=PREFIX install in PREFIX [$prefix]
  71. --bindir=DIR install binaries in DIR [PREFIX/bin]
  72. --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]
  73. --libdir=DIR install libs in DIR [PREFIX/lib]
  74. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  75. --incdir=DIR install includes in DIR [PREFIX/include]
  76. --mandir=DIR install man page in DIR [PREFIX/share/man]
  77. Licensing options:
  78. --enable-gpl allow use of GPL code, the resulting libs
  79. and binaries will be under GPL [no]
  80. --enable-version3 upgrade (L)GPL to version 3 [no]
  81. --enable-nonfree allow use of nonfree code, the resulting libs
  82. and binaries will be unredistributable [no]
  83. Configuration options:
  84. --disable-static do not build static libraries [no]
  85. --enable-shared build shared libraries [no]
  86. --enable-small optimize for size instead of speed
  87. --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
  88. --enable-gray enable full grayscale support (slower color)
  89. --disable-swscale-alpha disable alpha channel support in swscale
  90. Documentation options:
  91. --disable-doc do not build documentation
  92. --disable-htmlpages do not build HTML documentation pages
  93. --disable-manpages do not build man documentation pages
  94. --disable-podpages do not build POD documentation pages
  95. --disable-txtpages do not build text documentation pages
  96. Component options:
  97. --disable-ffmpeg disable ffmpeg build
  98. --disable-ffplay disable ffplay build
  99. --disable-ffprobe disable ffprobe build
  100. --disable-ffserver disable ffserver build
  101. --disable-avdevice disable libavdevice build
  102. --disable-avcodec disable libavcodec build
  103. --disable-avformat disable libavformat build
  104. --disable-swresample disable libswresample build
  105. --disable-swscale disable libswscale build
  106. --disable-postproc disable libpostproc build
  107. --disable-avfilter disable libavfilter build
  108. --enable-avresample enable libavresample build [no]
  109. --disable-pthreads disable pthreads [auto]
  110. --disable-w32threads disable Win32 threads [auto]
  111. --disable-os2threads disable OS/2 threads [auto]
  112. --enable-x11grab enable X11 grabbing [no]
  113. --disable-network disable network support [no]
  114. --disable-dct disable DCT code
  115. --disable-dwt disable DWT code
  116. --disable-lsp disable LSP code
  117. --disable-mdct disable MDCT code
  118. --disable-rdft disable RDFT code
  119. --disable-fft disable FFT code
  120. --enable-dxva2 enable DXVA2 code
  121. --enable-vaapi enable VAAPI code [autodetect]
  122. --enable-vda enable VDA code [autodetect]
  123. --enable-vdpau enable VDPAU code [autodetect]
  124. Individual component options:
  125. --disable-everything disable all components listed below
  126. --disable-encoder=NAME disable encoder NAME
  127. --enable-encoder=NAME enable encoder NAME
  128. --disable-encoders disable all encoders
  129. --disable-decoder=NAME disable decoder NAME
  130. --enable-decoder=NAME enable decoder NAME
  131. --disable-decoders disable all decoders
  132. --disable-hwaccel=NAME disable hwaccel NAME
  133. --enable-hwaccel=NAME enable hwaccel NAME
  134. --disable-hwaccels disable all hwaccels
  135. --disable-muxer=NAME disable muxer NAME
  136. --enable-muxer=NAME enable muxer NAME
  137. --disable-muxers disable all muxers
  138. --disable-demuxer=NAME disable demuxer NAME
  139. --enable-demuxer=NAME enable demuxer NAME
  140. --disable-demuxers disable all demuxers
  141. --enable-parser=NAME enable parser NAME
  142. --disable-parser=NAME disable parser NAME
  143. --disable-parsers disable all parsers
  144. --enable-bsf=NAME enable bitstream filter NAME
  145. --disable-bsf=NAME disable bitstream filter NAME
  146. --disable-bsfs disable all bitstream filters
  147. --enable-protocol=NAME enable protocol NAME
  148. --disable-protocol=NAME disable protocol NAME
  149. --disable-protocols disable all protocols
  150. --enable-indev=NAME enable input device NAME
  151. --disable-indev=NAME disable input device NAME
  152. --disable-indevs disable input devices
  153. --enable-outdev=NAME enable output device NAME
  154. --disable-outdev=NAME disable output device NAME
  155. --disable-outdevs disable output devices
  156. --disable-devices disable all devices
  157. --enable-filter=NAME enable filter NAME
  158. --disable-filter=NAME disable filter NAME
  159. --disable-filters disable all filters
  160. External library support:
  161. --enable-avisynth enable reading of AVISynth script files [no]
  162. --enable-bzlib enable bzlib [autodetect]
  163. --enable-fontconfig enable fontconfig
  164. --enable-frei0r enable frei0r video filtering
  165. --enable-gnutls enable gnutls [no]
  166. --enable-libaacplus enable AAC+ encoding via libaacplus [no]
  167. --enable-libass enable libass subtitles rendering [no]
  168. --enable-libbluray enable BluRay reading using libbluray [no]
  169. --enable-libcaca enable textual display using libcaca
  170. --enable-libcelt enable CELT decoding via libcelt [no]
  171. --enable-libcdio enable audio CD grabbing with libcdio
  172. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  173. and libraw1394 [no]
  174. --enable-libfaac enable AAC encoding via libfaac [no]
  175. --enable-libfdk-aac enable AAC encoding via libfdk-aac [no]
  176. --enable-libflite enable flite (voice synthesis) support via libflite [no]
  177. --enable-libfreetype enable libfreetype [no]
  178. --enable-libgsm enable GSM de/encoding via libgsm [no]
  179. --enable-libiec61883 enable iec61883 via libiec61883 [no]
  180. --enable-libilbc enable iLBC de/encoding via libilbc [no]
  181. --enable-libmodplug enable ModPlug via libmodplug [no]
  182. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  183. --enable-libnut enable NUT (de)muxing via libnut,
  184. native (de)muxer exists [no]
  185. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  186. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  187. --enable-libopencv enable video filtering via libopencv [no]
  188. --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
  189. --enable-libopus enable Opus decoding via libopus [no]
  190. --enable-libpulse enable Pulseaudio input via libpulse [no]
  191. --enable-librtmp enable RTMP[E] support via librtmp [no]
  192. --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
  193. --enable-libspeex enable Speex de/encoding via libspeex [no]
  194. --enable-libstagefright-h264 enable H.264 decoding via libstagefright [no]
  195. --enable-libtheora enable Theora encoding via libtheora [no]
  196. --enable-libtwolame enable MP2 encoding via libtwolame [no]
  197. --enable-libutvideo enable Ut Video encoding and decoding via libutvideo [no]
  198. --enable-libv4l2 enable libv4l2/v4l-utils [no]
  199. --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
  200. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  201. --enable-libvorbis enable Vorbis en/decoding via libvorbis,
  202. native implementation exists [no]
  203. --enable-libvpx enable VP8 de/encoding via libvpx [no]
  204. --enable-libx264 enable H.264 encoding via x264 [no]
  205. --enable-libxavs enable AVS encoding via xavs [no]
  206. --enable-libxvid enable Xvid encoding via xvidcore,
  207. native MPEG-4/Xvid encoder exists [no]
  208. --enable-openal enable OpenAL 1.1 capture support [no]
  209. --enable-openssl enable openssl [no]
  210. --enable-zlib enable zlib [autodetect]
  211. Advanced options (experts only):
  212. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  213. --enable-cross-compile assume a cross-compiler is used
  214. --sysroot=PATH root of cross-build tree
  215. --sysinclude=PATH location of cross-build system headers
  216. --target-os=OS compiler targets OS [$target_os]
  217. --target-exec=CMD command to run executables on target
  218. --target-path=DIR path to view of build directory on target
  219. --toolchain=NAME set tool defaults according to NAME
  220. --nm=NM use nm tool NM [$nm_default]
  221. --ar=AR use archive tool AR [$ar_default]
  222. --as=AS use assembler AS [$as_default]
  223. --yasmexe=EXE use yasm-compatible assembler EXE [$yasmexe_default]
  224. --cc=CC use C compiler CC [$cc_default]
  225. --cxx=CXX use C compiler CXX [$cxx_default]
  226. --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
  227. --ld=LD use linker LD [$ld_default]
  228. --host-cc=HOSTCC use host C compiler HOSTCC
  229. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  230. --host-ld=HOSTLD use host linker HOSTLD
  231. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  232. --host-libs=HLIBS use libs HLIBS when linking for host
  233. --host-os=OS compiler host OS [$target_os]
  234. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  235. --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
  236. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  237. --extra-libs=ELIBS add ELIBS [$ELIBS]
  238. --extra-version=STRING version string suffix []
  239. --optflags=OPTFLAGS override optimization-related compiler flags
  240. --build-suffix=SUFFIX library name suffix []
  241. --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
  242. --progs-suffix=SUFFIX program name suffix []
  243. --arch=ARCH select architecture [$arch]
  244. --cpu=CPU select the minimum required CPU (affects
  245. instruction selection, may crash on older CPUs)
  246. --enable-pic build position-independent code
  247. --enable-sram allow use of on-chip SRAM
  248. --enable-thumb compile for Thumb instruction set
  249. --disable-symver disable symbol versioning
  250. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  251. --disable-safe-bitstream-reader
  252. disable buffer boundary checking in bitreaders
  253. (faster, but may crash)
  254. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  255. Optimization options (experts only):
  256. --disable-asm disable all assembler optimizations
  257. --disable-altivec disable AltiVec optimizations
  258. --disable-amd3dnow disable 3DNow! optimizations
  259. --disable-amd3dnowext disable 3DNow! extended optimizations
  260. --disable-mmx disable MMX optimizations
  261. --disable-mmxext disable MMXEXT optimizations
  262. --disable-sse disable SSE optimizations
  263. --disable-sse2 disable SSE2 optimizations
  264. --disable-sse3 disable SSE3 optimizations
  265. --disable-ssse3 disable SSSE3 optimizations
  266. --disable-sse4 disable SSE4 optimizations
  267. --disable-sse42 disable SSE4.2 optimizations
  268. --disable-avx disable AVX optimizations
  269. --disable-fma4 disable FMA4 optimizations
  270. --disable-armv5te disable armv5te optimizations
  271. --disable-armv6 disable armv6 optimizations
  272. --disable-armv6t2 disable armv6t2 optimizations
  273. --disable-armvfp disable ARM VFP optimizations
  274. --disable-mmi disable MMI optimizations
  275. --disable-neon disable NEON optimizations
  276. --disable-vis disable VIS optimizations
  277. --disable-inline-asm disable use of inline assembler
  278. --disable-yasm disable use of yasm assembler
  279. --disable-mips32r2 disable MIPS32R2 optimizations
  280. --disable-mipsdspr1 disable MIPS DSP ASE R1 optimizations
  281. --disable-mipsdspr2 disable MIPS DSP ASE R2 optimizations
  282. --disable-mipsfpu disable floating point MIPS optimizations
  283. --disable-fast-unaligned consider unaligned accesses slow
  284. --postproc-version=V build libpostproc version V.
  285. Where V can be '$ALT_PP_VER_MAJOR.$ALT_PP_VER_MINOR.$ALT_PP_VER_MICRO' or 'current'. [$postproc_version_default]
  286. Developer options (useful when working on FFmpeg itself):
  287. --enable-coverage build with test coverage instrumentation
  288. --disable-debug disable debugging symbols
  289. --enable-debug=LEVEL set the debug level [$debuglevel]
  290. --disable-optimizations disable compiler optimizations
  291. --enable-extra-warnings enable more compiler warnings
  292. --disable-stripping disable stripping of executables and shared libraries
  293. --assert-level=level 0(default), 1 or 2, amount of assertion testing,
  294. 2 causes a slowdown at runtime.
  295. --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
  296. --valgrind=VALGRIND run "make fate" tests through valgrind to detect memory
  297. leaks and errors, using the specified valgrind binary.
  298. Cannot be combined with --target-exec
  299. --samples=PATH location of test samples for FATE, if not set use
  300. \$FATE_SAMPLES at make invocation time.
  301. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  302. should be used only for debugging purposes)
  303. --enable-random randomly enable/disable components
  304. --disable-random
  305. --enable-random=LIST randomly enable/disable specific components or
  306. --disable-random=LIST component groups. LIST is a comma-separated list
  307. of NAME[:PROB] entries where NAME is a component
  308. (group) and PROB the probability associated with
  309. NAME (default 0.5).
  310. --random-seed=VALUE seed value for --enable/disable-random
  311. NOTE: Object files are built at the place where configure is launched.
  312. EOF
  313. exit 0
  314. }
  315. quotes='""'
  316. log(){
  317. echo "$@" >> $logfile
  318. }
  319. log_file(){
  320. log BEGIN $1
  321. pr -n -t $1 >> $logfile
  322. log END $1
  323. }
  324. echolog(){
  325. log "$@"
  326. echo "$@"
  327. }
  328. warn(){
  329. log "WARNING: $*"
  330. WARNINGS="${WARNINGS}WARNING: $*\n"
  331. }
  332. die(){
  333. echolog "$@"
  334. cat <<EOF
  335. If you think configure made a mistake, make sure you are using the latest
  336. version from Git. If the latest version fails, report the problem to the
  337. ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
  338. EOF
  339. if disabled logging; then
  340. cat <<EOF
  341. Rerun configure with logging enabled (do not use --disable-logging), and
  342. include the log this produces with your report.
  343. EOF
  344. else
  345. cat <<EOF
  346. Include the log file "$logfile" produced by configure as this will help
  347. solving the problem.
  348. EOF
  349. fi
  350. exit 1
  351. }
  352. # Avoid locale weirdness, besides we really just want to translate ASCII.
  353. toupper(){
  354. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  355. }
  356. tolower(){
  357. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  358. }
  359. c_escape(){
  360. echo "$*" | sed 's/["\\]/\\\0/g'
  361. }
  362. sh_quote(){
  363. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  364. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  365. echo "$v"
  366. }
  367. cleanws(){
  368. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  369. }
  370. filter(){
  371. pat=$1
  372. shift
  373. for v; do
  374. eval "case $v in $pat) echo $v ;; esac"
  375. done
  376. }
  377. filter_out(){
  378. pat=$1
  379. shift
  380. for v; do
  381. eval "case $v in $pat) ;; *) echo $v ;; esac"
  382. done
  383. }
  384. map(){
  385. m=$1
  386. shift
  387. for v; do eval $m; done
  388. }
  389. add_suffix(){
  390. suffix=$1
  391. shift
  392. for v; do echo ${v}${suffix}; done
  393. }
  394. set_all(){
  395. value=$1
  396. shift
  397. for var in $*; do
  398. eval $var=$value
  399. done
  400. }
  401. set_weak(){
  402. value=$1
  403. shift
  404. for var; do
  405. eval : \${$var:=$value}
  406. done
  407. }
  408. set_safe(){
  409. var=$1
  410. shift
  411. eval $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')='$*'
  412. }
  413. get_safe(){
  414. eval echo \$$(echo "$1" | sed 's/[^A-Za-z0-9_]/_/g')
  415. }
  416. pushvar(){
  417. for var in $*; do
  418. eval level=\${${var}_level:=0}
  419. eval ${var}_${level}="\$$var"
  420. eval ${var}_level=$(($level+1))
  421. done
  422. }
  423. popvar(){
  424. for var in $*; do
  425. eval level=\${${var}_level:-0}
  426. test $level = 0 && continue
  427. eval level=$(($level-1))
  428. eval $var="\${${var}_${level}}"
  429. eval ${var}_level=$level
  430. eval unset ${var}_${level}
  431. done
  432. }
  433. enable(){
  434. set_all yes $*
  435. }
  436. disable(){
  437. set_all no $*
  438. }
  439. enable_weak(){
  440. set_weak yes $*
  441. }
  442. disable_weak(){
  443. set_weak no $*
  444. }
  445. enable_safe(){
  446. for var; do
  447. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  448. done
  449. }
  450. disable_safe(){
  451. for var; do
  452. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  453. done
  454. }
  455. do_enable_deep(){
  456. for var; do
  457. enabled $var && continue
  458. eval sel="\$${var}_select"
  459. eval sgs="\$${var}_suggest"
  460. pushvar var sgs
  461. enable_deep $sel
  462. popvar sgs
  463. enable_deep_weak $sgs
  464. popvar var
  465. done
  466. }
  467. enable_deep(){
  468. do_enable_deep $*
  469. enable $*
  470. }
  471. enable_deep_weak(){
  472. do_enable_deep $*
  473. enable_weak $*
  474. }
  475. enabled(){
  476. test "${1#!}" = "$1" && op== || op=!=
  477. eval test "x\$${1#!}" $op "xyes"
  478. }
  479. disabled(){
  480. test "${1#!}" = "$1" && op== || op=!=
  481. eval test "x\$${1#!}" $op "xno"
  482. }
  483. enabled_all(){
  484. for opt; do
  485. enabled $opt || return 1
  486. done
  487. }
  488. disabled_all(){
  489. for opt; do
  490. disabled $opt || return 1
  491. done
  492. }
  493. enabled_any(){
  494. for opt; do
  495. enabled $opt && return 0
  496. done
  497. }
  498. disabled_any(){
  499. for opt; do
  500. disabled $opt && return 0
  501. done
  502. return 1
  503. }
  504. set_default(){
  505. for opt; do
  506. eval : \${$opt:=\$${opt}_default}
  507. done
  508. }
  509. is_in(){
  510. value=$1
  511. shift
  512. for var in $*; do
  513. [ $var = $value ] && return 0
  514. done
  515. return 1
  516. }
  517. check_deps(){
  518. for cfg; do
  519. cfg="${cfg#!}"
  520. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  521. disabled ${cfg}_checking && continue
  522. enable ${cfg}_checking
  523. eval dep_all="\$${cfg}_deps"
  524. eval dep_any="\$${cfg}_deps_any"
  525. eval dep_sel="\$${cfg}_select"
  526. eval dep_sgs="\$${cfg}_suggest"
  527. eval dep_ifa="\$${cfg}_if"
  528. eval dep_ifn="\$${cfg}_if_any"
  529. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  530. check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  531. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  532. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  533. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  534. enabled_all $dep_all || disable $cfg
  535. enabled_any $dep_any || disable $cfg
  536. disabled_any $dep_sel && disable $cfg
  537. if enabled $cfg; then
  538. eval dep_extralibs="\$${cfg}_extralibs"
  539. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  540. enable_deep $dep_sel
  541. enable_deep_weak $dep_sgs
  542. fi
  543. disable ${cfg}_checking
  544. done
  545. }
  546. print_config_h(){
  547. enabled $1 && v=1 || v=0
  548. echo "#define $2 $v"
  549. }
  550. print_config_mak(){
  551. enabled $1 && v= || v=!
  552. echo "$v$2=yes"
  553. }
  554. print_config_asm(){
  555. enabled $1 && v=1 || v=0
  556. echo "%define $2 $v"
  557. }
  558. print_config(){
  559. pfx=$1
  560. files=$2
  561. shift 2
  562. for cfg; do
  563. ucname="$(toupper $cfg)"
  564. for f in $files; do
  565. "print_config_${f##*.}" $cfg ${pfx}${ucname} >>$f
  566. done
  567. done
  568. }
  569. print_enabled(){
  570. test "$1" = -n && end=" " && shift || end="\n"
  571. suf=$1
  572. shift
  573. for v; do
  574. enabled $v && printf "%s$end" ${v%$suf};
  575. done
  576. }
  577. append(){
  578. var=$1
  579. shift
  580. eval "$var=\"\$$var $*\""
  581. }
  582. prepend(){
  583. var=$1
  584. shift
  585. eval "$var=\"$* \$$var\""
  586. }
  587. add_cppflags(){
  588. append CPPFLAGS "$@"
  589. }
  590. add_cflags(){
  591. append CFLAGS $($cflags_filter "$@")
  592. }
  593. add_cxxflags(){
  594. append CXXFLAGS $($cflags_filter "$@")
  595. }
  596. add_asflags(){
  597. append ASFLAGS $($asflags_filter "$@")
  598. }
  599. add_ldflags(){
  600. append LDFLAGS $($ldflags_filter "$@")
  601. }
  602. add_extralibs(){
  603. prepend extralibs $($ldflags_filter "$@")
  604. }
  605. add_host_cflags(){
  606. append host_cflags $($host_cflags_filter "$@")
  607. }
  608. add_host_ldflags(){
  609. append host_ldflags $($host_ldflags_filter "$@")
  610. }
  611. check_cmd(){
  612. log "$@"
  613. "$@" >> $logfile 2>&1
  614. }
  615. cc_o(){
  616. eval printf '%s\\n' $CC_O
  617. }
  618. cc_e(){
  619. eval printf '%s\\n' $CC_E
  620. }
  621. check_cc(){
  622. log check_cc "$@"
  623. cat > $TMPC
  624. log_file $TMPC
  625. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
  626. }
  627. check_cxx(){
  628. log check_cxx "$@"
  629. cat > $TMPCPP
  630. log_file $TMPCPP
  631. check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
  632. }
  633. check_cpp(){
  634. log check_cpp "$@"
  635. cat > $TMPC
  636. log_file $TMPC
  637. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
  638. }
  639. as_o(){
  640. eval printf '%s\\n' $AS_O
  641. }
  642. check_as(){
  643. log check_as "$@"
  644. cat > $TMPC
  645. log_file $TMPC
  646. check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPC
  647. }
  648. check_inline_asm(){
  649. log check_inline_asm "$@"
  650. name="$1"
  651. code="$2"
  652. shift 2
  653. disable $name
  654. check_as "$@" <<EOF && enable $name
  655. void foo(void){ __asm__ volatile($code); }
  656. EOF
  657. }
  658. check_yasm(){
  659. log check_yasm "$@"
  660. echo "$1" > $TMPS
  661. log_file $TMPS
  662. shift 1
  663. check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
  664. }
  665. ld_o(){
  666. eval printf '%s\\n' $LD_O
  667. }
  668. check_ld(){
  669. log check_ld "$@"
  670. type=$1
  671. shift 1
  672. flags=''
  673. libs=''
  674. for f; do
  675. test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
  676. done
  677. check_$type $($cflags_filter $flags) || return
  678. flags=$($ldflags_filter $flags)
  679. libs=$($ldflags_filter $libs)
  680. check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
  681. }
  682. check_code(){
  683. log check_code "$@"
  684. check=$1
  685. headers=$2
  686. code=$3
  687. shift 3
  688. {
  689. for hdr in $headers; do
  690. echo "#include <$hdr>"
  691. done
  692. echo "int main(void) { $code; return 0; }"
  693. } | check_$check "$@"
  694. }
  695. check_cppflags(){
  696. log check_cppflags "$@"
  697. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  698. int x;
  699. EOF
  700. }
  701. check_cflags(){
  702. log check_cflags "$@"
  703. set -- $($cflags_filter "$@")
  704. check_cc "$@" <<EOF && append CFLAGS "$@"
  705. int x;
  706. EOF
  707. }
  708. check_cxxflags(){
  709. log check_cxxflags "$@"
  710. set -- $($cflags_filter "$@")
  711. check_cxx "$@" <<EOF && append CXXFLAGS "$@"
  712. int x;
  713. EOF
  714. }
  715. test_ldflags(){
  716. log test_ldflags "$@"
  717. check_ld "cc" "$@" <<EOF
  718. int main(void){ return 0; }
  719. EOF
  720. }
  721. check_ldflags(){
  722. log check_ldflags "$@"
  723. test_ldflags "$@" && add_ldflags "$@"
  724. }
  725. check_header(){
  726. log check_header "$@"
  727. header=$1
  728. shift
  729. disable_safe $header
  730. check_cpp "$@" <<EOF && enable_safe $header
  731. #include <$header>
  732. int x;
  733. EOF
  734. }
  735. check_func(){
  736. log check_func "$@"
  737. func=$1
  738. shift
  739. disable $func
  740. check_ld "cc" "$@" <<EOF && enable $func
  741. extern int $func();
  742. int main(void){ $func(); }
  743. EOF
  744. }
  745. check_mathfunc(){
  746. log check_mathfunc "$@"
  747. func=$1
  748. shift
  749. disable $func
  750. check_ld "cc" "$@" <<EOF && enable $func
  751. #include <math.h>
  752. float foo(float f) { return $func(f); }
  753. int main(void){ return (int) foo; }
  754. EOF
  755. }
  756. check_func_headers(){
  757. log check_func_headers "$@"
  758. headers=$1
  759. funcs=$2
  760. shift 2
  761. {
  762. for hdr in $headers; do
  763. echo "#include <$hdr>"
  764. done
  765. for func in $funcs; do
  766. echo "long check_$func(void) { return (long) $func; }"
  767. done
  768. echo "int main(void) { return 0; }"
  769. } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
  770. }
  771. check_class_headers_cpp(){
  772. log check_class_headers_cpp "$@"
  773. headers=$1
  774. classes=$2
  775. shift 2
  776. {
  777. for hdr in $headers; do
  778. echo "#include <$hdr>"
  779. done
  780. echo "int main(void) { "
  781. i=1
  782. for class in $classes; do
  783. echo "$class obj$i;"
  784. i=$(expr $i + 1)
  785. done
  786. echo "return 0; }"
  787. } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
  788. }
  789. check_cpp_condition(){
  790. log check_cpp_condition "$@"
  791. header=$1
  792. condition=$2
  793. shift 2
  794. check_cpp "$@" <<EOF
  795. #include <$header>
  796. #if !($condition)
  797. #error "unsatisfied condition: $condition"
  798. #endif
  799. EOF
  800. }
  801. check_lib(){
  802. log check_lib "$@"
  803. header="$1"
  804. func="$2"
  805. shift 2
  806. check_header $header && check_func $func "$@" && add_extralibs "$@"
  807. }
  808. check_lib2(){
  809. log check_lib2 "$@"
  810. headers="$1"
  811. funcs="$2"
  812. shift 2
  813. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  814. }
  815. check_lib_cpp(){
  816. log check_lib_cpp "$@"
  817. headers="$1"
  818. classes="$2"
  819. shift 2
  820. check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
  821. }
  822. check_pkg_config(){
  823. log check_pkg_config "$@"
  824. pkg="$1"
  825. headers="$2"
  826. funcs="$3"
  827. shift 3
  828. $pkg_config --exists $pkg 2>/dev/null || return
  829. pkg_cflags=$($pkg_config --cflags $pkg)
  830. pkg_libs=$($pkg_config --libs $pkg)
  831. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  832. set_safe ${pkg}_cflags $pkg_cflags &&
  833. set_safe ${pkg}_libs $pkg_libs
  834. }
  835. check_exec(){
  836. check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  837. }
  838. check_exec_crash(){
  839. code=$(cat)
  840. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  841. # are safe but may not be available everywhere. Thus we use
  842. # raise(SIGTERM) instead. The check is run in a subshell so we
  843. # can redirect the "Terminated" message from the shell. SIGBUS
  844. # is not defined by standard C so it is used conditionally.
  845. (check_exec "$@") >> $logfile 2>&1 <<EOF
  846. #include <signal.h>
  847. static void sighandler(int sig){
  848. raise(SIGTERM);
  849. }
  850. int func(void){
  851. $code
  852. }
  853. int (*func_ptr)(void) = func;
  854. int main(void){
  855. signal(SIGILL, sighandler);
  856. signal(SIGFPE, sighandler);
  857. signal(SIGSEGV, sighandler);
  858. #ifdef SIGBUS
  859. signal(SIGBUS, sighandler);
  860. #endif
  861. return func_ptr();
  862. }
  863. EOF
  864. }
  865. check_type(){
  866. log check_type "$@"
  867. headers=$1
  868. type=$2
  869. shift 2
  870. disable_safe "$type"
  871. check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
  872. }
  873. check_struct(){
  874. log check_type "$@"
  875. headers=$1
  876. struct=$2
  877. member=$3
  878. shift 3
  879. disable_safe "${struct}_${member}"
  880. check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
  881. enable_safe "${struct}_${member}"
  882. }
  883. require(){
  884. name="$1"
  885. header="$2"
  886. func="$3"
  887. shift 3
  888. check_lib $header $func "$@" || die "ERROR: $name not found"
  889. }
  890. require2(){
  891. name="$1"
  892. headers="$2"
  893. func="$3"
  894. shift 3
  895. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  896. }
  897. require_cpp(){
  898. name="$1"
  899. headers="$2"
  900. classes="$3"
  901. shift 3
  902. check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
  903. }
  904. require_pkg_config(){
  905. pkg="$1"
  906. check_pkg_config "$@" || die "ERROR: $pkg not found"
  907. add_cflags $(get_safe ${pkg}_cflags)
  908. add_extralibs $(get_safe ${pkg}_libs)
  909. }
  910. hostcc_o(){
  911. eval printf '%s\\n' $HOSTCC_O
  912. }
  913. check_host_cc(){
  914. log check_host_cc "$@"
  915. cat > $TMPC
  916. log_file $TMPC
  917. check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
  918. }
  919. check_host_cflags(){
  920. log check_host_cflags "$@"
  921. set -- $($host_cflags_filter "$@")
  922. check_host_cc "$@" <<EOF && append host_cflags "$@"
  923. int x;
  924. EOF
  925. }
  926. apply(){
  927. file=$1
  928. shift
  929. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  930. }
  931. cp_if_changed(){
  932. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  933. mkdir -p "$(dirname $2)"
  934. cp -f "$1" "$2"
  935. }
  936. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  937. # system-dependent things.
  938. COMPONENT_LIST="
  939. bsfs
  940. decoders
  941. demuxers
  942. encoders
  943. filters
  944. hwaccels
  945. indevs
  946. muxers
  947. outdevs
  948. parsers
  949. protocols
  950. "
  951. DOCUMENT_LIST="
  952. doc
  953. htmlpages
  954. manpages
  955. podpages
  956. txtpages
  957. "
  958. PROGRAM_LIST="
  959. ffplay
  960. ffprobe
  961. ffserver
  962. ffmpeg
  963. "
  964. CONFIG_LIST="
  965. $COMPONENT_LIST
  966. $DOCUMENT_LIST
  967. $PROGRAM_LIST
  968. avcodec
  969. avdevice
  970. avfilter
  971. avformat
  972. avresample
  973. avisynth
  974. bzlib
  975. crystalhd
  976. dct
  977. dwt
  978. dxva2
  979. fast_unaligned
  980. fft
  981. fontconfig
  982. frei0r
  983. gnutls
  984. gpl
  985. gray
  986. hardcoded_tables
  987. incompatible_fork_abi
  988. libaacplus
  989. libass
  990. libbluray
  991. libcaca
  992. libcdio
  993. libcelt
  994. libdc1394
  995. libfaac
  996. libfdk_aac
  997. libflite
  998. libfreetype
  999. libgsm
  1000. libiec61883
  1001. libilbc
  1002. libmodplug
  1003. libmp3lame
  1004. libnut
  1005. libopencore_amrnb
  1006. libopencore_amrwb
  1007. libopencv
  1008. libopenjpeg
  1009. libopus
  1010. libpulse
  1011. librtmp
  1012. libschroedinger
  1013. libspeex
  1014. libstagefright_h264
  1015. libtheora
  1016. libtwolame
  1017. libutvideo
  1018. libv4l2
  1019. libvo_aacenc
  1020. libvo_amrwbenc
  1021. libvorbis
  1022. libvpx
  1023. libx264
  1024. libxavs
  1025. libxvid
  1026. lsp
  1027. mdct
  1028. memalign_hack
  1029. memory_poisoning
  1030. network
  1031. nonfree
  1032. openal
  1033. openssl
  1034. pic
  1035. postproc
  1036. rdft
  1037. runtime_cpudetect
  1038. safe_bitstream_reader
  1039. shared
  1040. small
  1041. sram
  1042. static
  1043. swresample
  1044. swscale
  1045. swscale_alpha
  1046. thumb
  1047. vaapi
  1048. vda
  1049. vdpau
  1050. version3
  1051. xmm_clobber_test
  1052. x11grab
  1053. zlib
  1054. "
  1055. THREADS_LIST='
  1056. pthreads
  1057. w32threads
  1058. os2threads
  1059. '
  1060. ARCH_LIST='
  1061. alpha
  1062. arm
  1063. avr32
  1064. avr32_ap
  1065. avr32_uc
  1066. bfin
  1067. ia64
  1068. m68k
  1069. mips
  1070. mips64
  1071. parisc
  1072. ppc
  1073. ppc64
  1074. s390
  1075. sh4
  1076. sparc
  1077. sparc64
  1078. tomi
  1079. x86
  1080. x86_32
  1081. x86_64
  1082. '
  1083. ARCH_EXT_LIST_X86='
  1084. amd3dnow
  1085. amd3dnowext
  1086. avx
  1087. fma4
  1088. mmx
  1089. mmxext
  1090. sse
  1091. sse2
  1092. sse3
  1093. sse4
  1094. sse42
  1095. ssse3
  1096. '
  1097. ARCH_EXT_LIST="
  1098. $ARCH_EXT_LIST_X86
  1099. altivec
  1100. armv5te
  1101. armv6
  1102. armv6t2
  1103. armvfp
  1104. mmi
  1105. neon
  1106. ppc4xx
  1107. vfpv3
  1108. vis
  1109. mipsfpu
  1110. mips32r2
  1111. mipsdspr1
  1112. mipsdspr2
  1113. "
  1114. HAVE_LIST_PUB='
  1115. bigendian
  1116. fast_unaligned
  1117. incompatible_fork_abi
  1118. '
  1119. HAVE_LIST="
  1120. $ARCH_EXT_LIST
  1121. $(add_suffix _external $ARCH_EXT_LIST)
  1122. $(add_suffix _inline $ARCH_EXT_LIST)
  1123. $HAVE_LIST_PUB
  1124. $THREADS_LIST
  1125. aligned_malloc
  1126. aligned_stack
  1127. alsa_asoundlib_h
  1128. altivec_h
  1129. arpa_inet_h
  1130. asm_mod_q
  1131. asm_mod_y
  1132. asm_types_h
  1133. attribute_may_alias
  1134. attribute_packed
  1135. broken_snprintf
  1136. cbrtf
  1137. clock_gettime
  1138. closesocket
  1139. cmov
  1140. cpuid
  1141. cpunop
  1142. dcbzl
  1143. dev_bktr_ioctl_bt848_h
  1144. dev_bktr_ioctl_meteor_h
  1145. dev_ic_bt8xx_h
  1146. dev_video_bktr_ioctl_bt848_h
  1147. dev_video_meteor_ioctl_meteor_h
  1148. direct_h
  1149. dlfcn_h
  1150. dlopen
  1151. dos_paths
  1152. dxva_h
  1153. ebp_available
  1154. ebx_available
  1155. exp2
  1156. exp2f
  1157. fast_64bit
  1158. fast_clz
  1159. fast_cmov
  1160. fcntl
  1161. fork
  1162. getaddrinfo
  1163. gethrtime
  1164. getopt
  1165. GetProcessAffinityMask
  1166. GetProcessMemoryInfo
  1167. GetProcessTimes
  1168. GetSystemTimeAsFileTime
  1169. getrusage
  1170. gettimeofday
  1171. glob
  1172. gnu_as
  1173. ibm_asm
  1174. inet_aton
  1175. inline_asm
  1176. io_h
  1177. isatty
  1178. isinf
  1179. isnan
  1180. jack_port_get_latency_range
  1181. kbhit
  1182. ldbrx
  1183. libdc1394_1
  1184. libdc1394_2
  1185. llrint
  1186. llrintf
  1187. local_aligned_16
  1188. local_aligned_8
  1189. localtime_r
  1190. log2
  1191. log2f
  1192. loongson
  1193. lrint
  1194. lrintf
  1195. lzo1x_999_compress
  1196. machine_ioctl_bt848_h
  1197. machine_ioctl_meteor_h
  1198. makeinfo
  1199. malloc_h
  1200. MapViewOfFile
  1201. memalign
  1202. mkstemp
  1203. mm_empty
  1204. mmap
  1205. msvcrt
  1206. nanosleep
  1207. PeekNamedPipe
  1208. perl
  1209. pod2man
  1210. poll_h
  1211. posix_memalign
  1212. pthread_cancel
  1213. rdtsc
  1214. rint
  1215. round
  1216. roundf
  1217. rweflags
  1218. sched_getaffinity
  1219. sdl
  1220. sdl_video_size
  1221. setmode
  1222. setrlimit
  1223. Sleep
  1224. sndio_h
  1225. socklen_t
  1226. soundcard_h
  1227. strerror_r
  1228. struct_addrinfo
  1229. struct_group_source_req
  1230. struct_ip_mreq_source
  1231. struct_ipv6_mreq
  1232. struct_pollfd
  1233. struct_rusage_ru_maxrss
  1234. struct_sctp_event_subscribe
  1235. struct_sockaddr_in6
  1236. struct_sockaddr_sa_len
  1237. struct_sockaddr_storage
  1238. struct_v4l2_frmivalenum_discrete
  1239. symver
  1240. symver_asm_label
  1241. symver_gnu_asm
  1242. sysconf
  1243. sysctl
  1244. sys_mman_h
  1245. sys_param_h
  1246. sys_resource_h
  1247. sys_select_h
  1248. sys_soundcard_h
  1249. sys_time_h
  1250. sys_videoio_h
  1251. termios_h
  1252. texi2html
  1253. threads
  1254. trunc
  1255. truncf
  1256. unistd_h
  1257. usleep
  1258. vfp_args
  1259. VirtualAlloc
  1260. windows_h
  1261. winsock2_h
  1262. xform_asm
  1263. xgetbv
  1264. xmm_clobbers
  1265. yasm
  1266. "
  1267. # options emitted with CONFIG_ prefix but not available on command line
  1268. CONFIG_EXTRA="
  1269. aandcttables
  1270. ac3dsp
  1271. avutil
  1272. error_resilience
  1273. gcrypt
  1274. golomb
  1275. gplv3
  1276. h264chroma
  1277. h264dsp
  1278. h264pred
  1279. h264qpel
  1280. huffman
  1281. lgplv3
  1282. lpc
  1283. mpegaudiodsp
  1284. mpegvideo
  1285. mpegvideoenc
  1286. nettle
  1287. rangecoder
  1288. rtpdec
  1289. sinewin
  1290. vp3dsp
  1291. "
  1292. CMDLINE_SELECT="
  1293. $ARCH_EXT_LIST
  1294. $CONFIG_LIST
  1295. $THREADS_LIST
  1296. asm
  1297. coverage
  1298. cross_compile
  1299. debug
  1300. extra_warnings
  1301. inline_asm
  1302. logging
  1303. optimizations
  1304. stripping
  1305. symver
  1306. yasm
  1307. "
  1308. PATHS_LIST='
  1309. bindir
  1310. datadir
  1311. incdir
  1312. libdir
  1313. mandir
  1314. prefix
  1315. shlibdir
  1316. '
  1317. CMDLINE_SET="
  1318. $PATHS_LIST
  1319. ar
  1320. arch
  1321. as
  1322. assert_level
  1323. build_suffix
  1324. cc
  1325. cpu
  1326. cross_prefix
  1327. cxx
  1328. dep_cc
  1329. extra_version
  1330. host_cc
  1331. host_cflags
  1332. host_ld
  1333. host_ldflags
  1334. host_libs
  1335. host_os
  1336. install
  1337. ld
  1338. logfile
  1339. malloc_prefix
  1340. nm
  1341. optflags
  1342. pkg_config
  1343. postproc_version
  1344. progs_suffix
  1345. random_seed
  1346. samples
  1347. strip
  1348. sysinclude
  1349. sysroot
  1350. target_exec
  1351. target_os
  1352. target_path
  1353. toolchain
  1354. valgrind
  1355. yasmexe
  1356. "
  1357. CMDLINE_APPEND="
  1358. extra_cflags
  1359. extra_cxxflags
  1360. "
  1361. # code dependency declarations
  1362. # architecture extensions
  1363. armv5te_deps="arm"
  1364. armv6_deps="arm"
  1365. armv6t2_deps="arm"
  1366. armvfp_deps="arm"
  1367. neon_deps="arm"
  1368. vfpv3_deps="armvfp"
  1369. mipsfpu_deps="mips"
  1370. mips32r2_deps="mips"
  1371. mipsdspr1_deps="mips"
  1372. mipsdspr2_deps="mips"
  1373. mmi_deps="mips"
  1374. altivec_deps="ppc"
  1375. ppc4xx_deps="ppc"
  1376. vis_deps="sparc"
  1377. x86_64_suggest="cmov fast_cmov"
  1378. amd3dnow_deps="mmx"
  1379. amd3dnowext_deps="amd3dnow"
  1380. mmx_deps="x86"
  1381. mmxext_deps="mmx"
  1382. sse_deps="mmxext"
  1383. sse2_deps="sse"
  1384. sse3_deps="sse2"
  1385. ssse3_deps="sse3"
  1386. sse4_deps="ssse3"
  1387. sse42_deps="sse4"
  1388. avx_deps="sse42"
  1389. fma4_deps="avx"
  1390. mmx_external_deps="yasm"
  1391. mmx_inline_deps="inline_asm"
  1392. mmx_suggest="mmx_external mmx_inline"
  1393. for ext in $(filter_out mmx $ARCH_EXT_LIST_X86); do
  1394. eval dep=\$${ext}_deps
  1395. eval ${ext}_external_deps='"${dep}_external"'
  1396. eval ${ext}_inline_deps='"${dep}_inline"'
  1397. eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
  1398. done
  1399. aligned_stack_if_any="ppc x86"
  1400. fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1401. fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
  1402. fast_unaligned_if_any="armv6 ppc x86"
  1403. inline_asm_deps="!tms470"
  1404. need_memalign="altivec neon sse"
  1405. symver_if_any="symver_asm_label symver_gnu_asm"
  1406. log2_deps="!msvcrt"
  1407. # subsystems
  1408. dct_select="rdft"
  1409. mdct_select="fft"
  1410. rdft_select="fft"
  1411. mpegaudiodsp_select="dct"
  1412. mpegvideoenc_select="mpegvideo"
  1413. # decoders / encoders / hardware accelerators
  1414. aac_decoder_select="mdct sinewin"
  1415. aac_encoder_select="mdct sinewin"
  1416. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1417. ac3_decoder_select="mdct ac3dsp ac3_parser"
  1418. ac3_encoder_select="mdct ac3dsp"
  1419. ac3_fixed_encoder_select="mdct ac3dsp"
  1420. alac_encoder_select="lpc"
  1421. amrnb_decoder_select="lsp"
  1422. amrwb_decoder_select="lsp"
  1423. amv_encoder_select="aandcttables"
  1424. atrac1_decoder_select="mdct sinewin"
  1425. atrac3_decoder_select="mdct"
  1426. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1427. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1428. cavs_decoder_select="golomb mpegvideo"
  1429. cook_decoder_select="mdct sinewin"
  1430. cscd_decoder_suggest="zlib"
  1431. dca_decoder_select="mdct"
  1432. dirac_decoder_select="dwt golomb"
  1433. dnxhd_encoder_select="aandcttables mpegvideoenc"
  1434. dxa_decoder_select="zlib"
  1435. eac3_decoder_select="ac3_decoder"
  1436. eac3_encoder_select="ac3_encoder"
  1437. eamad_decoder_select="aandcttables error_resilience mpegvideo"
  1438. eatgq_decoder_select="aandcttables"
  1439. eatqi_decoder_select="aandcttables error_resilience mpegvideo"
  1440. exr_decoder_select="zlib"
  1441. ffv1_decoder_select="golomb rangecoder"
  1442. ffv1_encoder_select="rangecoder"
  1443. ffvhuff_encoder_select="huffman"
  1444. flac_decoder_select="golomb"
  1445. flac_encoder_select="golomb lpc"
  1446. flashsv_decoder_select="zlib"
  1447. flashsv_encoder_select="zlib"
  1448. flashsv2_encoder_select="zlib"
  1449. flashsv2_decoder_select="zlib"
  1450. flv_decoder_select="h263_decoder"
  1451. flv_encoder_select="h263_encoder"
  1452. fraps_decoder_select="huffman"
  1453. h261_decoder_select="error_resilience mpegvideo"
  1454. h261_encoder_select="aandcttables mpegvideoenc"
  1455. h263_decoder_select="error_resilience h263_parser mpegvideo"
  1456. h263_encoder_select="aandcttables error_resilience mpegvideoenc"
  1457. h263_vaapi_hwaccel_select="vaapi h263_decoder"
  1458. h263i_decoder_select="h263_decoder"
  1459. h263p_encoder_select="h263_encoder"
  1460. h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
  1461. h264_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
  1462. h264_dxva2_hwaccel_deps="dxva2api_h"
  1463. h264_dxva2_hwaccel_select="dxva2 h264_decoder"
  1464. h264_vaapi_hwaccel_select="vaapi h264_decoder"
  1465. h264_vda_decoder_select="vda h264_parser h264_decoder"
  1466. h264_vda_hwaccel_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1467. h264_vda_hwaccel_select="vda h264_decoder"
  1468. h264_vdpau_decoder_select="vdpau h264_decoder"
  1469. huffyuv_encoder_select="huffman"
  1470. iac_decoder_select="fft mdct sinewin"
  1471. imc_decoder_select="fft mdct sinewin"
  1472. jpegls_decoder_select="golomb"
  1473. jpegls_encoder_select="golomb"
  1474. ljpeg_encoder_select="aandcttables mpegvideoenc"
  1475. loco_decoder_select="golomb"
  1476. mdec_decoder_select="error_resilience mpegvideo"
  1477. mjpeg_encoder_select="aandcttables mpegvideoenc"
  1478. mlp_decoder_select="mlp_parser"
  1479. mp1_decoder_select="mpegaudiodsp"
  1480. mp1float_decoder_select="mpegaudiodsp"
  1481. mp2_decoder_select="mpegaudiodsp"
  1482. mp2float_decoder_select="mpegaudiodsp"
  1483. mp3_decoder_select="mpegaudiodsp"
  1484. mp3adu_decoder_select="mpegaudiodsp"
  1485. mp3adufloat_decoder_select="mpegaudiodsp"
  1486. mp3float_decoder_select="mpegaudiodsp"
  1487. mp3on4_decoder_select="mpegaudiodsp"
  1488. mp3on4float_decoder_select="mpegaudiodsp"
  1489. mpc7_decoder_select="mpegaudiodsp"
  1490. mpc8_decoder_select="mpegaudiodsp"
  1491. mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
  1492. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1493. mpeg_xvmc_decoder_select="mpegvideo_decoder"
  1494. mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
  1495. mpeg1_vdpau_hwaccel_select="vdpau mpeg1video_decoder"
  1496. mpeg1video_decoder_select="error_resilience mpegvideo"
  1497. mpeg1video_encoder_select="aandcttables error_resilience mpegvideoenc"
  1498. mpeg2_crystalhd_decoder_select="crystalhd"
  1499. mpeg2_dxva2_hwaccel_deps="dxva2api_h"
  1500. mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
  1501. mpeg2_vdpau_hwaccel_select="vdpau mpeg2video_decoder"
  1502. mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
  1503. mpeg2video_decoder_select="error_resilience mpegvideo"
  1504. mpeg2video_encoder_select="aandcttables error_resilience mpegvideoenc"
  1505. mpeg4_crystalhd_decoder_select="crystalhd"
  1506. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1507. mpeg4_encoder_select="h263_encoder"
  1508. mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
  1509. mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
  1510. msmpeg4_crystalhd_decoder_select="crystalhd"
  1511. msmpeg4v1_decoder_select="h263_decoder"
  1512. msmpeg4v1_encoder_select="h263_encoder"
  1513. msmpeg4v2_decoder_select="h263_decoder"
  1514. msmpeg4v2_encoder_select="h263_encoder"
  1515. msmpeg4v3_decoder_select="h263_decoder"
  1516. msmpeg4v3_encoder_select="h263_encoder"
  1517. mss2_decoder_select="vc1_decoder"
  1518. nellymoser_decoder_select="mdct sinewin"
  1519. nellymoser_encoder_select="mdct sinewin"
  1520. png_decoder_select="zlib"
  1521. png_encoder_select="zlib"
  1522. qcelp_decoder_select="lsp"
  1523. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1524. ra_144_encoder_select="lpc"
  1525. ralf_decoder_select="golomb"
  1526. rv10_decoder_select="h263_decoder"
  1527. rv10_encoder_select="h263_encoder"
  1528. rv20_decoder_select="h263_decoder"
  1529. rv20_encoder_select="h263_encoder"
  1530. rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
  1531. rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
  1532. shorten_decoder_select="golomb"
  1533. sipr_decoder_select="lsp"
  1534. snow_decoder_select="dwt rangecoder"
  1535. snow_encoder_select="aandcttables dwt error_resilience mpegvideoenc rangecoder"
  1536. sonic_decoder_select="golomb"
  1537. sonic_encoder_select="golomb"
  1538. sonic_ls_encoder_select="golomb"
  1539. svq1_decoder_select="error_resilience mpegvideo"
  1540. svq1_encoder_select="aandcttables error_resilience mpegvideoenc"
  1541. svq3_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
  1542. svq3_decoder_suggest="zlib"
  1543. theora_decoder_select="vp3_decoder"
  1544. tiff_decoder_suggest="zlib"
  1545. tiff_encoder_suggest="zlib"
  1546. truehd_decoder_select="mlp_parser"
  1547. tscc_decoder_select="zlib"
  1548. twinvq_decoder_select="mdct lsp sinewin"
  1549. utvideo_encoder_select="huffman"
  1550. vc1_crystalhd_decoder_select="crystalhd"
  1551. vc1_decoder_select="h263_decoder h264chroma h264qpel"
  1552. vc1_dxva2_hwaccel_deps="dxva2api_h"
  1553. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1554. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1555. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1556. vc1image_decoder_select="vc1_decoder"
  1557. vorbis_decoder_select="mdct"
  1558. vorbis_encoder_select="mdct"
  1559. vp3_decoder_select="vp3dsp"
  1560. vp5_decoder_select="vp3dsp"
  1561. vp6_decoder_select="huffman vp3dsp"
  1562. vp6a_decoder_select="vp6_decoder"
  1563. vp6f_decoder_select="vp6_decoder"
  1564. vp8_decoder_select="h264pred h264qpel"
  1565. wmapro_decoder_select="mdct sinewin"
  1566. wmav1_decoder_select="mdct sinewin"
  1567. wmav1_encoder_select="mdct sinewin"
  1568. wmav2_decoder_select="mdct sinewin"
  1569. wmav2_encoder_select="mdct sinewin"
  1570. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1571. wmv1_decoder_select="h263_decoder"
  1572. wmv1_encoder_select="h263_encoder"
  1573. wmv2_decoder_select="h263_decoder"
  1574. wmv2_encoder_select="h263_encoder"
  1575. wmv3_decoder_select="vc1_decoder"
  1576. wmv3_crystalhd_decoder_select="crystalhd"
  1577. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1578. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1579. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1580. wmv3image_decoder_select="wmv3_decoder"
  1581. zerocodec_decoder_select="zlib"
  1582. zlib_decoder_select="zlib"
  1583. zlib_encoder_select="zlib"
  1584. zmbv_decoder_select="zlib"
  1585. zmbv_encoder_select="zlib"
  1586. crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
  1587. vaapi_deps="va_va_h"
  1588. vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1589. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1590. # parsers
  1591. h264_parser_select="error_resilience golomb h264dsp h264pred mpegvideo"
  1592. mpeg4video_parser_select="error_resilience mpegvideo"
  1593. mpegvideo_parser_select="error_resilience mpegvideo"
  1594. vc1_parser_select="error_resilience mpegvideo"
  1595. # external libraries
  1596. libaacplus_encoder_deps="libaacplus"
  1597. libcelt_decoder_deps="libcelt"
  1598. libfaac_encoder_deps="libfaac"
  1599. libfdk_aac_encoder_deps="libfdk_aac"
  1600. libgsm_decoder_deps="libgsm"
  1601. libgsm_encoder_deps="libgsm"
  1602. libgsm_ms_decoder_deps="libgsm"
  1603. libgsm_ms_encoder_deps="libgsm"
  1604. libilbc_decoder_deps="libilbc"
  1605. libilbc_encoder_deps="libilbc"
  1606. libmodplug_demuxer_deps="libmodplug"
  1607. libmp3lame_encoder_deps="libmp3lame"
  1608. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1609. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1610. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1611. libopenjpeg_decoder_deps="libopenjpeg"
  1612. libopenjpeg_encoder_deps="libopenjpeg"
  1613. libopus_decoder_deps="libopus"
  1614. libschroedinger_decoder_deps="libschroedinger"
  1615. libschroedinger_encoder_deps="libschroedinger"
  1616. libspeex_decoder_deps="libspeex"
  1617. libspeex_encoder_deps="libspeex"
  1618. libstagefright_h264_decoder_deps="libstagefright_h264"
  1619. libtheora_encoder_deps="libtheora"
  1620. libtwolame_encoder_deps="libtwolame"
  1621. libvo_aacenc_encoder_deps="libvo_aacenc"
  1622. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1623. libvorbis_decoder_deps="libvorbis"
  1624. libvorbis_encoder_deps="libvorbis"
  1625. libvpx_decoder_deps="libvpx"
  1626. libvpx_encoder_deps="libvpx"
  1627. libx264_encoder_deps="libx264"
  1628. libx264rgb_encoder_deps="libx264"
  1629. libxavs_encoder_deps="libxavs"
  1630. libxvid_encoder_deps="libxvid"
  1631. libutvideo_decoder_deps="libutvideo"
  1632. libutvideo_encoder_deps="libutvideo"
  1633. # demuxers / muxers
  1634. ac3_demuxer_select="ac3_parser"
  1635. asf_stream_muxer_select="asf_muxer"
  1636. avisynth_demuxer_deps="avisynth"
  1637. dirac_demuxer_select="dirac_parser"
  1638. eac3_demuxer_select="ac3_parser"
  1639. f4v_muxer_select="mov_muxer"
  1640. flac_demuxer_select="flac_parser"
  1641. ipod_muxer_select="mov_muxer"
  1642. libnut_demuxer_deps="libnut"
  1643. libnut_muxer_deps="libnut"
  1644. matroska_audio_muxer_select="matroska_muxer"
  1645. matroska_demuxer_suggest="zlib bzlib"
  1646. mov_demuxer_suggest="zlib"
  1647. mp3_demuxer_select="mpegaudio_parser"
  1648. mp4_muxer_select="mov_muxer"
  1649. mpegts_muxer_select="adts_muxer latm_muxer mpegvideo"
  1650. mpegtsraw_demuxer_select="mpegts_demuxer"
  1651. mxf_d10_muxer_select="mxf_muxer"
  1652. ogg_demuxer_select="golomb"
  1653. psp_muxer_select="mov_muxer"
  1654. rtp_demuxer_select="sdp_demuxer"
  1655. rtp_muxer_select="mpegvideo"
  1656. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1657. rtsp_demuxer_select="http_protocol rtpdec"
  1658. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
  1659. sap_demuxer_select="sdp_demuxer"
  1660. sap_muxer_select="rtp_muxer rtp_protocol"
  1661. sdp_demuxer_select="rtpdec"
  1662. smoothstreaming_muxer_select="ismv_muxer"
  1663. spdif_muxer_select="aac_parser"
  1664. tg2_muxer_select="mov_muxer"
  1665. tgp_muxer_select="mov_muxer"
  1666. w64_demuxer_deps="wav_demuxer"
  1667. # indevs / outdevs
  1668. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1669. alsa_outdev_deps="alsa_asoundlib_h"
  1670. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1671. caca_outdev_deps="libcaca"
  1672. dshow_indev_deps="IBaseFilter"
  1673. dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid"
  1674. dv1394_indev_deps="dv1394 dv_demuxer"
  1675. fbdev_indev_deps="linux_fb_h"
  1676. iec61883_indev_deps="libiec61883"
  1677. jack_indev_deps="jack_jack_h sem_timedwait"
  1678. lavfi_indev_deps="avfilter"
  1679. libcdio_indev_deps="libcdio"
  1680. libdc1394_indev_deps="libdc1394"
  1681. libv4l2_indev_deps="libv4l2"
  1682. openal_indev_deps="openal"
  1683. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1684. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1685. pulse_indev_deps="libpulse"
  1686. sdl_outdev_deps="sdl"
  1687. sndio_indev_deps="sndio_h"
  1688. sndio_outdev_deps="sndio_h"
  1689. v4l_indev_deps="linux_videodev_h"
  1690. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1691. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1692. vfwcap_indev_extralibs="-lavicap32"
  1693. x11grab_indev_deps="x11grab"
  1694. # protocols
  1695. bluray_protocol_deps="libbluray"
  1696. ffrtmpcrypt_protocol_deps="!librtmp_protocol"
  1697. ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
  1698. ffrtmpcrypt_protocol_select="tcp_protocol"
  1699. ffrtmphttp_protocol_deps="!librtmp_protocol"
  1700. ffrtmphttp_protocol_select="http_protocol"
  1701. gopher_protocol_deps="network"
  1702. httpproxy_protocol_deps="network"
  1703. httpproxy_protocol_select="tcp_protocol"
  1704. http_protocol_deps="network"
  1705. http_protocol_select="tcp_protocol"
  1706. https_protocol_select="tls_protocol"
  1707. librtmp_protocol_deps="librtmp"
  1708. librtmpe_protocol_deps="librtmp"
  1709. librtmps_protocol_deps="librtmp"
  1710. librtmpt_protocol_deps="librtmp"
  1711. librtmpte_protocol_deps="librtmp"
  1712. mmsh_protocol_select="http_protocol"
  1713. mmst_protocol_deps="network"
  1714. rtmp_protocol_deps="!librtmp_protocol"
  1715. rtmp_protocol_select="tcp_protocol"
  1716. rtmpe_protocol_select="ffrtmpcrypt_protocol"
  1717. rtmps_protocol_deps="!librtmp_protocol"
  1718. rtmps_protocol_select="tls_protocol"
  1719. rtmpt_protocol_select="ffrtmphttp_protocol"
  1720. rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
  1721. rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
  1722. rtp_protocol_select="udp_protocol"
  1723. sctp_protocol_deps="network struct_sctp_event_subscribe"
  1724. tcp_protocol_deps="network"
  1725. tls_protocol_deps_any="openssl gnutls"
  1726. tls_protocol_select="tcp_protocol"
  1727. udp_protocol_deps="network"
  1728. # filters
  1729. aconvert_filter_deps="swresample"
  1730. amovie_filter_deps="avcodec avformat"
  1731. aresample_filter_deps="swresample"
  1732. ass_filter_deps="libass"
  1733. asyncts_filter_deps="avresample"
  1734. atempo_filter_deps="avcodec rdft"
  1735. blackframe_filter_deps="gpl"
  1736. boxblur_filter_deps="gpl"
  1737. colormatrix_filter_deps="gpl"
  1738. cropdetect_filter_deps="gpl"
  1739. decimate_filter_deps="gpl avcodec"
  1740. delogo_filter_deps="gpl"
  1741. deshake_filter_deps="avcodec"
  1742. drawtext_filter_deps="libfreetype"
  1743. flite_filter_deps="libflite"
  1744. frei0r_filter_deps="frei0r dlopen"
  1745. frei0r_filter_extralibs='$ldl'
  1746. frei0r_src_filter_deps="frei0r dlopen"
  1747. frei0r_src_filter_extralibs='$ldl'
  1748. hqdn3d_filter_deps="gpl"
  1749. movie_filter_deps="avcodec avformat"
  1750. mp_filter_deps="gpl avcodec swscale postproc inline_asm"
  1751. mptestsrc_filter_deps="gpl"
  1752. negate_filter_deps="lut_filter"
  1753. resample_filter_deps="avresample"
  1754. ocv_filter_deps="libopencv"
  1755. pan_filter_deps="swresample"
  1756. removelogo_filter_deps="avcodec avformat swscale"
  1757. scale_filter_deps="swscale"
  1758. smartblur_filter_deps="gpl swscale"
  1759. showspectrum_filter_deps="avcodec"
  1760. super2xsai_filter_deps="gpl"
  1761. tinterlace_filter_deps="gpl"
  1762. yadif_filter_deps="gpl"
  1763. pixfmts_super2xsai_test_deps="super2xsai_filter"
  1764. tinterlace_merge_test_deps="tinterlace_filter"
  1765. tinterlace_pad_test_deps="tinterlace_filter"
  1766. # libraries
  1767. avdevice_deps="avcodec avformat"
  1768. avformat_deps="avcodec"
  1769. postproc_deps="gpl"
  1770. # programs
  1771. ffmpeg_deps="avcodec avfilter avformat swscale swresample"
  1772. ffmpeg_select="ffbuffersink_filter format_filter aformat_filter
  1773. setpts_filter null_filter anull_filter ffabuffersink_filter"
  1774. ffplay_deps="avcodec avformat swscale swresample sdl"
  1775. ffplay_select="ffbuffersink_filter rdft crop_filter"
  1776. ffprobe_deps="avcodec avformat"
  1777. ffserver_deps="avformat ffm_muxer fork rtp_protocol rtsp_demuxer"
  1778. ffserver_extralibs='$ldl'
  1779. # documentation
  1780. podpages_deps="perl"
  1781. manpages_deps="perl pod2man"
  1782. htmlpages_deps="texi2html"
  1783. txtpages_deps="makeinfo"
  1784. doc_deps_any="manpages htmlpages podpages txtpages"
  1785. # tests
  1786. colormatrix1_test_deps="colormatrix_filter"
  1787. colormatrix2_test_deps="colormatrix_filter"
  1788. mpg_test_deps="mpeg1system_muxer mpegps_demuxer"
  1789. png_test_deps="zlib"
  1790. pp_test_deps="mp_filter"
  1791. pp2_test_deps="mp_filter"
  1792. pp3_test_deps="mp_filter"
  1793. pp4_test_deps="mp_filter"
  1794. pp5_test_deps="mp_filter"
  1795. pp6_test_deps="mp_filter"
  1796. seek_flashsv_flv_test_deps="zlib"
  1797. seek_lavf_mxf_d10_test_deps="mxf_d10_test"
  1798. test_deps(){
  1799. suf1=$1
  1800. suf2=$2
  1801. shift 2
  1802. for v; do
  1803. dep=${v%=*}
  1804. tests=${v#*=}
  1805. for name in ${tests}; do
  1806. append ${name}_test_deps ${dep}$suf1 ${dep}$suf2
  1807. done
  1808. done
  1809. }
  1810. test_deps _muxer _demuxer \
  1811. aiff \
  1812. pcm_alaw=alaw \
  1813. asf \
  1814. au \
  1815. avi \
  1816. dv=dv_fmt \
  1817. ffm \
  1818. flv=flv_fmt \
  1819. gxf \
  1820. matroska=mkv \
  1821. mmf \
  1822. mov="mov ismv" \
  1823. pcm_mulaw=mulaw \
  1824. mxf="mxf mxf_d10" \
  1825. nut \
  1826. ogg="ogg ogg_vp3" \
  1827. rawvideo=pixfmt \
  1828. rm \
  1829. swf \
  1830. mpegts=ts \
  1831. voc \
  1832. wav \
  1833. yuv4mpegpipe=yuv4mpeg \
  1834. # default parameters
  1835. logfile="config.log"
  1836. # installation paths
  1837. prefix_default="/usr/local"
  1838. bindir_default='${prefix}/bin'
  1839. datadir_default='${prefix}/share/ffmpeg'
  1840. incdir_default='${prefix}/include'
  1841. libdir_default='${prefix}/lib'
  1842. mandir_default='${prefix}/share/man'
  1843. shlibdir_default="$libdir_default"
  1844. postproc_version_default="current"
  1845. # toolchain
  1846. ar_default="ar"
  1847. cc_default="gcc"
  1848. cxx_default="g++"
  1849. host_cc_default="gcc"
  1850. install="install"
  1851. ln_s="ln -sf"
  1852. nm_default="nm -g"
  1853. objformat="elf"
  1854. pkg_config_default=pkg-config
  1855. ranlib="ranlib"
  1856. strip_default="strip"
  1857. yasmexe_default="yasm"
  1858. nogas=":"
  1859. # machine
  1860. arch_default=$(uname -m)
  1861. cpu="generic"
  1862. # OS
  1863. target_os_default=$(tolower $(uname -s))
  1864. host_os=$target_os_default
  1865. # alternative libpostproc version
  1866. ALT_PP_VER_MAJOR=51
  1867. ALT_PP_VER_MINOR=2
  1868. ALT_PP_VER_MICRO=101
  1869. ALT_PP_VER=$ALT_PP_VER_MAJOR.$ALT_PP_VER_MINOR.$ALT_PP_VER_MICRO
  1870. # configurable options
  1871. enable $PROGRAM_LIST
  1872. enable $DOCUMENT_LIST
  1873. enable avcodec
  1874. enable avdevice
  1875. enable avfilter
  1876. enable avformat
  1877. enable avutil
  1878. enable postproc
  1879. enable stripping
  1880. enable swresample
  1881. enable swscale
  1882. enable asm
  1883. enable debug
  1884. enable doc
  1885. enable network
  1886. enable optimizations
  1887. enable runtime_cpudetect
  1888. enable safe_bitstream_reader
  1889. enable static
  1890. enable swscale_alpha
  1891. # build settings
  1892. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1893. FFSERVERLDFLAGS=-Wl,-E
  1894. LIBPREF="lib"
  1895. LIBSUF=".a"
  1896. FULLNAME='$(NAME)$(BUILDSUF)'
  1897. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1898. SLIBPREF="lib"
  1899. SLIBSUF=".so"
  1900. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1901. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1902. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1903. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1904. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  1905. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  1906. asflags_filter=echo
  1907. cflags_filter=echo
  1908. ldflags_filter=echo
  1909. AS_C='-c'
  1910. AS_O='-o $@'
  1911. CC_C='-c'
  1912. CC_E='-E -o $@'
  1913. CC_O='-o $@'
  1914. CXX_C='-c'
  1915. CXX_O='-o $@'
  1916. LD_O='-o $@'
  1917. LD_LIB='-l%'
  1918. LD_PATH='-L'
  1919. HOSTCC_C='-c'
  1920. HOSTCC_O='-o $@'
  1921. HOSTLD_O='-o $@'
  1922. host_cflags='-D_ISOC99_SOURCE -D_XOPEN_SOURCE=600 -O3 -g'
  1923. host_libs='-lm'
  1924. host_cflags_filter=echo
  1925. host_ldflags_filter=echo
  1926. target_path='$(CURDIR)'
  1927. # since the object filename is not given with the -MM flag, the compiler
  1928. # is only able to print the basename, and we must add the path ourselves
  1929. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1930. DEPFLAGS='-MM'
  1931. # find source path
  1932. if test -f configure; then
  1933. source_path=.
  1934. else
  1935. source_path=$(cd $(dirname "$0"); pwd)
  1936. echo "$source_path" | grep -q '[[:blank:]]' &&
  1937. die "Out of tree builds are impossible with whitespace in source path."
  1938. test -e "$source_path/config.h" &&
  1939. die "Out of tree builds are impossible with config.h in source dir."
  1940. fi
  1941. for v in "$@"; do
  1942. r=${v#*=}
  1943. l=${v%"$r"}
  1944. r=$(sh_quote "$r")
  1945. FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
  1946. done
  1947. find_things(){
  1948. thing=$1
  1949. pattern=$2
  1950. file=$source_path/$3
  1951. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1952. }
  1953. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1954. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1955. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1956. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1957. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1958. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1959. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1960. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1961. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1962. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1963. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1964. ALL_COMPONENTS="
  1965. $BSF_LIST
  1966. $DECODER_LIST
  1967. $DEMUXER_LIST
  1968. $ENCODER_LIST
  1969. $FILTER_LIST
  1970. $HWACCEL_LIST
  1971. $INDEV_LIST
  1972. $MUXER_LIST
  1973. $OUTDEV_LIST
  1974. $PARSER_LIST
  1975. $PROTOCOL_LIST
  1976. "
  1977. find_tests(){
  1978. map "echo ${2}\${v}_test" $(ls "$source_path"/tests/ref/$1 | grep -v '[^-a-z0-9_]')
  1979. }
  1980. LAVF_FATE_TESTS=$(find_tests lavf-fate)
  1981. LAVF_TESTS=$(find_tests lavf)
  1982. LAVFI_TESTS=$(find_tests lavfi)
  1983. SEEK_TESTS=$(find_tests seek seek_)
  1984. ALL_TESTS="$LAVF_FATE_TESTS $LAVF_TESTS $LAVFI_TESTS $SEEK_TESTS"
  1985. for n in $COMPONENT_LIST; do
  1986. v=$(toupper ${n%s})_LIST
  1987. eval enable \$$v
  1988. eval ${n}_if_any="\$$v"
  1989. done
  1990. enable $ARCH_EXT_LIST $ALL_TESTS
  1991. die_unknown(){
  1992. echo "Unknown option \"$1\"."
  1993. echo "See $0 --help for available options."
  1994. exit 1
  1995. }
  1996. show_list() {
  1997. suffix=_$1
  1998. shift
  1999. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  2000. exit 0
  2001. }
  2002. rand_list(){
  2003. IFS=', '
  2004. set -- $*
  2005. unset IFS
  2006. for thing; do
  2007. comp=${thing%:*}
  2008. prob=${thing#$comp}
  2009. prob=${prob#:}
  2010. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  2011. echo "prob ${prob:-0.5}"
  2012. printf '%s\n' $comp
  2013. done
  2014. }
  2015. do_random(){
  2016. action=$1
  2017. shift
  2018. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  2019. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  2020. }
  2021. for opt do
  2022. optval="${opt#*=}"
  2023. case "$opt" in
  2024. --extra-ldflags=*) add_ldflags $optval
  2025. ;;
  2026. --extra-libs=*) add_extralibs $optval
  2027. ;;
  2028. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  2029. ;;
  2030. --enable-debug=*) debuglevel="$optval"
  2031. ;;
  2032. --disable-everything)
  2033. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  2034. ;;
  2035. --enable-random|--disable-random)
  2036. action=${opt%%-random}
  2037. do_random ${action#--} $COMPONENT_LIST
  2038. ;;
  2039. --enable-random=*|--disable-random=*)
  2040. action=${opt%%-random=*}
  2041. do_random ${action#--} $optval
  2042. ;;
  2043. --enable-*=*|--disable-*=*)
  2044. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  2045. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  2046. eval list=\$$(toupper $thing)_LIST
  2047. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  2048. $action $(filter "$name" $list)
  2049. ;;
  2050. --enable-?*|--disable-?*)
  2051. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  2052. if is_in $option $COMPONENT_LIST; then
  2053. test $action = disable && action=unset
  2054. eval $action \$$(toupper ${option%s})_LIST
  2055. elif is_in $option $CMDLINE_SELECT; then
  2056. $action $option
  2057. else
  2058. die_unknown $opt
  2059. fi
  2060. ;;
  2061. --list-*)
  2062. NAME="${opt#--list-}"
  2063. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  2064. NAME=${NAME%s}
  2065. eval show_list $NAME \$$(toupper $NAME)_LIST
  2066. ;;
  2067. --help|-h) show_help
  2068. ;;
  2069. *)
  2070. optname="${opt%%=*}"
  2071. optname="${optname#--}"
  2072. optname=$(echo "$optname" | sed 's/-/_/g')
  2073. if is_in $optname $CMDLINE_SET; then
  2074. eval $optname='$optval'
  2075. elif is_in $optname $CMDLINE_APPEND; then
  2076. append $optname "$optval"
  2077. else
  2078. die_unknown $opt
  2079. fi
  2080. ;;
  2081. esac
  2082. done
  2083. disabled logging && logfile=/dev/null
  2084. echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
  2085. set >> $logfile
  2086. test -n "$cross_prefix" && enable cross_compile
  2087. if enabled cross_compile; then
  2088. test -n "$arch" && test -n "$target_os" ||
  2089. die "Must specify target arch and OS when cross-compiling"
  2090. fi
  2091. set_default arch target_os postproc_version
  2092. # Check if we should build alternative libpostproc version instead of current
  2093. if test "$postproc_version" = $ALT_PP_VER; then
  2094. LIBPOSTPROC_VERSION=$ALT_PP_VER
  2095. LIBPOSTPROC_VERSION_MAJOR=$ALT_PP_VER_MAJOR
  2096. LIBPOSTPROC_VERSION_MINOR=$ALT_PP_VER_MINOR
  2097. LIBPOSTPROC_VERSION_MICRO=$ALT_PP_VER_MICRO
  2098. elif test "$postproc_version" != current; then
  2099. die "Invalid argument to --postproc-version. See --help output."
  2100. fi
  2101. ar_default="${cross_prefix}${ar_default}"
  2102. cc_default="${cross_prefix}${cc_default}"
  2103. cxx_default="${cross_prefix}${cxx_default}"
  2104. nm_default="${cross_prefix}${nm_default}"
  2105. pkg_config_default="${cross_prefix}${pkg_config_default}"
  2106. ranlib="${cross_prefix}${ranlib}"
  2107. strip_default="${cross_prefix}${strip_default}"
  2108. sysinclude_default="${sysroot}/usr/include"
  2109. case "$toolchain" in
  2110. msvc)
  2111. cc_default="c99wrap cl"
  2112. ld_default="c99wrap link"
  2113. nm_default="dumpbin -symbols"
  2114. ar_default="lib"
  2115. ;;
  2116. ?*)
  2117. die "Unknown toolchain $toolchain"
  2118. ;;
  2119. esac
  2120. set_default cc cxx pkg_config strip sysinclude yasmexe
  2121. enabled cross_compile || host_cc_default=$cc
  2122. set_default host_cc
  2123. if ! $pkg_config --version >/dev/null 2>&1; then
  2124. warn "$pkg_config not found, library detection may fail."
  2125. pkg_config=false
  2126. fi
  2127. exesuf() {
  2128. case $1 in
  2129. mingw32*|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  2130. esac
  2131. }
  2132. EXESUF=$(exesuf $target_os)
  2133. HOSTEXESUF=$(exesuf $host_os)
  2134. # set temporary file name
  2135. : ${TMPDIR:=$TEMPDIR}
  2136. : ${TMPDIR:=$TMP}
  2137. : ${TMPDIR:=/tmp}
  2138. if ! check_cmd mktemp -u XXXXXX; then
  2139. # simple replacement for missing mktemp
  2140. # NOT SAFE FOR GENERAL USE
  2141. mktemp(){
  2142. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  2143. }
  2144. fi
  2145. tmpfile(){
  2146. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  2147. (set -C; exec > $tmp) 2>/dev/null ||
  2148. die "Unable to create temporary file in $TMPDIR."
  2149. append TMPFILES $tmp
  2150. eval $1=$tmp
  2151. }
  2152. trap 'rm -f -- $TMPFILES' EXIT
  2153. tmpfile TMPASM .asm
  2154. tmpfile TMPC .c
  2155. tmpfile TMPCPP .cpp
  2156. tmpfile TMPE $EXESUF
  2157. tmpfile TMPH .h
  2158. tmpfile TMPO .o
  2159. tmpfile TMPS .S
  2160. tmpfile TMPSH .sh
  2161. tmpfile TMPV .ver
  2162. unset -f mktemp
  2163. chmod +x $TMPE
  2164. # make sure we can execute files in $TMPDIR
  2165. cat > $TMPSH 2>> $logfile <<EOF
  2166. #! /bin/sh
  2167. EOF
  2168. chmod +x $TMPSH >> $logfile 2>&1
  2169. if ! $TMPSH >> $logfile 2>&1; then
  2170. cat <<EOF
  2171. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  2172. variable to another directory and make sure that it is not mounted noexec.
  2173. EOF
  2174. die "Sanity test failed."
  2175. fi
  2176. msvc_flags(){
  2177. for flag; do
  2178. case $flag in
  2179. -fomit-frame-pointer) echo -Oy ;;
  2180. -g) echo -Z7 ;;
  2181. -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  2182. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  2183. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  2184. -wd4996 -wd4554 ;;
  2185. -std=c99) ;;
  2186. -fno-math-errno) ;;
  2187. -fno-common) ;;
  2188. -fno-signed-zeros) ;;
  2189. -lz) echo zlib.lib ;;
  2190. -l*) echo ${flag#-l}.lib ;;
  2191. *) echo $flag ;;
  2192. esac
  2193. done
  2194. }
  2195. pgi_flags(){
  2196. for flag; do
  2197. case $flag in
  2198. -fomit-frame-pointer) echo -Mnoframe ;;
  2199. -g) echo -gopt ;;
  2200. *) echo $flag ;;
  2201. esac
  2202. done
  2203. }
  2204. suncc_flags(){
  2205. for flag; do
  2206. case $flag in
  2207. -march=*|-mcpu=*)
  2208. case "${flag#*=}" in
  2209. native) echo -xtarget=native ;;
  2210. v9|niagara) echo -xarch=sparc ;;
  2211. ultrasparc) echo -xarch=sparcvis ;;
  2212. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  2213. i586|pentium) echo -xchip=pentium ;;
  2214. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  2215. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  2216. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  2217. pentium4*) echo -xtarget=pentium4 ;;
  2218. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  2219. *-sse3) echo -xarch=sse3 ;;
  2220. core2) echo -xarch=ssse3 -xchip=core2 ;;
  2221. amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
  2222. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  2223. k8|opteron|athlon64|athlon-fx)
  2224. echo -xarch=sse2a ;;
  2225. athlon*) echo -xarch=pentium_proa ;;
  2226. esac
  2227. ;;
  2228. -std=c99) echo -xc99 ;;
  2229. -fomit-frame-pointer) echo -xregs=frameptr ;;
  2230. -fPIC) echo -KPIC -xcode=pic32 ;;
  2231. -W*,*) echo $flag ;;
  2232. -f*-*|-W*) ;;
  2233. *) echo $flag ;;
  2234. esac
  2235. done
  2236. }
  2237. tms470_flags(){
  2238. for flag; do
  2239. case $flag in
  2240. -march=*|-mcpu=*)
  2241. case "${flag#*=}" in
  2242. armv7-a|cortex-a*) echo -mv=7a8 ;;
  2243. armv7-r|cortex-r*) echo -mv=7r4 ;;
  2244. armv7-m|cortex-m*) echo -mv=7m3 ;;
  2245. armv6*|arm11*) echo -mv=6 ;;
  2246. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  2247. echo -mv=5e ;;
  2248. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  2249. esac
  2250. ;;
  2251. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  2252. -mfpu=vfp) echo --float_support=vfpv2 ;;
  2253. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  2254. -msoft-float) echo --float_support=vfplib ;;
  2255. -O[0-3]|-mf=*) echo $flag ;;
  2256. -g) echo -g -mn ;;
  2257. -pds=*) echo $flag ;;
  2258. -D*|-I*) echo $flag ;;
  2259. --gcc|--abi=*) echo $flag ;;
  2260. -me) echo $flag ;;
  2261. esac
  2262. done
  2263. }
  2264. probe_cc(){
  2265. pfx=$1
  2266. _cc=$2
  2267. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  2268. unset _ld_o _ldflags _ld_lib _ld_path
  2269. unset _depflags _DEPCMD _DEPFLAGS
  2270. _flags_filter=echo
  2271. if $_cc --version 2>&1 | grep -q '^GNU assembler'; then
  2272. true # no-op to avoid reading stdin in following checks
  2273. elif $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  2274. _type=llvm_gcc
  2275. gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
  2276. _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
  2277. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2278. _cflags_speed='-O3'
  2279. _cflags_size='-Os'
  2280. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  2281. _type=gcc
  2282. gcc_version=$($_cc --version | head -n1)
  2283. gcc_basever=$($_cc -dumpversion)
  2284. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  2285. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  2286. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  2287. if ! $_cc -dumpversion | grep -q '^2\.'; then
  2288. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2289. fi
  2290. _cflags_speed='-O3'
  2291. _cflags_size='-Os'
  2292. elif $_cc --version 2>/dev/null | grep -q Intel; then
  2293. _type=icc
  2294. _ident=$($_cc --version | head -n1)
  2295. _depflags='-MMD'
  2296. _cflags_speed='-O3'
  2297. _cflags_size='-Os'
  2298. _cflags_noopt='-O1'
  2299. elif $_cc -v 2>&1 | grep -q xlc; then
  2300. _type=xlc
  2301. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  2302. _cflags_speed='-O5'
  2303. _cflags_size='-O5 -qcompact'
  2304. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  2305. _type=ccc
  2306. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  2307. _DEPFLAGS='-M'
  2308. debuglevel=3
  2309. _ldflags='-Wl,-z,now' # calls to libots crash without this
  2310. _cflags_speed='-fast'
  2311. _cflags_size='-O1'
  2312. elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  2313. test -d "$sysroot" || die "No valid sysroot specified."
  2314. _type=armcc
  2315. _ident=$($_cc --vsn | head -n1)
  2316. armcc_conf="$PWD/armcc.conf"
  2317. $_cc --arm_linux_configure \
  2318. --arm_linux_config_file="$armcc_conf" \
  2319. --configure_sysroot="$sysroot" \
  2320. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  2321. die "Error creating armcc configuration file."
  2322. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  2323. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  2324. as_default="${cross_prefix}gcc"
  2325. _depflags='-MMD'
  2326. _cflags_speed='-O3'
  2327. _cflags_size='-Os'
  2328. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  2329. _type=tms470
  2330. _ident=$($_cc -version | head -n1 | tr -s ' ')
  2331. _flags='--gcc --abi=eabi -me'
  2332. _cflags='-D__gnuc_va_list=va_list -D__USER_LABEL_PREFIX__='
  2333. _cc_e='-ppl -fe=$@'
  2334. _cc_o='-fe=$@'
  2335. as_default="${cross_prefix}gcc"
  2336. ld_default="${cross_prefix}gcc"
  2337. _depflags='-ppa -ppd=$(@:.o=.d)'
  2338. _cflags_speed='-O3 -mf=5'
  2339. _cflags_size='-O3 -mf=2'
  2340. _flags_filter=tms470_flags
  2341. elif $_cc -v 2>&1 | grep -q clang; then
  2342. _type=clang
  2343. _ident=$($_cc --version | head -n1)
  2344. _depflags='-MMD'
  2345. _cflags_speed='-O3'
  2346. _cflags_size='-Os'
  2347. elif $_cc -V 2>&1 | grep -q Sun; then
  2348. _type=suncc
  2349. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  2350. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  2351. _DEPFLAGS='-xM1 -xc99'
  2352. _ldflags='-std=c99'
  2353. _cflags_speed='-O5'
  2354. _cflags_size='-O5 -xspace'
  2355. _flags_filter=suncc_flags
  2356. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  2357. _type=pathscale
  2358. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2359. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2360. _cflags_speed='-O2'
  2361. _cflags_size='-Os'
  2362. _flags_filter='filter_out -Wdisabled-optimization'
  2363. elif $_cc -v 2>&1 | grep -q Open64; then
  2364. _type=open64
  2365. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2366. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2367. _cflags_speed='-O2'
  2368. _cflags_size='-Os'
  2369. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  2370. elif $_cc -V 2>&1 | grep -q Portland; then
  2371. _type=pgi
  2372. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  2373. opt_common='-alias=ansi -Mlre -Mpre'
  2374. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  2375. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  2376. _cflags_noopt="-O1"
  2377. _flags_filter=pgi_flags
  2378. elif $_cc 2>&1 | grep -q Microsoft; then
  2379. _type=msvc
  2380. _ident=$($cc 2>&1 | head -n1)
  2381. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  2382. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  2383. _cflags_speed="-O2"
  2384. _cflags_size="-O1"
  2385. # Nonstandard output options, to avoid msys path conversion issues, relies on wrapper to remap it
  2386. if $_cc 2>&1 | grep -q Linker; then
  2387. _ld_o='-out $@'
  2388. else
  2389. _ld_o='-Fe$@'
  2390. fi
  2391. _cc_o='-Fo $@'
  2392. _cc_e='-P -Fi $@'
  2393. _flags_filter=msvc_flags
  2394. _ld_lib='lib%.a'
  2395. _ld_path='-libpath:'
  2396. _flags='-nologo'
  2397. _cflags='-D_USE_MATH_DEFINES -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
  2398. if [ $pfx = hostcc ]; then
  2399. append _cflags -Dsnprintf=_snprintf
  2400. fi
  2401. disable stripping
  2402. fi
  2403. eval ${pfx}_type=\$_type
  2404. eval ${pfx}_ident=\$_ident
  2405. }
  2406. set_ccvars(){
  2407. eval ${1}_C=\${_cc_c-\${${1}_C}}
  2408. eval ${1}_E=\${_cc_e-\${${1}_E}}
  2409. eval ${1}_O=\${_cc_o-\${${1}_O}}
  2410. if [ -n "$_depflags" ]; then
  2411. eval ${1}_DEPFLAGS=\$_depflags
  2412. else
  2413. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  2414. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  2415. eval DEP${1}FLAGS=\$_flags
  2416. fi
  2417. }
  2418. probe_cc cc "$cc"
  2419. cflags_filter=$_flags_filter
  2420. cflags_speed=$_cflags_speed
  2421. cflags_size=$_cflags_size
  2422. cflags_noopt=$_cflags_noopt
  2423. add_cflags $_flags $_cflags
  2424. cc_ldflags=$_ldflags
  2425. set_ccvars CC
  2426. probe_cc hostcc "$host_cc"
  2427. host_cflags_filter=$_flags_filter
  2428. add_host_cflags $_flags $_cflags
  2429. set_ccvars HOSTCC
  2430. test -n "$cc_type" && enable $cc_type ||
  2431. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  2432. : ${as_default:=$cc}
  2433. : ${dep_cc_default:=$cc}
  2434. : ${ld_default:=$cc}
  2435. : ${host_ld_default:=$host_cc}
  2436. set_default ar as dep_cc ld host_ld
  2437. probe_cc as "$as"
  2438. asflags_filter=$_flags_filter
  2439. add_asflags $_flags $_cflags
  2440. set_ccvars AS
  2441. probe_cc ld "$ld"
  2442. ldflags_filter=$_flags_filter
  2443. add_ldflags $_flags $_ldflags
  2444. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  2445. LD_O=${_ld_o-$LD_O}
  2446. LD_LIB=${_ld_lib-$LD_LIB}
  2447. LD_PATH=${_ld_path-$LD_PATH}
  2448. probe_cc hostld "$host_ld"
  2449. host_ldflags_filter=$_flags_filter
  2450. add_host_ldflags $_flags $_ldflags
  2451. HOSTLD_O=${_ld_o-$HOSTLD_O}
  2452. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  2453. probe_cc depcc "$dep_cc"
  2454. CCDEP=${_DEPCMD:-$DEPCMD}
  2455. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  2456. DEPCCFLAGS=$_flags
  2457. fi
  2458. if $ar 2>&1 | grep -q Microsoft; then
  2459. arflags="-nologo"
  2460. ar_o='-out:$@'
  2461. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  2462. arflags="rq"
  2463. ar_o='$@'
  2464. else
  2465. arflags="rc"
  2466. ar_o='$@'
  2467. fi
  2468. add_cflags $extra_cflags
  2469. add_cxxflags $extra_cxxflags
  2470. add_asflags $extra_cflags
  2471. if test -n "$sysroot"; then
  2472. case "$cc_type" in
  2473. gcc|llvm_gcc|clang)
  2474. add_cppflags --sysroot="$sysroot"
  2475. add_ldflags --sysroot="$sysroot"
  2476. ;;
  2477. tms470)
  2478. add_cppflags -I"$sysinclude"
  2479. add_ldflags --sysroot="$sysroot"
  2480. ;;
  2481. esac
  2482. fi
  2483. if test "$cpu" = host; then
  2484. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  2485. case "$cc_type" in
  2486. gcc|llvm_gcc)
  2487. check_native(){
  2488. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  2489. sed -n "/cc1.*$1=/{
  2490. s/.*$1=\\([^ ]*\\).*/\\1/
  2491. p
  2492. q
  2493. }" $TMPE
  2494. }
  2495. cpu=$(check_native -march || check_native -mcpu)
  2496. ;;
  2497. esac
  2498. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  2499. fi
  2500. # Deal with common $arch aliases
  2501. case "$arch" in
  2502. arm*|iPad*)
  2503. arch="arm"
  2504. ;;
  2505. mips|mipsel|IP*)
  2506. arch="mips"
  2507. ;;
  2508. mips64*)
  2509. arch="mips"
  2510. subarch="mips64"
  2511. ;;
  2512. parisc|hppa)
  2513. arch="parisc"
  2514. ;;
  2515. parisc64|hppa64)
  2516. arch="parisc"
  2517. subarch="parisc64"
  2518. ;;
  2519. "Power Macintosh"|ppc|powerpc|ppc64|powerpc64)
  2520. arch="ppc"
  2521. ;;
  2522. s390|s390x)
  2523. arch="s390"
  2524. ;;
  2525. sh4|sh)
  2526. arch="sh4"
  2527. ;;
  2528. sun4u|sparc64)
  2529. arch="sparc"
  2530. subarch="sparc64"
  2531. ;;
  2532. i[3-6]86|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
  2533. arch="x86"
  2534. ;;
  2535. esac
  2536. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  2537. enable $arch
  2538. # Add processor-specific flags
  2539. if test "$cpu" = generic; then
  2540. : do nothing
  2541. elif enabled ppc; then
  2542. case $(tolower $cpu) in
  2543. 601|ppc601|powerpc601)
  2544. cpuflags="-mcpu=601"
  2545. disable altivec
  2546. ;;
  2547. 603*|ppc603*|powerpc603*)
  2548. cpuflags="-mcpu=603"
  2549. disable altivec
  2550. ;;
  2551. 604*|ppc604*|powerpc604*)
  2552. cpuflags="-mcpu=604"
  2553. disable altivec
  2554. ;;
  2555. g3|75*|ppc75*|powerpc75*)
  2556. cpuflags="-mcpu=750 -mpowerpc-gfxopt"
  2557. disable altivec
  2558. ;;
  2559. g4|745*|ppc745*|powerpc745*)
  2560. cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
  2561. ;;
  2562. 74*|ppc74*|powerpc74*)
  2563. cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
  2564. ;;
  2565. g5|970|ppc970|powerpc970)
  2566. cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  2567. ;;
  2568. power[3-7]*)
  2569. cpuflags="-mcpu=$cpu -mpowerpc-gfxopt -mpowerpc64"
  2570. ;;
  2571. cell)
  2572. cpuflags="-mcpu=cell"
  2573. enable ldbrx
  2574. ;;
  2575. e500mc)
  2576. cpuflags="-mcpu=e500mc"
  2577. disable altivec
  2578. ;;
  2579. e500v2)
  2580. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2581. disable altivec
  2582. ;;
  2583. e500)
  2584. cpuflags="-mcpu=8540 -mhard-float"
  2585. disable altivec
  2586. ;;
  2587. esac
  2588. elif enabled x86; then
  2589. case $cpu in
  2590. i[345]86|pentium)
  2591. cpuflags="-march=$cpu"
  2592. disable mmx
  2593. ;;
  2594. # targets that do NOT support conditional mov (cmov)
  2595. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2596. cpuflags="-march=$cpu"
  2597. disable cmov
  2598. ;;
  2599. # targets that do support conditional mov (cmov)
  2600. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|amdfam10|barcelona|atom|bdver*)
  2601. cpuflags="-march=$cpu"
  2602. enable cmov
  2603. enable fast_cmov
  2604. ;;
  2605. # targets that do support conditional mov but on which it's slow
  2606. pentium4|pentium4m|prescott|nocona)
  2607. cpuflags="-march=$cpu"
  2608. enable cmov
  2609. disable fast_cmov
  2610. ;;
  2611. esac
  2612. elif enabled sparc; then
  2613. case $cpu in
  2614. niagara)
  2615. cpuflags="-mcpu=$cpu"
  2616. disable vis
  2617. ;;
  2618. sparc64)
  2619. cpuflags="-mcpu=v9"
  2620. ;;
  2621. esac
  2622. elif enabled arm; then
  2623. case $cpu in
  2624. armv*)
  2625. cpuflags="-march=$cpu"
  2626. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2627. ;;
  2628. *)
  2629. cpuflags="-mcpu=$cpu"
  2630. case $cpu in
  2631. cortex-a*) subarch=armv7a ;;
  2632. cortex-r*) subarch=armv7r ;;
  2633. cortex-m*) enable thumb; subarch=armv7m ;;
  2634. arm11*) subarch=armv6 ;;
  2635. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2636. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2637. esac
  2638. ;;
  2639. esac
  2640. elif enabled alpha; then
  2641. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  2642. elif enabled bfin; then
  2643. cpuflags="-mcpu=$cpu"
  2644. elif enabled mips; then
  2645. cpuflags="-march=$cpu"
  2646. case $cpu in
  2647. 24kc)
  2648. disable mipsfpu
  2649. disable mipsdspr1
  2650. disable mipsdspr2
  2651. ;;
  2652. 24kf*)
  2653. disable mipsdspr1
  2654. disable mipsdspr2
  2655. ;;
  2656. 24kec|34kc|1004kc)
  2657. disable mipsfpu
  2658. disable mipsdspr2
  2659. ;;
  2660. 24kef*|34kf*|1004kf*)
  2661. disable mipsdspr2
  2662. ;;
  2663. 74kc)
  2664. disable mipsfpu
  2665. ;;
  2666. esac
  2667. elif enabled avr32; then
  2668. case $cpu in
  2669. ap7[02]0[0-2])
  2670. subarch="avr32_ap"
  2671. cpuflags="-mpart=$cpu"
  2672. ;;
  2673. ap)
  2674. subarch="avr32_ap"
  2675. cpuflags="-march=$cpu"
  2676. ;;
  2677. uc3[ab]*)
  2678. subarch="avr32_uc"
  2679. cpuflags="-mcpu=$cpu"
  2680. ;;
  2681. uc)
  2682. subarch="avr32_uc"
  2683. cpuflags="-march=$cpu"
  2684. ;;
  2685. esac
  2686. fi
  2687. add_cflags $cpuflags
  2688. add_asflags $cpuflags
  2689. # compiler sanity check
  2690. check_exec <<EOF
  2691. int main(void){ return 0; }
  2692. EOF
  2693. if test "$?" != 0; then
  2694. echo "$cc is unable to create an executable file."
  2695. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2696. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2697. echo "Only do this if you know what cross compiling means."
  2698. fi
  2699. die "C compiler test failed."
  2700. fi
  2701. add_cppflags -D_ISOC99_SOURCE
  2702. add_cxxflags -D__STDC_CONSTANT_MACROS
  2703. check_cflags -std=c99
  2704. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2705. #include <stdlib.h>
  2706. EOF
  2707. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2708. #include <stdlib.h>
  2709. EOF
  2710. check_host_cflags -std=c99
  2711. check_host_cflags -Wall
  2712. case "$arch" in
  2713. alpha|ia64|mips|parisc|sparc)
  2714. spic=$shared
  2715. ;;
  2716. x86)
  2717. subarch="x86_32"
  2718. check_code cc "" "int test[(int)sizeof(char*) - 7]" && subarch="x86_64"
  2719. if test "$subarch" = "x86_64"; then
  2720. spic=$shared
  2721. fi
  2722. ;;
  2723. ppc)
  2724. check_cc <<EOF && subarch="ppc64"
  2725. int test[(int)sizeof(char*) - 7];
  2726. EOF
  2727. ;;
  2728. esac
  2729. enable $subarch
  2730. enabled spic && enable pic
  2731. # OS specific
  2732. case $target_os in
  2733. haiku)
  2734. prefix_default="/boot/common"
  2735. network_extralibs="-lnetwork"
  2736. host_libs=
  2737. ;;
  2738. sunos)
  2739. FFSERVERLDFLAGS=""
  2740. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2741. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2742. network_extralibs="-lsocket -lnsl"
  2743. add_cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  2744. # When using suncc to build, the Solaris linker will mark
  2745. # an executable with each instruction set encountered by
  2746. # the Solaris assembler. As our libraries contain their own
  2747. # guards for processor-specific code, instead suppress
  2748. # generation of the HWCAPS ELF section on Solaris x86 only.
  2749. enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
  2750. nm_default='nm -P -g'
  2751. ;;
  2752. netbsd)
  2753. disable symver
  2754. oss_indev_extralibs="-lossaudio"
  2755. oss_outdev_extralibs="-lossaudio"
  2756. enabled gcc || check_ldflags -Wl,-zmuldefs
  2757. ;;
  2758. openbsd|bitrig)
  2759. # On OpenBSD 4.5. the compiler does not use PIC unless
  2760. # explicitly using -fPIC. FFmpeg builds fine without PIC,
  2761. # however the generated executable will not do anything
  2762. # (simply quits with exit-code 1, no crash, no output).
  2763. # Thus explicitly enable PIC here.
  2764. enable pic
  2765. disable symver
  2766. SHFLAGS='-shared'
  2767. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBVERSION)'
  2768. SLIB_INSTALL_LINKS=
  2769. oss_indev_extralibs="-lossaudio"
  2770. oss_outdev_extralibs="-lossaudio"
  2771. ;;
  2772. dragonfly)
  2773. disable symver
  2774. ;;
  2775. freebsd)
  2776. ;;
  2777. bsd/os)
  2778. add_extralibs -lpoll -lgnugetopt
  2779. strip="strip -d"
  2780. ;;
  2781. darwin)
  2782. gas="gas-preprocessor.pl $cc"
  2783. enabled ppc && add_asflags -force_cpusubtype_ALL
  2784. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2785. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2786. strip="${strip} -x"
  2787. add_ldflags -Wl,-dynamic,-search_paths_first
  2788. SLIBSUF=".dylib"
  2789. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2790. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2791. FFSERVERLDFLAGS=-Wl,-bind_at_load
  2792. objformat="macho"
  2793. enabled x86_64 && objformat="macho64"
  2794. enabled_any pic shared ||
  2795. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2796. ;;
  2797. mingw32*)
  2798. if test $target_os = "mingw32ce"; then
  2799. disable network
  2800. else
  2801. target_os=mingw32
  2802. fi
  2803. LIBTARGET=i386
  2804. if enabled x86_64; then
  2805. LIBTARGET="i386:x86-64"
  2806. elif enabled arm; then
  2807. LIBTARGET=arm-wince
  2808. fi
  2809. shlibdir_default="$bindir_default"
  2810. SLIBPREF=""
  2811. SLIBSUF=".dll"
  2812. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2813. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2814. dlltool="${cross_prefix}dlltool"
  2815. if check_cmd lib.exe -list; then
  2816. SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  2817. if enabled x86_64; then
  2818. LIBTARGET=x64
  2819. fi
  2820. elif check_cmd $dlltool --version; then
  2821. SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  2822. fi
  2823. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2824. SLIB_INSTALL_LINKS=
  2825. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2826. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2827. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  2828. objformat="win32"
  2829. ranlib=:
  2830. enable dos_paths
  2831. check_cflags -fno-common
  2832. add_cppflags -U__STRICT_ANSI__
  2833. ;;
  2834. cygwin*)
  2835. target_os=cygwin
  2836. shlibdir_default="$bindir_default"
  2837. SLIBPREF="cyg"
  2838. SLIBSUF=".dll"
  2839. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2840. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2841. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2842. SLIB_INSTALL_LINKS=
  2843. SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
  2844. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
  2845. objformat="win32"
  2846. enable dos_paths
  2847. check_cflags -fno-common
  2848. add_cppflags -U__STRICT_ANSI__
  2849. ;;
  2850. *-dos|freedos|opendos)
  2851. network_extralibs="-lsocket"
  2852. objformat="coff"
  2853. enable dos_paths
  2854. add_cppflags -U__STRICT_ANSI__
  2855. ;;
  2856. linux)
  2857. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2858. enable dv1394
  2859. ;;
  2860. irix*)
  2861. target_os=irix
  2862. ranlib="echo ignoring ranlib"
  2863. ;;
  2864. os/2*)
  2865. strip="lxlite -CS"
  2866. ln_s="cp -f"
  2867. objformat="aout"
  2868. add_cppflags -D_GNU_SOURCE
  2869. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2870. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2871. FFSERVERLDFLAGS=""
  2872. LIBSUF="_s.a"
  2873. SLIBPREF=""
  2874. SLIBSUF=".dll"
  2875. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2876. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2877. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2878. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2879. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2880. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2881. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2882. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2883. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2884. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2885. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  2886. enable dos_paths
  2887. enable_weak os2threads
  2888. ;;
  2889. gnu/kfreebsd)
  2890. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
  2891. ;;
  2892. gnu)
  2893. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2894. ;;
  2895. qnx)
  2896. add_cppflags -D_QNX_SOURCE
  2897. network_extralibs="-lsocket"
  2898. ;;
  2899. symbian)
  2900. SLIBSUF=".dll"
  2901. enable dos_paths
  2902. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  2903. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  2904. add_ldflags -Wl,--target1-abs,--no-undefined \
  2905. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  2906. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  2907. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  2908. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  2909. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  2910. ;;
  2911. none)
  2912. ;;
  2913. *)
  2914. die "Unknown OS '$target_os'."
  2915. ;;
  2916. esac
  2917. # determine libc flavour
  2918. if check_cpp_condition features.h "defined __UCLIBC__"; then
  2919. libc_type=uclibc
  2920. elif check_cpp_condition features.h "defined __GLIBC__"; then
  2921. libc_type=glibc
  2922. elif check_header _mingw.h; then
  2923. libc_type=mingw
  2924. check_cpp_condition _mingw.h \
  2925. "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) || \
  2926. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2927. die "ERROR: MinGW runtime version must be >= 3.15."
  2928. if check_cpp_condition _mingw.h "defined(__MINGW64_VERSION_MAJOR) && \
  2929. __MINGW64_VERSION_MAJOR < 3"; then
  2930. enable broken_snprintf
  2931. add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
  2932. fi
  2933. elif check_cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  2934. libc_type=newlib
  2935. elif check_func_headers stdlib.h _get_doserrno; then
  2936. libc_type=msvcrt
  2937. enable broken_snprintf
  2938. add_cflags -Dstrtod=avpriv_strtod
  2939. add_cflags -Dsnprintf=avpriv_snprintf \
  2940. -D_snprintf=avpriv_snprintf \
  2941. -Dvsnprintf=avpriv_vsnprintf
  2942. elif check_cpp_condition stddef.h "defined __KLIBC__"; then
  2943. libc_type=klibc
  2944. fi
  2945. test -n "$libc_type" && enable $libc_type
  2946. esc(){
  2947. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  2948. }
  2949. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
  2950. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2951. set_default $PATHS_LIST
  2952. set_default nm
  2953. # we need to build at least one lib type
  2954. if ! enabled_any static shared; then
  2955. cat <<EOF
  2956. At least one library type must be built.
  2957. Specify --enable-static to build the static libraries or --enable-shared to
  2958. build the shared libraries as well. To only build the shared libraries specify
  2959. --disable-static in addition to --enable-shared.
  2960. EOF
  2961. exit 1;
  2962. fi
  2963. die_license_disabled() {
  2964. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2965. }
  2966. die_license_disabled_gpl() {
  2967. enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
  2968. }
  2969. die_license_disabled gpl libcdio
  2970. die_license_disabled gpl libutvideo
  2971. die_license_disabled gpl libx264
  2972. die_license_disabled gpl libxavs
  2973. die_license_disabled gpl libxvid
  2974. die_license_disabled gpl x11grab
  2975. die_license_disabled nonfree libaacplus
  2976. die_license_disabled nonfree libfaac
  2977. enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
  2978. enabled gpl && die_license_disabled_gpl nonfree openssl
  2979. die_license_disabled version3 libopencore_amrnb
  2980. die_license_disabled version3 libopencore_amrwb
  2981. die_license_disabled version3 libvo_aacenc
  2982. die_license_disabled version3 libvo_amrwbenc
  2983. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2984. disabled optimizations || check_cflags -fomit-frame-pointer
  2985. enable_pic() {
  2986. enable pic
  2987. add_cppflags -DPIC
  2988. add_cflags -fPIC
  2989. add_asflags -fPIC
  2990. }
  2991. enabled pic && enable_pic
  2992. check_cc <<EOF || die "Symbol mangling check failed."
  2993. int ff_extern;
  2994. EOF
  2995. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2996. extern_prefix=${sym%%ff_extern*}
  2997. check_cc <<EOF && enable_weak inline_asm
  2998. void foo(void) { __asm__ volatile ("" ::); }
  2999. EOF
  3000. _restrict=
  3001. for restrict_keyword in restrict __restrict__ __restrict; do
  3002. check_cc <<EOF && _restrict=$restrict_keyword && break
  3003. void foo(char * $restrict_keyword p);
  3004. EOF
  3005. done
  3006. check_cc <<EOF && enable attribute_packed
  3007. struct { int x; } __attribute__((packed)) x;
  3008. EOF
  3009. check_cc <<EOF && enable attribute_may_alias
  3010. union { int x; } __attribute__((may_alias)) x;
  3011. EOF
  3012. check_cc <<EOF || die "endian test failed"
  3013. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  3014. EOF
  3015. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  3016. if enabled alpha; then
  3017. check_cflags -mieee
  3018. elif enabled arm; then
  3019. enabled thumb && check_cflags -mthumb || check_cflags -marm
  3020. nogas=die
  3021. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  3022. enable vfp_args
  3023. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  3024. case "${cross_prefix:-$cc}" in
  3025. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  3026. *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  3027. __asm__ (".eabi_attribute 28, 1");
  3028. int main(void) { return 0; }
  3029. EOF
  3030. esac
  3031. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  3032. fi
  3033. enabled armv5te && check_inline_asm armv5te '"qadd r0, r0, r0"'
  3034. enabled armv6 && check_inline_asm armv6 '"sadd16 r0, r0, r0"'
  3035. enabled armv6t2 && check_inline_asm armv6t2 '"movt r0, #0"'
  3036. enabled armvfp && check_inline_asm armvfp '"fadds s0, s0, s0"'
  3037. enabled neon && check_inline_asm neon '"vadd.i16 q0, q0, q0"'
  3038. enabled vfpv3 && check_inline_asm vfpv3 '"vmov.f32 s0, #1.0"'
  3039. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  3040. check_inline_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
  3041. enabled_all armv6t2 shared !pic && enable_pic
  3042. elif enabled mips; then
  3043. check_inline_asm loongson '"dmult.g $1, $2, $3"'
  3044. enabled mmi && check_inline_asm mmi '"lq $2, 0($2)"'
  3045. enabled mips32r2 && add_cflags "-mips32r2" && add_asflags "-mips32r2" &&
  3046. check_inline_asm mips32r2 '"rotr $t0, $t1, 1"'
  3047. enabled mipsdspr1 && add_cflags "-mdsp" && add_asflags "-mdsp" &&
  3048. check_inline_asm mipsdspr1 '"addu.qb $t0, $t1, $t2"'
  3049. enabled mipsdspr2 && add_cflags "-mdspr2" && add_asflags "-mdspr2" &&
  3050. check_inline_asm mipsdspr2 '"absq_s.qb $t0, $t1"'
  3051. enabled mipsfpu && add_cflags "-mhard-float" && add_asflags "-mhard-float" &&
  3052. check_inline_asm mipsfpu '"madd.d $f0, $f2, $f4, $f6"'
  3053. elif enabled ppc; then
  3054. enable local_aligned_8 local_aligned_16
  3055. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  3056. check_inline_asm ibm_asm '"add 0, 0, 0"'
  3057. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  3058. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  3059. # AltiVec flags: The FSF version of GCC differs from the Apple version
  3060. if enabled altivec; then
  3061. nogas=warn
  3062. check_cflags -maltivec -mabi=altivec &&
  3063. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  3064. check_cflags -faltivec
  3065. # check if our compiler supports Motorola AltiVec C API
  3066. check_cc <<EOF || disable altivec
  3067. $inc_altivec_h
  3068. int main(void) {
  3069. vector signed int v1 = (vector signed int) { 0 };
  3070. vector signed int v2 = (vector signed int) { 1 };
  3071. v1 = vec_add(v1, v2);
  3072. return 0;
  3073. }
  3074. EOF
  3075. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  3076. fi
  3077. elif enabled sparc; then
  3078. enabled vis &&
  3079. check_inline_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  3080. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  3081. elif enabled x86; then
  3082. check_code ld immintrin.h "return __xgetbv(0)" "cc" && enable xgetbv
  3083. check_code ld intrin.h "int info[4]; __cpuid(info, 0)" "cc" && enable cpuid
  3084. check_code ld intrin.h "__rdtsc()" "cc" && enable rdtsc
  3085. check_code ld intrin.h "unsigned int x = __readeflags()" "cc" && enable rweflags
  3086. check_code ld mmintrin.h "_mm_empty()" "cc" && enable mm_empty
  3087. enable local_aligned_8 local_aligned_16
  3088. # check whether EBP is available on x86
  3089. # As 'i' is stored on the stack, this program will crash
  3090. # if the base pointer is used to access it because the
  3091. # base pointer is cleared in the inline assembly code.
  3092. check_exec_crash <<EOF && enable ebp_available
  3093. volatile int i=0;
  3094. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  3095. return i;
  3096. EOF
  3097. # check whether EBX is available on x86
  3098. check_inline_asm ebx_available '""::"b"(0)' &&
  3099. check_inline_asm ebx_available '"":::"%ebx"'
  3100. # check whether xmm clobbers are supported
  3101. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  3102. # check whether binutils is new enough to compile SSSE3/MMXEXT
  3103. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  3104. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  3105. if ! disabled_any asm mmx yasm; then
  3106. if check_cmd $yasmexe --version; then
  3107. enabled x86_64 && yasm_extra="-m amd64"
  3108. yasm_debug="-g dwarf2"
  3109. elif check_cmd nasm -v; then
  3110. yasmexe=nasm
  3111. yasm_debug="-g -F dwarf"
  3112. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  3113. fi
  3114. YASMFLAGS="-f $objformat $yasm_extra"
  3115. enabled pic && append YASMFLAGS "-DPIC"
  3116. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  3117. case "$objformat" in
  3118. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  3119. esac
  3120. check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
  3121. die "yasm not found, use --disable-yasm for a crippled build"
  3122. check_yasm "vextractf128 xmm0, ymm0, 0" || disable avx_external
  3123. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  3124. check_yasm "CPU amdnop" && enable cpunop
  3125. fi
  3126. case "$cpu" in
  3127. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  3128. disable fast_clz
  3129. ;;
  3130. esac
  3131. fi
  3132. if enabled asm; then
  3133. as=${gas:=$as}
  3134. check_inline_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  3135. $nogas "GNU assembler not found, install gas-preprocessor"
  3136. fi
  3137. check_ldflags -Wl,--as-needed
  3138. if check_func dlopen; then
  3139. ldl=
  3140. elif check_func dlopen -ldl; then
  3141. ldl=-ldl
  3142. fi
  3143. if enabled network; then
  3144. check_type "sys/types.h sys/socket.h" socklen_t
  3145. check_type netdb.h "struct addrinfo"
  3146. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  3147. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  3148. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  3149. check_type netinet/in.h "struct sockaddr_in6"
  3150. check_type poll.h "struct pollfd"
  3151. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  3152. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  3153. check_type netinet/sctp.h "struct sctp_event_subscribe"
  3154. check_func getaddrinfo $network_extralibs
  3155. # Prefer arpa/inet.h over winsock2
  3156. if check_header arpa/inet.h ; then
  3157. check_func closesocket
  3158. elif check_header winsock2.h ; then
  3159. check_func_headers winsock2.h closesocket -lws2 &&
  3160. network_extralibs="-lws2" ||
  3161. { check_func_headers winsock2.h closesocket -lws2_32 &&
  3162. network_extralibs="-lws2_32"; }
  3163. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  3164. check_type ws2tcpip.h socklen_t
  3165. check_type ws2tcpip.h "struct addrinfo"
  3166. check_type ws2tcpip.h "struct group_source_req"
  3167. check_type ws2tcpip.h "struct ip_mreq_source"
  3168. check_type ws2tcpip.h "struct ipv6_mreq"
  3169. check_type winsock2.h "struct pollfd"
  3170. check_type ws2tcpip.h "struct sockaddr_in6"
  3171. check_type ws2tcpip.h "struct sockaddr_storage"
  3172. check_struct winsock2.h "struct sockaddr" sa_len
  3173. else
  3174. disable network
  3175. fi
  3176. fi
  3177. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  3178. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  3179. check_func clock_gettime || { check_func clock_gettime -lrt && add_extralibs -lrt; }
  3180. check_func fcntl
  3181. check_func fork
  3182. check_func gethrtime
  3183. check_func getopt
  3184. check_func getrusage
  3185. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  3186. check_func gettimeofday
  3187. check_func inet_aton $network_extralibs
  3188. check_func isatty
  3189. check_func localtime_r
  3190. check_func ${malloc_prefix}memalign && enable memalign
  3191. check_func mkstemp
  3192. check_func mmap
  3193. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  3194. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  3195. check_func setrlimit
  3196. check_func strerror_r
  3197. check_func sched_getaffinity
  3198. check_func sysconf
  3199. check_func sysctl
  3200. check_func usleep
  3201. check_func_headers conio.h kbhit
  3202. check_func_headers windows.h PeekNamedPipe
  3203. check_func_headers io.h setmode
  3204. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  3205. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  3206. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  3207. check_func_headers windows.h GetProcessAffinityMask
  3208. check_func_headers windows.h GetProcessTimes
  3209. check_func_headers windows.h GetSystemTimeAsFileTime
  3210. check_func_headers windows.h MapViewOfFile
  3211. check_func_headers windows.h Sleep
  3212. check_func_headers windows.h VirtualAlloc
  3213. check_func_headers glob.h glob
  3214. check_header direct.h
  3215. check_header dlfcn.h
  3216. check_header dxva.h
  3217. check_header dxva2api.h -D_WIN32_WINNT=0x0600
  3218. check_header io.h
  3219. check_header libcrystalhd/libcrystalhd_if.h
  3220. check_header malloc.h
  3221. check_header poll.h
  3222. check_header sys/mman.h
  3223. check_header sys/param.h
  3224. check_header sys/resource.h
  3225. check_header sys/select.h
  3226. check_header sys/time.h
  3227. check_header termios.h
  3228. check_header unistd.h
  3229. check_header vdpau/vdpau.h
  3230. check_header vdpau/vdpau_x11.h
  3231. check_header windows.h
  3232. check_header X11/extensions/XvMClib.h
  3233. check_header asm/types.h
  3234. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  3235. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  3236. # check for VDA header
  3237. if ! disabled vda && ! enabled ppc; then
  3238. if check_header VideoDecodeAcceleration/VDADecoder.h; then
  3239. enable vda
  3240. add_extralibs -framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore
  3241. fi
  3242. fi
  3243. if ! disabled w32threads && ! enabled pthreads; then
  3244. check_func _beginthreadex && enable w32threads
  3245. fi
  3246. # check for some common methods of building with pthread support
  3247. # do this before the optional library checks as some of them require pthreads
  3248. if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
  3249. enable pthreads
  3250. if check_func pthread_create; then
  3251. :
  3252. elif check_func pthread_create -pthread; then
  3253. add_cflags -pthread
  3254. add_extralibs -pthread
  3255. elif check_func pthread_create -pthreads; then
  3256. add_cflags -pthreads
  3257. add_extralibs -pthreads
  3258. elif check_func pthread_create -lpthreadGC2; then
  3259. add_extralibs -lpthreadGC2
  3260. elif ! check_lib pthread.h pthread_create -lpthread; then
  3261. disable pthreads
  3262. fi
  3263. fi
  3264. for thread in $THREADS_LIST; do
  3265. if enabled $thread; then
  3266. test -n "$thread_type" &&
  3267. die "ERROR: Only one thread type must be selected." ||
  3268. thread_type="$thread"
  3269. fi
  3270. done
  3271. if enabled pthreads; then
  3272. check_func pthread_cancel
  3273. fi
  3274. check_lib math.h sin -lm && LIBM="-lm"
  3275. disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
  3276. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  3277. check_mathfunc cbrtf
  3278. check_mathfunc exp2
  3279. check_mathfunc exp2f
  3280. check_mathfunc isinf
  3281. check_mathfunc isnan
  3282. check_mathfunc llrint
  3283. check_mathfunc llrintf
  3284. check_mathfunc log2
  3285. check_mathfunc log2f
  3286. check_mathfunc lrint
  3287. check_mathfunc lrintf
  3288. check_mathfunc rint
  3289. check_mathfunc round
  3290. check_mathfunc roundf
  3291. check_mathfunc trunc
  3292. check_mathfunc truncf
  3293. # these are off by default, so fail if requested and not available
  3294. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  3295. enabled fontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
  3296. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  3297. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  3298. enabled libiec61883 && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
  3299. enabled libaacplus && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
  3300. enabled libass && require_pkg_config libass ass/ass.h ass_library_init
  3301. enabled libbluray && require_pkg_config libbluray libbluray/bluray.h bd_open
  3302. enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
  3303. { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
  3304. die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
  3305. enabled libcaca && require_pkg_config caca caca.h caca_create_canvas
  3306. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  3307. enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
  3308. flite_libs="-lflite_cmu_time_awb -lflite_cmu_us_awb -lflite_cmu_us_kal -lflite_cmu_us_kal16 -lflite_cmu_us_rms -lflite_cmu_us_slt -lflite_usenglish -lflite_cmulex -lflite"
  3309. enabled libflite && require2 libflite "flite/flite.h" flite_init $flite_libs
  3310. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  3311. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  3312. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  3313. enabled libmodplug && require libmodplug libmodplug/modplug.h ModPlug_Load -lmodplug
  3314. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  3315. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  3316. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  3317. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  3318. enabled libopencv && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
  3319. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  3320. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  3321. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  3322. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  3323. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  3324. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  3325. enabled libstagefright_h264 && require_cpp libstagefright_h264 "binder/ProcessState.h media/stagefright/MetaData.h
  3326. media/stagefright/MediaBufferGroup.h media/stagefright/MediaDebug.h media/stagefright/MediaDefs.h
  3327. media/stagefright/OMXClient.h media/stagefright/OMXCodec.h" android::OMXClient -lstagefright -lmedia -lutils -lbinder -lgnustl_static
  3328. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  3329. enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame &&
  3330. { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
  3331. die "ERROR: libtwolame must be installed and version must be >= 0.3.10"; }
  3332. enabled libutvideo && require_cpp utvideo "stdint.h stdlib.h utvideo/utvideo.h utvideo/Codec.h" 'CCodec*' -lutvideo -lstdc++
  3333. enabled libv4l2 && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
  3334. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  3335. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  3336. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  3337. enabled libvpx && {
  3338. enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  3339. die "ERROR: libvpx decoder must be installed and version must be >=0.9.1"; }
  3340. enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
  3341. die "ERROR: libvpx encoder version must be >=0.9.7"; } }
  3342. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  3343. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  3344. die "ERROR: libx264 must be installed and version must be >= 0.118."; }
  3345. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  3346. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  3347. enabled openal && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
  3348. check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
  3349. die "ERROR: openal not found"; } &&
  3350. { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
  3351. die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
  3352. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  3353. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  3354. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  3355. die "ERROR: openssl not found"; }
  3356. if enabled gnutls; then
  3357. { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
  3358. { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
  3359. fi
  3360. # libdc1394 check
  3361. if enabled libdc1394; then
  3362. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  3363. enable libdc1394_2; } ||
  3364. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  3365. enable libdc1394_1; } ||
  3366. die "ERROR: No version of libdc1394 found "
  3367. fi
  3368. SDL_CONFIG="${cross_prefix}sdl-config"
  3369. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  3370. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3371. enable sdl &&
  3372. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  3373. else
  3374. if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
  3375. sdl_cflags=$("${SDL_CONFIG}" --cflags)
  3376. sdl_libs=$("${SDL_CONFIG}" --libs)
  3377. check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
  3378. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3379. enable sdl &&
  3380. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  3381. fi
  3382. fi
  3383. enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
  3384. texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
  3385. makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
  3386. perl --version > /dev/null 2>&1 && enable perl || disable perl
  3387. pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
  3388. check_header linux/fb.h
  3389. check_header linux/videodev.h
  3390. check_header linux/videodev2.h
  3391. check_code cc linux/videodev2.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
  3392. check_header sys/videoio.h
  3393. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  3394. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  3395. # w32api 3.12 had it defined wrong
  3396. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  3397. check_type "dshow.h" IBaseFilter
  3398. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  3399. { check_header dev/bktr/ioctl_meteor.h &&
  3400. check_header dev/bktr/ioctl_bt848.h; } ||
  3401. { check_header machine/ioctl_meteor.h &&
  3402. check_header machine/ioctl_bt848.h; } ||
  3403. { check_header dev/video/meteor/ioctl_meteor.h &&
  3404. check_header dev/video/bktr/ioctl_bt848.h; } ||
  3405. check_header dev/ic/bt8xx.h
  3406. check_header sndio.h
  3407. if check_struct sys/soundcard.h audio_buf_info bytes; then
  3408. enable_safe sys/soundcard.h
  3409. else
  3410. check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
  3411. #include <sys/soundcard.h>
  3412. audio_buf_info abc;
  3413. EOF
  3414. fi
  3415. check_header soundcard.h
  3416. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  3417. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack && check_func sem_timedwait &&
  3418. check_func jack_port_get_latency_range -ljack
  3419. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  3420. enabled libcdio &&
  3421. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open "-lcdio_paranoia -lcdio_cdda -lcdio"
  3422. enabled x11grab &&
  3423. require X11 X11/Xlib.h XOpenDisplay -lX11 &&
  3424. require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
  3425. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
  3426. if ! disabled vaapi; then
  3427. check_lib va/va.h vaInitialize -lva && {
  3428. check_cpp_condition va/va_version.h "VA_CHECK_VERSION(0,32,0)" ||
  3429. warn "Please upgrade to VA-API >= 0.32 if you would like full VA-API support.";
  3430. } || disable vaapi
  3431. fi
  3432. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  3433. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  3434. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." && disable vdpau; }
  3435. fi
  3436. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  3437. enabled coverage && add_cflags "-fprofile-arcs -ftest-coverage" && add_ldflags "-fprofile-arcs -ftest-coverage"
  3438. test -n "$valgrind" && target_exec="$valgrind --error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp"
  3439. # add some useful compiler flags if supported
  3440. check_cflags -Wdeclaration-after-statement
  3441. check_cflags -Wall
  3442. check_cflags -Wno-parentheses
  3443. check_cflags -Wno-switch
  3444. check_cflags -Wno-format-zero-length
  3445. check_cflags -Wdisabled-optimization
  3446. check_cflags -Wpointer-arith
  3447. check_cflags -Wredundant-decls
  3448. check_cflags -Wno-pointer-sign
  3449. check_cflags -Wwrite-strings
  3450. check_cflags -Wtype-limits
  3451. check_cflags -Wundef
  3452. check_cflags -Wmissing-prototypes
  3453. check_cflags -Wno-pointer-to-int-cast
  3454. check_cflags -Wstrict-prototypes
  3455. enabled extra_warnings && check_cflags -Winline
  3456. # add some linker flags
  3457. check_ldflags -Wl,--warn-common
  3458. check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  3459. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  3460. enabled xmm_clobber_test &&
  3461. check_ldflags -Wl,--wrap,avcodec_open2 \
  3462. -Wl,--wrap,avcodec_decode_audio4 \
  3463. -Wl,--wrap,avcodec_decode_video2 \
  3464. -Wl,--wrap,avcodec_decode_subtitle2 \
  3465. -Wl,--wrap,avcodec_encode_audio2 \
  3466. -Wl,--wrap,avcodec_encode_video \
  3467. -Wl,--wrap,avcodec_encode_subtitle \
  3468. -Wl,--wrap,sws_scale ||
  3469. disable xmm_clobber_test
  3470. echo "X{};" > $TMPV
  3471. if test_ldflags -Wl,--version-script,$TMPV; then
  3472. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3473. check_cc <<EOF && enable symver_asm_label
  3474. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3475. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3476. EOF
  3477. check_cc <<EOF && enable symver_gnu_asm
  3478. __asm__(".symver ff_foo,av_foo@VERSION");
  3479. void ff_foo(void) {}
  3480. EOF
  3481. fi
  3482. if [ -n "$optflags" ]; then
  3483. add_cflags $optflags
  3484. elif enabled small; then
  3485. add_cflags $cflags_size
  3486. elif enabled optimizations; then
  3487. add_cflags $cflags_speed
  3488. else
  3489. add_cflags $cflags_noopt
  3490. fi
  3491. check_cflags -fno-math-errno
  3492. check_cflags -fno-signed-zeros
  3493. check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
  3494. int x;
  3495. EOF
  3496. if enabled icc; then
  3497. # Just warnings, no remarks
  3498. check_cflags -w1
  3499. # -wd: Disable following warnings
  3500. # 144, 167, 556: -Wno-pointer-sign
  3501. # 1292: attribute "foo" ignored
  3502. # 1419: external declaration in primary source file
  3503. # 10006: ignoring unknown option -fno-signed-zeros
  3504. # 10148: ignoring unknown option -Wno-parentheses
  3505. # 10156: ignoring option '-W'; no argument required
  3506. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  3507. # 11030: Warning unknown option --as-needed
  3508. # 10156: ignoring option '-export'; no argument required
  3509. check_ldflags -wd10156,11030
  3510. # Allow to compile with optimizations
  3511. check_ldflags -march=$cpu
  3512. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3513. enable ebp_available
  3514. if enabled x86_32; then
  3515. icc_version=$($cc -dumpversion)
  3516. test ${icc_version%%.*} -ge 11 &&
  3517. check_cflags -falign-stack=maintain-16-byte ||
  3518. disable aligned_stack
  3519. fi
  3520. elif enabled ccc; then
  3521. # disable some annoying warnings
  3522. add_cflags -msg_disable cvtu32to64
  3523. add_cflags -msg_disable embedcomment
  3524. add_cflags -msg_disable needconstext
  3525. add_cflags -msg_disable nomainieee
  3526. add_cflags -msg_disable ptrmismatch1
  3527. add_cflags -msg_disable unreachcode
  3528. elif enabled gcc; then
  3529. check_cflags -fno-tree-vectorize
  3530. check_cflags -Werror=implicit-function-declaration
  3531. check_cflags -Werror=missing-prototypes
  3532. check_cflags -Werror=return-type
  3533. elif enabled llvm_gcc; then
  3534. check_cflags -mllvm -stack-alignment=16
  3535. elif enabled clang; then
  3536. check_cflags -mllvm -stack-alignment=16
  3537. check_cflags -Qunused-arguments
  3538. check_cflags -Werror=return-type
  3539. elif enabled armcc; then
  3540. # 2523: use of inline assembler is deprecated
  3541. add_cflags -W${armcc_opt},--diag_suppress=2523
  3542. add_cflags -W${armcc_opt},--diag_suppress=1207
  3543. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3544. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3545. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3546. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3547. elif enabled tms470; then
  3548. add_cflags -pds=824 -pds=837
  3549. elif enabled pathscale; then
  3550. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3551. elif enabled msvc; then
  3552. enabled x86_32 && disable aligned_stack
  3553. fi
  3554. enabled_any $THREADS_LIST && enable threads
  3555. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3556. check_deps $CONFIG_LIST \
  3557. $CONFIG_EXTRA \
  3558. $HAVE_LIST \
  3559. $ALL_COMPONENTS \
  3560. $ALL_TESTS \
  3561. if test $target_os = "haiku"; then
  3562. disable memalign
  3563. disable posix_memalign
  3564. fi
  3565. ! enabled_any memalign posix_memalign aligned_malloc &&
  3566. enabled_any $need_memalign && enable memalign_hack
  3567. # add_dep lib dep
  3568. # -> enable ${lib}_deps_${dep}
  3569. # -> add $dep to ${lib}_deps only once
  3570. add_dep() {
  3571. lib=$1
  3572. dep=$2
  3573. enabled "${lib}_deps_${dep}" && return 0
  3574. enable "${lib}_deps_${dep}"
  3575. prepend "${lib}_deps" $dep
  3576. }
  3577. # merge deps lib components
  3578. # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
  3579. merge_deps() {
  3580. lib=$1
  3581. shift
  3582. for comp in $*; do
  3583. enabled $comp || continue
  3584. eval "dep=\"\$${comp}_deps\""
  3585. for d in $dep; do
  3586. add_dep $lib $d
  3587. done
  3588. done
  3589. }
  3590. merge_deps libavfilter $FILTER_LIST
  3591. echo "install prefix $prefix"
  3592. echo "source path $source_path"
  3593. echo "C compiler $cc"
  3594. echo "ARCH $arch ($cpu)"
  3595. if test "$build_suffix" != ""; then
  3596. echo "build suffix $build_suffix"
  3597. fi
  3598. if test "$progs_suffix" != ""; then
  3599. echo "progs suffix $progs_suffix"
  3600. fi
  3601. if test "$extra_version" != ""; then
  3602. echo "version string suffix $extra_version"
  3603. fi
  3604. echo "big-endian ${bigendian-no}"
  3605. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3606. if enabled x86; then
  3607. echo "${yasmexe} ${yasm-no}"
  3608. echo "MMX enabled ${mmx-no}"
  3609. echo "MMXEXT enabled ${mmxext-no}"
  3610. echo "3DNow! enabled ${amd3dnow-no}"
  3611. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3612. echo "SSE enabled ${sse-no}"
  3613. echo "SSSE3 enabled ${ssse3-no}"
  3614. echo "AVX enabled ${avx-no}"
  3615. echo "FMA4 enabled ${fma4-no}"
  3616. echo "CMOV enabled ${cmov-no}"
  3617. echo "CMOV is fast ${fast_cmov-no}"
  3618. echo "EBX available ${ebx_available-no}"
  3619. echo "EBP available ${ebp_available-no}"
  3620. fi
  3621. if enabled arm; then
  3622. echo "ARMv5TE enabled ${armv5te-no}"
  3623. echo "ARMv6 enabled ${armv6-no}"
  3624. echo "ARMv6T2 enabled ${armv6t2-no}"
  3625. echo "ARM VFP enabled ${armvfp-no}"
  3626. echo "NEON enabled ${neon-no}"
  3627. fi
  3628. if enabled mips; then
  3629. echo "MMI enabled ${mmi-no}"
  3630. echo "MIPS FPU enabled ${mipsfpu-no}"
  3631. echo "MIPS32R2 enabled ${mips32r2-no}"
  3632. echo "MIPS DSP R1 enabled ${mipsdspr1-no}"
  3633. echo "MIPS DSP R2 enabled ${mipsdspr2-no}"
  3634. fi
  3635. if enabled ppc; then
  3636. echo "AltiVec enabled ${altivec-no}"
  3637. echo "PPC 4xx optimizations ${ppc4xx-no}"
  3638. echo "dcbzl available ${dcbzl-no}"
  3639. fi
  3640. if enabled sparc; then
  3641. echo "VIS enabled ${vis-no}"
  3642. fi
  3643. echo "debug symbols ${debug-no}"
  3644. echo "strip symbols ${stripping-no}"
  3645. echo "optimize for size ${small-no}"
  3646. echo "optimizations ${optimizations-no}"
  3647. echo "static ${static-no}"
  3648. echo "shared ${shared-no}"
  3649. echo "postprocessing support ${postproc-no}"
  3650. echo "new filter support ${avfilter-no}"
  3651. echo "network support ${network-no}"
  3652. echo "threading support ${thread_type-no}"
  3653. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  3654. echo "SDL support ${sdl-no}"
  3655. echo "libdxva2 enabled ${dxva2-no}"
  3656. echo "libva enabled ${vaapi-no}"
  3657. echo "libvdpau enabled ${vdpau-no}"
  3658. echo "AVISynth enabled ${avisynth-no}"
  3659. echo "frei0r enabled ${frei0r-no}"
  3660. echo "gnutls enabled ${gnutls-no}"
  3661. echo "libaacplus enabled ${libaacplus-no}"
  3662. echo "libass enabled ${libass-no}"
  3663. echo "libcaca enabled ${libcaca-no}"
  3664. echo "libcdio support ${libcdio-no}"
  3665. echo "libcelt enabled ${libcelt-no}"
  3666. echo "libdc1394 support ${libdc1394-no}"
  3667. echo "libfaac enabled ${libfaac-no}"
  3668. echo "libfdk-aac enabled ${libfdk_aac-no}"
  3669. echo "libgsm enabled ${libgsm-no}"
  3670. echo "libiec61883 support ${libiec61883-no}"
  3671. echo "libilbc enabled ${libilbc-no}"
  3672. echo "libmodplug enabled ${libmodplug-no}"
  3673. echo "libmp3lame enabled ${libmp3lame-no}"
  3674. echo "libnut enabled ${libnut-no}"
  3675. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  3676. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  3677. echo "libopencv support ${libopencv-no}"
  3678. echo "libopenjpeg enabled ${libopenjpeg-no}"
  3679. echo "libopus enabled ${libopus-no}"
  3680. echo "libpulse enabled ${libpulse-no}"
  3681. echo "librtmp enabled ${librtmp-no}"
  3682. echo "libschroedinger enabled ${libschroedinger-no}"
  3683. echo "libspeex enabled ${libspeex-no}"
  3684. echo "libstagefright-h264 enabled ${libstagefright_h264-no}"
  3685. echo "libtheora enabled ${libtheora-no}"
  3686. echo "libtwolame enabled ${libtwolame-no}"
  3687. echo "libutvideo enabled ${libutvideo-no}"
  3688. echo "libv4l2 enabled ${libv4l2-no}"
  3689. echo "libvo-aacenc support ${libvo_aacenc-no}"
  3690. echo "libvo-amrwbenc support ${libvo_amrwbenc-no}"
  3691. echo "libvorbis enabled ${libvorbis-no}"
  3692. echo "libvpx enabled ${libvpx-no}"
  3693. echo "libx264 enabled ${libx264-no}"
  3694. echo "libxavs enabled ${libxavs-no}"
  3695. echo "libxvid enabled ${libxvid-no}"
  3696. echo "openal enabled ${openal-no}"
  3697. echo "openssl enabled ${openssl-no}"
  3698. echo "zlib enabled ${zlib-no}"
  3699. echo "bzlib enabled ${bzlib-no}"
  3700. echo "texi2html enabled ${texi2html-no}"
  3701. echo "perl enabled ${perl-no}"
  3702. echo "pod2man enabled ${pod2man-no}"
  3703. echo "makeinfo enabled ${makeinfo-no}"
  3704. test -n "$random_seed" &&
  3705. echo "random seed ${random_seed}"
  3706. echo
  3707. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  3708. echo "Enabled ${type}s:"
  3709. eval list=\$$(toupper $type)_LIST
  3710. print_enabled '_*' $list | sort | pr -r -3 -t
  3711. echo
  3712. done
  3713. license="LGPL version 2.1 or later"
  3714. if enabled nonfree; then
  3715. license="nonfree and unredistributable"
  3716. elif enabled gplv3; then
  3717. license="GPL version 3 or later"
  3718. elif enabled lgplv3; then
  3719. license="LGPL version 3 or later"
  3720. elif enabled gpl; then
  3721. license="GPL version 2 or later"
  3722. fi
  3723. echo "License: $license"
  3724. echo "Creating config.mak and config.h..."
  3725. test -e Makefile || $ln_s "$source_path/Makefile" .
  3726. enabled stripping || strip="echo skipping strip"
  3727. config_files="$TMPH config.mak"
  3728. cat > config.mak <<EOF
  3729. # Automatically generated by configure - do not modify!
  3730. ifndef FFMPEG_CONFIG_MAK
  3731. FFMPEG_CONFIG_MAK=1
  3732. FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
  3733. prefix=$prefix
  3734. LIBDIR=\$(DESTDIR)$libdir
  3735. SHLIBDIR=\$(DESTDIR)$shlibdir
  3736. INCDIR=\$(DESTDIR)$incdir
  3737. BINDIR=\$(DESTDIR)$bindir
  3738. DATADIR=\$(DESTDIR)$datadir
  3739. MANDIR=\$(DESTDIR)$mandir
  3740. SRC_PATH=$source_path
  3741. ifndef MAIN_MAKEFILE
  3742. SRC_PATH:=\$(SRC_PATH:.%=..%)
  3743. endif
  3744. CC_IDENT=$cc_ident
  3745. ARCH=$arch
  3746. CC=$cc
  3747. CXX=$cxx
  3748. AS=$as
  3749. LD=$ld
  3750. DEPCC=$dep_cc
  3751. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  3752. DEPAS=$as
  3753. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  3754. YASM=$yasmexe
  3755. DEPYASM=$yasmexe
  3756. AR=$ar
  3757. ARFLAGS=$arflags
  3758. AR_O=$ar_o
  3759. RANLIB=$ranlib
  3760. CP=cp -p
  3761. LN_S=$ln_s
  3762. STRIP=$strip
  3763. CPPFLAGS=$CPPFLAGS
  3764. CFLAGS=$CFLAGS
  3765. CXXFLAGS=$CXXFLAGS
  3766. ASFLAGS=$ASFLAGS
  3767. AS_C=$AS_C
  3768. AS_O=$AS_O
  3769. CC_C=$CC_C
  3770. CC_O=$CC_O
  3771. CXX_C=$CXX_C
  3772. CXX_O=$CXX_O
  3773. LD_O=$LD_O
  3774. LD_LIB=$LD_LIB
  3775. LD_PATH=$LD_PATH
  3776. DLLTOOL=$dlltool
  3777. LDFLAGS=$LDFLAGS
  3778. LDFLAGS-ffserver=$FFSERVERLDFLAGS
  3779. SHFLAGS=$SHFLAGS
  3780. YASMFLAGS=$YASMFLAGS
  3781. BUILDSUF=$build_suffix
  3782. PROGSSUF=$progs_suffix
  3783. FULLNAME=$FULLNAME
  3784. LIBPREF=$LIBPREF
  3785. LIBSUF=$LIBSUF
  3786. LIBNAME=$LIBNAME
  3787. SLIBPREF=$SLIBPREF
  3788. SLIBSUF=$SLIBSUF
  3789. EXESUF=$EXESUF
  3790. EXTRA_VERSION=$extra_version
  3791. CCDEP=$CCDEP
  3792. CXXDEP=$CXXDEP
  3793. CCDEP_FLAGS=$CCDEP_FLAGS
  3794. ASDEP=$ASDEP
  3795. ASDEP_FLAGS=$ASDEP_FLAGS
  3796. CC_DEPFLAGS=$CC_DEPFLAGS
  3797. AS_DEPFLAGS=$AS_DEPFLAGS
  3798. HOSTCC=$host_cc
  3799. HOSTLD=$host_ld
  3800. HOSTCFLAGS=$host_cflags
  3801. HOSTEXESUF=$HOSTEXESUF
  3802. HOSTLDFLAGS=$host_ldflags
  3803. HOSTLIBS=$host_libs
  3804. DEPHOSTCC=$host_cc
  3805. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  3806. HOSTCCDEP=$HOSTCCDEP
  3807. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  3808. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  3809. HOSTCC_C=$HOSTCC_C
  3810. HOSTCC_O=$HOSTCC_O
  3811. HOSTLD_O=$HOSTLD_O
  3812. TARGET_EXEC=$target_exec
  3813. TARGET_PATH=$target_path
  3814. LIBS-ffplay=$sdl_libs
  3815. CFLAGS-ffplay=$sdl_cflags
  3816. ZLIB=$($ldflags_filter -lz)
  3817. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  3818. EXTRALIBS=$extralibs
  3819. INSTALL=$install
  3820. LIBTARGET=${LIBTARGET}
  3821. SLIBNAME=${SLIBNAME}
  3822. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  3823. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  3824. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  3825. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  3826. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  3827. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  3828. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  3829. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  3830. SAMPLES:=${samples:-\$(FATE_SAMPLES)}
  3831. NOREDZONE_FLAGS=$noredzone_flags
  3832. EOF
  3833. get_version(){
  3834. lcname=$1
  3835. name=$(toupper $lcname)
  3836. file=$source_path/$lcname/version.h
  3837. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  3838. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3839. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3840. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3841. }
  3842. get_version_old(){
  3843. name=$1
  3844. file=$source_path/$2
  3845. # This condition will be removed when we stop supporting old libpostproc versions
  3846. if ! test "$name" = LIBPOSTPROC || test "$postproc_version" = current; then
  3847. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  3848. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3849. fi
  3850. lcname=$(tolower $name)
  3851. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3852. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3853. }
  3854. get_version_old LIBPOSTPROC libpostproc/postprocess.h
  3855. get_version_old LIBSWRESAMPLE libswresample/swresample.h
  3856. get_version libavcodec
  3857. get_version libavdevice
  3858. get_version libavfilter
  3859. get_version libavformat
  3860. get_version libavresample
  3861. get_version libavutil
  3862. get_version libswscale
  3863. cat > $TMPH <<EOF
  3864. /* Automatically generated by configure - do not modify! */
  3865. #ifndef FFMPEG_CONFIG_H
  3866. #define FFMPEG_CONFIG_H
  3867. #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
  3868. #define FFMPEG_LICENSE "$(c_escape $license)"
  3869. #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  3870. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  3871. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  3872. #define av_restrict $_restrict
  3873. #define EXTERN_PREFIX "${extern_prefix}"
  3874. #define EXTERN_ASM ${extern_prefix}
  3875. #define SLIBSUF "$SLIBSUF"
  3876. #define HAVE_MMX2 HAVE_MMXEXT
  3877. EOF
  3878. test -n "$assert_level" &&
  3879. echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
  3880. test -n "$malloc_prefix" &&
  3881. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3882. if enabled yasm; then
  3883. append config_files $TMPASM
  3884. printf '' >$TMPASM
  3885. fi
  3886. print_config ARCH_ "$config_files" $ARCH_LIST
  3887. print_config HAVE_ "$config_files" $HAVE_LIST
  3888. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3889. $CONFIG_EXTRA \
  3890. $ALL_COMPONENTS \
  3891. cat >>config.mak <<EOF
  3892. LAVF_FATE_TESTS=$(print_enabled -n _test $LAVF_FATE_TESTS)
  3893. LAVF_TESTS=$(print_enabled -n _test $LAVF_TESTS)
  3894. LAVFI_TESTS=$(print_enabled -n _test $LAVFI_TESTS)
  3895. SEEK_TESTS=$(print_enabled -n _test $SEEK_TESTS)
  3896. EOF
  3897. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  3898. echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
  3899. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3900. cp_if_changed $TMPH config.h
  3901. touch .config
  3902. enabled yasm && cp_if_changed $TMPASM config.asm
  3903. cat > $TMPH <<EOF
  3904. /* Generated by ffconf */
  3905. #ifndef AVUTIL_AVCONFIG_H
  3906. #define AVUTIL_AVCONFIG_H
  3907. EOF
  3908. test "$postproc_version" != current && cat >> $TMPH <<EOF
  3909. #define LIBPOSTPROC_VERSION_MAJOR $LIBPOSTPROC_VERSION_MAJOR
  3910. #define LIBPOSTPROC_VERSION_MINOR $LIBPOSTPROC_VERSION_MINOR
  3911. #define LIBPOSTPROC_VERSION_MICRO $LIBPOSTPROC_VERSION_MICRO
  3912. EOF
  3913. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3914. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3915. cp_if_changed $TMPH libavutil/avconfig.h
  3916. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3917. # build pkg-config files
  3918. pkgconfig_generate(){
  3919. name=$1
  3920. shortname=${name#lib}${build_suffix}
  3921. comment=$2
  3922. version=$3
  3923. libs=$4
  3924. requires=$5
  3925. enabled ${name#lib} || return 0
  3926. mkdir -p $name
  3927. cat <<EOF > $name/$name.pc
  3928. prefix=$prefix
  3929. exec_prefix=\${prefix}
  3930. libdir=$libdir
  3931. includedir=$incdir
  3932. Name: $name
  3933. Description: $comment
  3934. Version: $version
  3935. Requires: $(enabled shared || echo $requires)
  3936. Requires.private: $(enabled shared && echo $requires)
  3937. Conflicts:
  3938. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3939. Libs.private: $(enabled shared && echo $libs)
  3940. Cflags: -I\${includedir}
  3941. EOF
  3942. mkdir -p doc/examples/pc-uninstalled
  3943. includedir=${source_path}
  3944. [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
  3945. cat <<EOF > doc/examples/pc-uninstalled/$name.pc
  3946. prefix=
  3947. exec_prefix=
  3948. libdir=\${pcfiledir}/../../../$name
  3949. includedir=${includedir}
  3950. Name: $name
  3951. Description: $comment
  3952. Version: $version
  3953. Requires: $requires
  3954. Conflicts:
  3955. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3956. Cflags: -I\${includedir}
  3957. EOF
  3958. }
  3959. libavfilter_pc_deps=""
  3960. enabled libavfilter_deps_avcodec && prepend libavfilter_pc_deps "libavcodec = $LIBAVCODEC_VERSION,"
  3961. enabled libavfilter_deps_avformat && prepend libavfilter_pc_deps "libavformat = $LIBAVFORMAT_VERSION,"
  3962. enabled libavfilter_deps_swscale && prepend libavfilter_pc_deps "libswscale = $LIBSWSCALE_VERSION,"
  3963. enabled libavfilter_deps_swresample && prepend libavfilter_pc_deps "libswresample = $LIBSWRESAMPLE_VERSION,"
  3964. enabled libavfilter_deps_postproc && prepend libavfilter_pc_deps "libpostproc = $LIBPOSTPROC_VERSION,"
  3965. libavfilter_pc_deps=${libavfilter_pc_deps%, }
  3966. libavdevice_pc_deps="libavformat = $LIBAVFORMAT_VERSION"
  3967. enabled lavfi_indev && prepend libavdevice_pc_deps "libavfilter = $LIBAVFILTER_VERSION,"
  3968. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3969. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3970. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3971. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "$libavdevice_pc_deps"
  3972. pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "$libavfilter_pc_deps"
  3973. pkgconfig_generate libpostproc "FFmpeg postprocessing library" "$LIBPOSTPROC_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
  3974. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs"
  3975. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"
  3976. pkgconfig_generate libswresample "FFmpeg audio rescaling library" "$LIBSWRESAMPLE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"
  3977. fix_ffmpeg_remote(){
  3978. git_remote_from=$1
  3979. git_remote_to=$2
  3980. fixme_remote=$(git --git-dir=$source_path/.git --work-tree=$source_path remote -v | grep $git_remote_from | cut -f 1 | sort | uniq)
  3981. if [ "$fixme_remote" != "" ]; then
  3982. echolog "
  3983. Outdated domain in git config, the official domain for ffmpeg git is since
  3984. November 2011, source.ffmpeg.org, both the old and the new point to the same
  3985. repository and server. To update it enter the following commands:
  3986. "
  3987. for remote in $fixme_remote; do
  3988. echolog "git remote set-url $remote $git_remote_to"
  3989. done
  3990. fi
  3991. }
  3992. if test -f "$source_path/.git/config"; then
  3993. remote_from=git.videolan.org
  3994. remote_to=source.ffmpeg.org
  3995. fix_ffmpeg_remote git@$remote_from:ffmpeg git@$remote_to:ffmpeg
  3996. fix_ffmpeg_remote git://$remote_from/ffmpeg git://$remote_to/ffmpeg
  3997. fi