You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1085 lines
45KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle General Documentation
  3. @titlepage
  4. @center @titlefont{General Documentation}
  5. @end titlepage
  6. @top
  7. @contents
  8. @chapter External libraries
  9. Libav can be hooked up with a number of external libraries to add support
  10. for more formats. None of them are used by default, their use has to be
  11. explicitly requested by passing the appropriate flags to
  12. @command{./configure}.
  13. @section OpenCORE and VisualOn libraries
  14. Spun off Google Android sources, OpenCore, VisualOn and Fraunhofer
  15. libraries provide encoders for a number of audio codecs.
  16. @float NOTE
  17. OpenCORE and VisualOn libraries are under the Apache License 2.0
  18. (see @url{http://www.apache.org/licenses/LICENSE-2.0} for details), which is
  19. incompatible with the LGPL version 2.1 and GPL version 2. You have to
  20. upgrade Libav's license to LGPL version 3 (or if you have enabled
  21. GPL components, GPL version 3) to use it.
  22. @end float
  23. @subsection OpenCORE AMR
  24. Libav can make use of the OpenCORE libraries for AMR-NB
  25. decoding/encoding and AMR-WB decoding.
  26. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  27. instructions for installing the libraries.
  28. Then pass @code{--enable-libopencore-amrnb} and/or
  29. @code{--enable-libopencore-amrwb} to configure to enable them.
  30. @subsection VisualOn AAC encoder library
  31. Libav can make use of the VisualOn AACenc library for AAC encoding.
  32. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  33. instructions for installing the library.
  34. Then pass @code{--enable-libvo-aacenc} to configure to enable it.
  35. @subsection VisualOn AMR-WB encoder library
  36. Libav can make use of the VisualOn AMR-WBenc library for AMR-WB encoding.
  37. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  38. instructions for installing the library.
  39. Then pass @code{--enable-libvo-amrwbenc} to configure to enable it.
  40. @subsection Fraunhofer AAC library
  41. Libav can make use of the Fraunhofer AAC library for AAC encoding.
  42. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  43. instructions for installing the library.
  44. Then pass @code{--enable-libfdk-aac} to configure to enable it.
  45. @section LAME
  46. Libav can make use of the LAME library for MP3 encoding.
  47. Go to @url{http://lame.sourceforge.net/} and follow the
  48. instructions for installing the library.
  49. Then pass @code{--enable-libmp3lame} to configure to enable it.
  50. @section TwoLAME
  51. Libav can make use of the TwoLAME library for MP2 encoding.
  52. Go to @url{http://www.twolame.org/} and follow the
  53. instructions for installing the library.
  54. Then pass @code{--enable-libtwolame} to configure to enable it.
  55. @section libvpx
  56. Libav can make use of the libvpx library for VP8 encoding.
  57. Go to @url{http://www.webmproject.org/} and follow the instructions for
  58. installing the library. Then pass @code{--enable-libvpx} to configure to
  59. enable it.
  60. @section libwavpack
  61. Libav can make use of the libwavpack library for WavPack encoding.
  62. Go to @url{http://www.wavpack.com/} and follow the instructions for
  63. installing the library. Then pass @code{--enable-libwavpack} to configure to
  64. enable it.
  65. @section libxavs
  66. Libav can make use of the libxavs library for Xavs encoding.
  67. Go to @url{http://xavs.sf.net/} and follow the instructions for
  68. installing the library. Then pass @code{--enable-libxavs} to configure to
  69. enable it.
  70. @section OpenH264
  71. Libav can make use of the OpenH264 library for H.264 encoding and decoding.
  72. Go to @url{http://www.openh264.org/} and follow the instructions for
  73. installing the library. Then pass @code{--enable-libopenh264} to configure to
  74. enable it.
  75. For decoding, this library is much more limited than the built-in decoder
  76. in libavcodec; currently, this library lacks support for decoding B-frames
  77. and some other main/high profile features. (It currently only supports
  78. constrained baseline profile and CABAC.) Using it is mostly useful for
  79. testing and for taking advantage of Cisco's patent portfolio license
  80. (@url{http://www.openh264.org/BINARY_LICENSE.txt}).
  81. @section x264
  82. Libav can make use of the x264 library for H.264 encoding.
  83. Go to @url{http://www.videolan.org/developers/x264.html} and follow the
  84. instructions for installing the library. Then pass @code{--enable-libx264} to
  85. configure to enable it.
  86. @float NOTE
  87. x264 is under the GNU Public License Version 2 or later
  88. (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
  89. details), you must upgrade Libav's license to GPL in order to use it.
  90. @end float
  91. @section x265
  92. Libav can make use of the x265 library for HEVC encoding.
  93. Go to @url{http://x265.org/developers.html} and follow the instructions
  94. for installing the library. Then pass @code{--enable-libx265} to configure
  95. to enable it.
  96. @float note
  97. x265 is under the GNU Public License Version 2 or later
  98. (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
  99. details), you must upgrade Libav's license to GPL in order to use it.
  100. @end float
  101. @section kvazaar
  102. Libav can make use of the kvazaar library for HEVC encoding.
  103. Go to @url{https://github.com/ultravideo/kvazaar} and follow the
  104. instructions for installing the library. Then pass
  105. @code{--enable-libkvazaar} to configure to enable it.
  106. @section libilbc
  107. iLBC is a narrowband speech codec that has been made freely available
  108. by Google as part of the WebRTC project. libilbc is a packaging friendly
  109. copy of the iLBC codec. Libav can make use of the libilbc library for
  110. iLBC encoding and decoding.
  111. Go to @url{https://github.com/dekkers/libilbc} and follow the instructions for
  112. installing the library. Then pass @code{--enable-libilbc} to configure to
  113. enable it.
  114. @section libhdcd
  115. Libav can make use of the libhdcd library for High Definition Compatible
  116. Digital (HDCD) decoding via the @code{hdcd} filter.
  117. Go to @url{https://github.com/bp0/libhdcd} and follow the instructions for
  118. installing the library. Then pass @code{--enable-libhdcd} to configure to
  119. enable it.
  120. @section AviSynth
  121. Libav can read AviSynth scripts as input. To enable support you need a
  122. suitable @file{avisynth_c.h} header to compile against. The header as
  123. provided by AviSynth+ is fully compatible. AviSynth 2.5 is not supported
  124. by Libav. Once you have the appropriate header, pass
  125. @code{--enable-avisynth} to configure to enable AviSynth support.
  126. For Windows, supported AviSynth variants are
  127. @url{http://avisynth.nl, AviSynth 2.6 RC1 or higher} for 32-bit builds and
  128. @url{http://avs-plus.net, AviSynth+ r1718 or higher} for 32-bit and 64-bit builds.
  129. @url{https://github.com/AviSynth/AviSynthPlus, AviSynth+'s git repository}
  130. provides a GNU-style Makefile which can install just the headers using
  131. @code{make install PREFIX=/install/prefix}.
  132. @float NOTE
  133. There is currently a regression in AviSynth+'s @code{capi.h} header as of
  134. October 2016, which interferes with the ability for builds of Libav to use
  135. MSVC-built binaries of AviSynth. Until this is resolved, you can make sure
  136. a known good version is installed by checking out a version from before
  137. the regression occurred:
  138. @code{git clone -b MT git://github.com/AviSynth/AviSynthPlus.git @*
  139. cd AviSynthPlus @*
  140. git checkout -b oldheader b4f292b4dbfad149697fb65c6a037bb3810813f9 @*
  141. make install PREFIX=/install/prefix}
  142. @end float
  143. @float NOTE
  144. When using AviSynth+'s installed headers, the user must also pass
  145. the avisynth/ include directory to @code{--extra-cflags}. For example,
  146. if the PREFIX given to AviSynth+'s Makefile was /usr/i686-w64-mingw32,
  147. then the correct command would be
  148. @code{--extra-cflags="-I/usr/i686-w64-mingw32/include/avisynth"}.
  149. @end float
  150. For Linux and OS X, the supported AviSynth variant is
  151. @url{https://github.com/avxsynth/avxsynth, AvxSynth}.
  152. @file{avxsynth_c.h} is installed as part of the normal
  153. build routine, as illustrated on
  154. @url{https://github.com/avxsynth/avxsynth/wiki/System-Setup, AvxSynth's wiki}.
  155. (the instructions for compiling its prerequisites are outdated, as FFMS 2.18
  156. or higher is now needed; the list of dependencies to be downloaded from the
  157. repositories is still the same, though).
  158. @float NOTE
  159. AviSynth and AvxSynth are loaded dynamically. Distributors can build Libav
  160. with @code{--enable-avisynth}, and the binaries will work regardless of the
  161. end user having AviSynth or AvxSynth installed - they'll only need to be
  162. installed to use AviSynth scripts (obviously).
  163. @end float
  164. @section Intel QuickSync Video
  165. Libav can use Intel QuickSync Video (QSV) for accelerated encoding and decoding
  166. of multiple codecs. To use QSV, Libav must be linked against the @code{libmfx}
  167. dispatcher, which loads the actual decoding libraries.
  168. The dispatcher is open source and can be downloaded from
  169. @url{https://github.com/lu-zero/mfx_dispatch.git}. Libav needs to be configured
  170. with the @code{--enable-libmfx} option and @code{pkg-config} needs to be able to
  171. locate the dispatcher's @code{.pc} files.
  172. @chapter Supported File Formats and Codecs
  173. You can use the @code{-formats} and @code{-codecs} options to have an exhaustive list.
  174. @section File Formats
  175. Libav supports the following file formats through the @code{libavformat}
  176. library:
  177. @multitable @columnfractions .4 .1 .1 .4
  178. @item Name @tab Encoding @tab Decoding @tab Comments
  179. @item 4xm @tab @tab X
  180. @tab 4X Technologies format, used in some games.
  181. @item 8088flex TMV @tab @tab X
  182. @item Adobe Filmstrip @tab X @tab X
  183. @item Audio IFF (AIFF) @tab X @tab X
  184. @item American Laser Games MM @tab @tab X
  185. @tab Multimedia format used in games like Mad Dog McCree.
  186. @item 3GPP AMR @tab X @tab X
  187. @item Amazing Studio Packed Animation File @tab @tab X
  188. @tab Multimedia format used in game Heart Of Darkness.
  189. @item Apple HTTP Live Streaming @tab @tab X
  190. @item ASF @tab X @tab X
  191. @item AVI @tab X @tab X
  192. @item AviSynth @tab @tab X
  193. @item AVS @tab @tab X
  194. @tab Multimedia format used by the Creature Shock game.
  195. @item Beam Software SIFF @tab @tab X
  196. @tab Audio and video format used in some games by Beam Software.
  197. @item Bethesda Softworks VID @tab @tab X
  198. @tab Used in some games from Bethesda Softworks.
  199. @item Bink @tab @tab X
  200. @tab Multimedia format used by many games.
  201. @item Bitmap Brothers JV @tab @tab X
  202. @tab Used in Z and Z95 games.
  203. @item Brute Force & Ignorance @tab @tab X
  204. @tab Used in the game Flash Traffic: City of Angels.
  205. @item BWF @tab X @tab X
  206. @item CRI ADX @tab X @tab X
  207. @tab Audio-only format used in console video games.
  208. @item Discworld II BMV @tab @tab X
  209. @item Interplay C93 @tab @tab X
  210. @tab Used in the game Cyberia from Interplay.
  211. @item Delphine Software International CIN @tab @tab X
  212. @tab Multimedia format used by Delphine Software games.
  213. @item Digital Speech Standard (DSS) @tab @tab X
  214. @item Canopus HQ @tab @tab X
  215. @item Canopus HQA @tab @tab X
  216. @item Canopus HQX @tab @tab X
  217. @item CD+G @tab @tab X
  218. @tab Video format used by CD+G karaoke disks
  219. @item Commodore CDXL @tab @tab X
  220. @tab Amiga CD video format
  221. @item Core Audio Format @tab @tab X
  222. @tab Apple Core Audio Format
  223. @item CRC testing format @tab X @tab
  224. @item Creative Voice @tab X @tab X
  225. @tab Created for the Sound Blaster Pro.
  226. @item CRYO APC @tab @tab X
  227. @tab Audio format used in some games by CRYO Interactive Entertainment.
  228. @item D-Cinema audio @tab X @tab X
  229. @item Deluxe Paint Animation @tab @tab X
  230. @item DFA @tab @tab X
  231. @tab This format is used in Chronomaster game
  232. @item DirectDraw Surface @tab @tab X
  233. @item DV video @tab X @tab X
  234. @item DXA @tab @tab X
  235. @tab This format is used in the non-Windows version of the Feeble Files
  236. game and different game cutscenes repacked for use with ScummVM.
  237. @item Electronic Arts cdata @tab @tab X
  238. @item Electronic Arts Multimedia @tab @tab X
  239. @tab Used in various EA games; files have extensions like WVE and UV2.
  240. @item Flash (SWF) @tab X @tab X
  241. @item Flash 9 (AVM2) @tab X @tab X
  242. @tab Only embedded audio is decoded.
  243. @item FLI/FLC/FLX animation @tab @tab X
  244. @tab .fli/.flc files
  245. @item Flash Video (FLV) @tab X @tab X
  246. @tab Macromedia Flash video files
  247. @item framecrc testing format @tab X @tab
  248. @item FunCom ISS @tab @tab X
  249. @tab Audio format used in various games from FunCom like The Longest Journey.
  250. @item GIF Animation @tab X @tab
  251. @item GXF @tab X @tab X
  252. @tab General eXchange Format SMPTE 360M, used by Thomson Grass Valley
  253. playout servers.
  254. @item HNM @tab @tab X
  255. @tab Only version 4 supported, used in some games from Cryo Interactive
  256. @item id Quake II CIN video @tab @tab X
  257. @item id RoQ @tab X @tab X
  258. @tab Used in Quake III, Jedi Knight 2, other computer games.
  259. @item IEC61937 encapsulation @tab X @tab X
  260. @item IFF @tab @tab X
  261. @tab Interchange File Format
  262. @item iLBC @tab X @tab X
  263. @item Interplay MVE @tab @tab X
  264. @tab Format used in various Interplay computer games.
  265. @item IV8 @tab @tab X
  266. @tab A format generated by IndigoVision 8000 video server.
  267. @item IVF (On2) @tab X @tab X
  268. @tab A format used by libvpx
  269. @item LATM @tab X @tab X
  270. @item LMLM4 @tab @tab X
  271. @tab Used by Linux Media Labs MPEG-4 PCI boards
  272. @item LXF @tab @tab X
  273. @tab VR native stream format, used by Leitch/Harris' video servers.
  274. @item Matroska @tab X @tab X
  275. @item Matroska audio @tab X @tab
  276. @item FFmpeg metadata @tab X @tab X
  277. @tab Metadata in text format.
  278. @item MAXIS XA @tab @tab X
  279. @tab Used in Sim City 3000; file extension .xa.
  280. @item MD Studio @tab @tab X
  281. @item Mobotix .mxg @tab @tab X
  282. @item Monkey's Audio @tab @tab X
  283. @item Motion Pixels MVI @tab @tab X
  284. @item MOV/QuickTime/MP4 @tab X @tab X
  285. @tab 3GP, 3GP2, PSP, iPod variants supported
  286. @item MP2 @tab X @tab X
  287. @item MP3 @tab X @tab X
  288. @item MPEG-1 System @tab X @tab X
  289. @tab muxed audio and video, VCD format supported
  290. @item MPEG-PS (program stream) @tab X @tab X
  291. @tab also known as @code{VOB} file, SVCD and DVD format supported
  292. @item MPEG-TS (transport stream) @tab X @tab X
  293. @tab also known as DVB Transport Stream
  294. @item MPEG-4 @tab X @tab X
  295. @tab MPEG-4 is a variant of QuickTime.
  296. @item Mirillis FIC video @tab @tab X
  297. @tab No cursor rendering.
  298. @item MIME multipart JPEG @tab X @tab
  299. @item MSN TCP webcam @tab @tab X
  300. @tab Used by MSN Messenger webcam streams.
  301. @item MTV @tab @tab X
  302. @item Musepack @tab @tab X
  303. @item Musepack SV8 @tab @tab X
  304. @item Material eXchange Format (MXF) @tab X @tab X
  305. @tab SMPTE 377M, used by D-Cinema, broadcast industry.
  306. @item Material eXchange Format (MXF), D-10 Mapping @tab X @tab X
  307. @tab SMPTE 386M, D-10/IMX Mapping.
  308. @item NC camera feed @tab @tab X
  309. @tab NC (AVIP NC4600) camera streams
  310. @item NTT TwinVQ (VQF) @tab @tab X
  311. @tab Nippon Telegraph and Telephone Corporation TwinVQ.
  312. @item Nullsoft Streaming Video @tab @tab X
  313. @item NuppelVideo @tab @tab X
  314. @item NUT @tab X @tab X
  315. @tab NUT Open Container Format
  316. @item Ogg @tab X @tab X
  317. @item Playstation Portable PMP @tab @tab X
  318. @item TechnoTrend PVA @tab @tab X
  319. @tab Used by TechnoTrend DVB PCI boards.
  320. @item QCP @tab @tab X
  321. @item raw ADTS (AAC) @tab X @tab X
  322. @item raw AC-3 @tab X @tab X
  323. @item raw Chinese AVS video @tab X @tab X
  324. @item raw CRI ADX @tab X @tab X
  325. @item raw Dirac @tab X @tab X
  326. @item raw DNxHD @tab X @tab X
  327. @item raw DTS @tab X @tab X
  328. @item raw E-AC-3 @tab X @tab X
  329. @item raw FLAC @tab X @tab X
  330. @item raw GSM @tab @tab X
  331. @item raw H.261 @tab X @tab X
  332. @item raw H.263 @tab X @tab X
  333. @item raw H.264 @tab X @tab X
  334. @item raw HEVC @tab X @tab X
  335. @item raw Ingenient MJPEG @tab @tab X
  336. @item raw MJPEG @tab X @tab X
  337. @item raw MLP @tab @tab X
  338. @item raw MPEG @tab @tab X
  339. @item raw MPEG-1 @tab @tab X
  340. @item raw MPEG-2 @tab @tab X
  341. @item raw MPEG-4 @tab X @tab X
  342. @item raw NULL @tab X @tab
  343. @item raw video @tab X @tab X
  344. @item raw id RoQ @tab X @tab
  345. @item raw Shorten @tab @tab X
  346. @item raw TAK @tab @tab X
  347. @item raw TrueHD @tab X @tab X
  348. @item raw VC-1 @tab @tab X
  349. @item raw PCM A-law @tab X @tab X
  350. @item raw PCM mu-law @tab X @tab X
  351. @item raw PCM signed 8 bit @tab X @tab X
  352. @item raw PCM signed 16 bit big-endian @tab X @tab X
  353. @item raw PCM signed 16 bit little-endian @tab X @tab X
  354. @item raw PCM signed 24 bit big-endian @tab X @tab X
  355. @item raw PCM signed 24 bit little-endian @tab X @tab X
  356. @item raw PCM signed 32 bit big-endian @tab X @tab X
  357. @item raw PCM signed 32 bit little-endian @tab X @tab X
  358. @item raw PCM unsigned 8 bit @tab X @tab X
  359. @item raw PCM unsigned 16 bit big-endian @tab X @tab X
  360. @item raw PCM unsigned 16 bit little-endian @tab X @tab X
  361. @item raw PCM unsigned 24 bit big-endian @tab X @tab X
  362. @item raw PCM unsigned 24 bit little-endian @tab X @tab X
  363. @item raw PCM unsigned 32 bit big-endian @tab X @tab X
  364. @item raw PCM unsigned 32 bit little-endian @tab X @tab X
  365. @item raw PCM floating-point 32 bit big-endian @tab X @tab X
  366. @item raw PCM floating-point 32 bit little-endian @tab X @tab X
  367. @item raw PCM floating-point 64 bit big-endian @tab X @tab X
  368. @item raw PCM floating-point 64 bit little-endian @tab X @tab X
  369. @item RDT @tab @tab X
  370. @item REDCODE R3D @tab @tab X
  371. @tab File format used by RED Digital cameras, contains JPEG 2000 frames and PCM audio.
  372. @item RealMedia @tab X @tab X
  373. @item Redirector @tab @tab X
  374. @item Renderware TeXture Dictionary @tab @tab X
  375. @item Resolume DXV @tab @tab X
  376. @item RL2 @tab @tab X
  377. @tab Audio and video format used in some games by Entertainment Software Partners.
  378. @item RPL/ARMovie @tab @tab X
  379. @item Lego Mindstorms RSO @tab X @tab X
  380. @item RTMP @tab X @tab X
  381. @tab Output is performed by publishing stream to RTMP server
  382. @item RTP @tab X @tab X
  383. @item RTSP @tab X @tab X
  384. @item SAP @tab X @tab X
  385. @item Screenpresso @tab @tab X
  386. @item SDP @tab @tab X
  387. @item Sega FILM/CPK @tab @tab X
  388. @tab Used in many Sega Saturn console games.
  389. @item Silicon Graphics Movie @tab @tab X
  390. @item Sierra SOL @tab @tab X
  391. @tab .sol files used in Sierra Online games.
  392. @item Sierra VMD @tab @tab X
  393. @tab Used in Sierra CD-ROM games.
  394. @item Smacker @tab @tab X
  395. @tab Multimedia format used by many games.
  396. @item SMJPEG @tab X @tab X
  397. @tab Used in certain Loki game ports.
  398. @item Smush
  399. @tab Multimedia format used in some LucasArts games.
  400. @item Sony OpenMG (OMA) @tab X @tab X
  401. @tab Audio format used in Sony Sonic Stage and Sony Vegas.
  402. @item Sony PlayStation STR @tab @tab X
  403. @item Sony Wave64 (W64) @tab @tab X
  404. @item SoX native format @tab X @tab X
  405. @item SUN AU format @tab X @tab X
  406. @item TDSC @tab @tab X
  407. @item Text files @tab @tab X
  408. @item THP @tab @tab X
  409. @tab Used on the Nintendo GameCube.
  410. @item Tiertex Limited SEQ @tab @tab X
  411. @tab Tiertex .seq files used in the DOS CD-ROM version of the game Flashback.
  412. @item True Audio @tab @tab X
  413. @item VC-1 test bitstream @tab X @tab X
  414. @item Vidvox Hap @tab X @tab X
  415. @item WAV @tab X @tab X
  416. @item WavPack @tab @tab X
  417. @item WebM @tab X @tab X
  418. @item Windows Televison (WTV) @tab @tab X
  419. @item Wing Commander III movie @tab @tab X
  420. @tab Multimedia format used in Origin's Wing Commander III computer game.
  421. @item Westwood Studios audio @tab @tab X
  422. @tab Multimedia format used in Westwood Studios games.
  423. @item Westwood Studios VQA @tab @tab X
  424. @tab Multimedia format used in Westwood Studios games.
  425. @item XMV @tab @tab X
  426. @tab Microsoft video container used in Xbox games.
  427. @item xWMA @tab @tab X
  428. @tab Microsoft audio container used by XAudio 2.
  429. @item YUV4MPEG pipe @tab X @tab X
  430. @item Psygnosis YOP @tab @tab X
  431. @item ZeroCodec Lossless Video @tab @tab X
  432. @end multitable
  433. @code{X} means that encoding (resp. decoding) is supported.
  434. @section Image Formats
  435. Libav can read and write images for each frame of a video sequence. The
  436. following image formats are supported:
  437. @multitable @columnfractions .4 .1 .1 .4
  438. @item Name @tab Encoding @tab Decoding @tab Comments
  439. @item .Y.U.V @tab X @tab X
  440. @tab one raw file per component
  441. @item Alias PIX @tab X @tab X
  442. @tab Alias/Wavefront PIX image format
  443. @item animated GIF @tab X @tab X
  444. @tab Only uncompressed GIFs are generated.
  445. @item BMP @tab X @tab X
  446. @tab Microsoft BMP image
  447. @item BRender PIX @tab @tab X
  448. @tab Argonaut BRender 3D engine image format.
  449. @item DPX @tab X @tab X
  450. @tab Digital Picture Exchange
  451. @item EXR @tab @tab X
  452. @tab OpenEXR
  453. @item JPEG @tab X @tab X
  454. @tab Progressive JPEG is not supported.
  455. @item JPEG 2000 @tab E @tab X
  456. @tab encoding supported through external library libopenjpeg
  457. @item JPEG-LS @tab X @tab X
  458. @item LJPEG @tab X @tab
  459. @tab Lossless JPEG
  460. @item PAM @tab X @tab X
  461. @tab PAM is a PNM extension with alpha support.
  462. @item PBM @tab X @tab X
  463. @tab Portable BitMap image
  464. @item PCX @tab X @tab X
  465. @tab PC Paintbrush
  466. @item PGM @tab X @tab X
  467. @tab Portable GrayMap image
  468. @item PGMYUV @tab X @tab X
  469. @tab PGM with U and V components in YUV 4:2:0
  470. @item PIC @tab @tab X
  471. @tab Pictor/PC Paint
  472. @item PNG @tab X @tab X
  473. @tab 2/4 bpp not supported yet
  474. @item PPM @tab X @tab X
  475. @tab Portable PixelMap image
  476. @item PTX @tab @tab X
  477. @tab V.Flash PTX format
  478. @item SGI @tab X @tab X
  479. @tab SGI RGB image format
  480. @item Sun Rasterfile @tab X @tab X
  481. @tab Sun RAS image format
  482. @item TIFF @tab X @tab X
  483. @tab YUV, JPEG and some extension is not supported yet.
  484. @item Truevision Targa @tab X @tab X
  485. @tab Targa (.TGA) image format
  486. @item WebP @tab E @tab X
  487. @tab WebP image format, encoding supported through external library libwebp
  488. @item XBM @tab X @tab X
  489. @tab X BitMap image format
  490. @item XWD @tab X @tab X
  491. @tab X Window Dump image format
  492. @end multitable
  493. @code{X} means that encoding (resp. decoding) is supported.
  494. @code{E} means that support is provided through an external library.
  495. @section Video Codecs
  496. @multitable @columnfractions .4 .1 .1 .4
  497. @item Name @tab Encoding @tab Decoding @tab Comments
  498. @item 4X Movie @tab @tab X
  499. @tab Used in certain computer games.
  500. @item 8088flex TMV @tab @tab X
  501. @item 8SVX exponential @tab @tab X
  502. @item 8SVX fibonacci @tab @tab X
  503. @item A64 multicolor @tab X @tab
  504. @tab Creates video suitable to be played on a commodore 64 (multicolor mode).
  505. @item Amazing Studio PAF Video @tab @tab X
  506. @item American Laser Games MM @tab @tab X
  507. @tab Used in games like Mad Dog McCree.
  508. @item AMV Video @tab @tab X
  509. @tab Used in Chinese MP3 players.
  510. @item ANSI/ASCII art @tab @tab X
  511. @item Apple Intermediate Codec @tab @tab X
  512. @item Apple MJPEG-B @tab @tab X
  513. @item Apple Pixlet @tab @tab X
  514. @item Apple ProRes @tab X @tab X
  515. @item Apple QuickDraw @tab @tab X
  516. @tab fourcc: qdrw
  517. @item Asus v1 @tab X @tab X
  518. @tab fourcc: ASV1
  519. @item Asus v2 @tab X @tab X
  520. @tab fourcc: ASV2
  521. @item ATI VCR1 @tab @tab X
  522. @tab fourcc: VCR1
  523. @item ATI VCR2 @tab @tab X
  524. @tab fourcc: VCR2
  525. @item Auravision Aura @tab @tab X
  526. @item Auravision Aura 2 @tab @tab X
  527. @item Autodesk Animator Flic video @tab @tab X
  528. @item Autodesk RLE @tab @tab X
  529. @tab fourcc: AASC
  530. @item AVS (Audio Video Standard) video @tab @tab X
  531. @tab Video encoding used by the Creature Shock game.
  532. @item Beam Software VB @tab @tab X
  533. @item Bethesda VID video @tab @tab X
  534. @tab Used in some games from Bethesda Softworks.
  535. @item Bink Video @tab @tab X
  536. @item Bitmap Brothers JV video @tab @tab X
  537. @item Brute Force & Ignorance @tab @tab X
  538. @tab Used in the game Flash Traffic: City of Angels.
  539. @item C93 video @tab @tab X
  540. @tab Codec used in Cyberia game.
  541. @item CamStudio @tab @tab X
  542. @tab fourcc: CSCD
  543. @item CD+G @tab @tab X
  544. @tab Video codec for CD+G karaoke disks
  545. @item CDXL @tab @tab X
  546. @tab Amiga CD video codec
  547. @item Chinese AVS video @tab E @tab X
  548. @tab AVS1-P2, JiZhun profile, encoding through external library libxavs
  549. @item Cineform HD @tab @tab X
  550. @item Delphine Software International CIN video @tab @tab X
  551. @tab Codec used in Delphine Software International games.
  552. @item Discworld II BMV Video @tab @tab X
  553. @item Canopus Lossless Codec @tab @tab X
  554. @item Cinepak @tab @tab X
  555. @item Cirrus Logic AccuPak @tab X @tab X
  556. @tab fourcc: CLJR
  557. @item Creative YUV (CYUV) @tab @tab X
  558. @item DFA @tab @tab X
  559. @tab Codec used in Chronomaster game.
  560. @item Dirac @tab E @tab E
  561. @tab supported through external library libschroedinger
  562. @item Deluxe Paint Animation @tab @tab X
  563. @item DNxHD @tab X @tab X
  564. @tab aka SMPTE VC3
  565. @item Duck TrueMotion 1.0 @tab @tab X
  566. @tab fourcc: DUCK
  567. @item Duck TrueMotion 2.0 @tab @tab X
  568. @tab fourcc: TM20
  569. @item Duck TrueMotion 2.0 RT @tab @tab X
  570. @tab fourcc: TR20
  571. @item DV (Digital Video) @tab X @tab X
  572. @item Dxtory capture format @tab @tab X
  573. @item Feeble Files/ScummVM DXA @tab @tab X
  574. @tab Codec originally used in Feeble Files game.
  575. @item Electronic Arts CMV video @tab @tab X
  576. @tab Used in NHL 95 game.
  577. @item Electronic Arts Madcow video @tab @tab X
  578. @item Electronic Arts TGV video @tab @tab X
  579. @item Electronic Arts TGQ video @tab @tab X
  580. @item Electronic Arts TQI video @tab @tab X
  581. @item Escape 124 @tab @tab X
  582. @item Escape 130 @tab @tab X
  583. @item FFmpeg video codec #1 @tab X @tab X
  584. @tab experimental lossless codec (fourcc: FFV1)
  585. @item Flash Screen Video v1 @tab X @tab X
  586. @tab fourcc: FSV1
  587. @item Flash Screen Video v2 @tab @tab X
  588. @item Flash Video (FLV) @tab X @tab X
  589. @tab Sorenson H.263 used in Flash
  590. @item FM Screen Capture Codec @tab @tab X
  591. @item Forward Uncompressed @tab @tab X
  592. @item Fraps @tab @tab X
  593. @item Go2Meeting @tab @tab X
  594. @tab fourcc: G2M2, G2M3
  595. @item Go2Webinar @tab @tab X
  596. @tab fourcc: G2M4
  597. @item H.261 @tab X @tab X
  598. @item H.263 / H.263-1996 @tab X @tab X
  599. @item H.263+ / H.263-1998 / H.263 version 2 @tab X @tab X
  600. @item H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 @tab E @tab X
  601. @tab encoding supported through external library libx264 and OpenH264
  602. @item HEVC @tab X @tab X
  603. @tab encoding supported through external library libx265 and libkvazaar
  604. @item HNM version 4 @tab @tab X
  605. @item HuffYUV @tab X @tab X
  606. @item HuffYUV FFmpeg variant @tab X @tab X
  607. @item IBM Ultimotion @tab @tab X
  608. @tab fourcc: ULTI
  609. @item id Cinematic video @tab @tab X
  610. @tab Used in Quake II.
  611. @item id RoQ video @tab X @tab X
  612. @tab Used in Quake III, Jedi Knight 2, other computer games.
  613. @item IFF ILBM @tab @tab X
  614. @tab IFF interleaved bitmap
  615. @item IFF ByteRun1 @tab @tab X
  616. @tab IFF run length encoded bitmap
  617. @item Intel H.263 @tab @tab X
  618. @item Intel Indeo 2 @tab @tab X
  619. @item Intel Indeo 3 @tab @tab X
  620. @item Intel Indeo 4 @tab @tab X
  621. @item Intel Indeo 5 @tab @tab X
  622. @item Interplay C93 @tab @tab X
  623. @tab Used in the game Cyberia from Interplay.
  624. @item Interplay MVE video @tab @tab X
  625. @tab Used in Interplay .MVE files.
  626. @item Iterated Systems ClearVideo @tab @tab X
  627. @tab I-frames only
  628. @item Karl Morton's video codec @tab @tab X
  629. @tab Codec used in Worms games.
  630. @item Kega Game Video (KGV1) @tab @tab X
  631. @tab Kega emulator screen capture codec.
  632. @item Lagarith @tab @tab X
  633. @item LCL (LossLess Codec Library) MSZH @tab @tab X
  634. @item LCL (LossLess Codec Library) ZLIB @tab E @tab E
  635. @item LOCO @tab @tab X
  636. @item LucasArts SANM @tab @tab X
  637. @tab Used in LucasArts SMUSH animations.
  638. @item lossless MJPEG @tab X @tab X
  639. @item MagicYUV Lossless Video @tab @tab X
  640. @item Microsoft ATC Screen @tab @tab X
  641. @tab Also known as Microsoft Screen 3.
  642. @item Microsoft Expression Encoder Screen @tab @tab X
  643. @tab Also known as Microsoft Titanium Screen 2.
  644. @item Microsoft RLE @tab @tab X
  645. @item Microsoft Screen 1 @tab @tab X
  646. @tab Also known as Windows Media Video V7 Screen.
  647. @item Microsoft Screen 2 @tab @tab X
  648. @tab Also known as Windows Media Video V9 Screen.
  649. @item Microsoft Video 1 @tab @tab X
  650. @item Mimic @tab @tab X
  651. @tab Used in MSN Messenger Webcam streams.
  652. @item Miro VideoXL @tab @tab X
  653. @tab fourcc: VIXL
  654. @item MJPEG (Motion JPEG) @tab X @tab X
  655. @item Mobotix MxPEG video @tab @tab X
  656. @item Motion Pixels video @tab @tab X
  657. @item MPEG-1 video @tab X @tab X
  658. @item MPEG-2 video @tab X @tab X
  659. @item MPEG-4 part 2 @tab X @tab X
  660. @tab libxvidcore can be used alternatively for encoding.
  661. @item MPEG-4 part 2 Microsoft variant version 1 @tab @tab X
  662. @item MPEG-4 part 2 Microsoft variant version 2 @tab X @tab X
  663. @item MPEG-4 part 2 Microsoft variant version 3 @tab X @tab X
  664. @item Nintendo Gamecube THP video @tab @tab X
  665. @item NuppelVideo/RTjpeg @tab @tab X
  666. @tab Video encoding used in NuppelVideo files.
  667. @item On2 VP3 @tab @tab X
  668. @tab still experimental
  669. @item On2 VP5 @tab @tab X
  670. @tab fourcc: VP50
  671. @item On2 VP6 @tab @tab X
  672. @tab fourcc: VP60,VP61,VP62
  673. @item On2 VP7 @tab @tab X
  674. @tab fourcc: VP70,VP71
  675. @item VP8 @tab E @tab X
  676. @tab fourcc: VP80, encoding supported through external library libvpx
  677. @item VP9 @tab E @tab X
  678. @tab Encoding supported through external library libvpx
  679. @item planar RGB @tab @tab X
  680. @tab fourcc: 8BPS
  681. @item Q-team QPEG @tab @tab X
  682. @tab fourccs: QPEG, Q1.0, Q1.1
  683. @item QuickTime 8BPS video @tab @tab X
  684. @item QuickTime Animation (RLE) video @tab X @tab X
  685. @tab fourcc: 'rle '
  686. @item QuickTime Graphics (SMC) @tab @tab X
  687. @tab fourcc: 'smc '
  688. @item QuickTime video (RPZA) @tab @tab X
  689. @tab fourcc: rpza
  690. @item R10K AJA Kona 10-bit RGB Codec @tab @tab X
  691. @item R210 Quicktime Uncompressed RGB 10-bit @tab @tab X
  692. @item Raw Video @tab X @tab X
  693. @item RealVideo 1.0 @tab X @tab X
  694. @item RealVideo 2.0 @tab X @tab X
  695. @item RealVideo 3.0 @tab @tab X
  696. @tab still far from ideal
  697. @item RealVideo 4.0 @tab @tab X
  698. @item Renderware TXD (TeXture Dictionary) @tab @tab X
  699. @tab Texture dictionaries used by the Renderware Engine.
  700. @item RL2 video @tab @tab X
  701. @tab used in some games by Entertainment Software Partners
  702. @item Sierra VMD video @tab @tab X
  703. @tab Used in Sierra VMD files.
  704. @item Silicon Graphics Motion Video Compressor 1 (MVC1) @tab @tab X
  705. @item Silicon Graphics Motion Video Compressor 2 (MVC2) @tab @tab X
  706. @item Silicon Graphics RLE 8-bit video @tab @tab X
  707. @item Smacker video @tab @tab X
  708. @tab Video encoding used in Smacker.
  709. @item SMPTE VC-1 @tab @tab X
  710. @item Sony PlayStation MDEC (Motion DECoder) @tab @tab X
  711. @item Sorenson Vector Quantizer 1 @tab X @tab X
  712. @tab fourcc: SVQ1
  713. @item Sorenson Vector Quantizer 3 @tab @tab X
  714. @tab fourcc: SVQ3
  715. @item Sunplus JPEG (SP5X) @tab @tab X
  716. @tab fourcc: SP5X
  717. @item TechSmith Screen Capture Codec @tab @tab X
  718. @tab fourcc: TSCC
  719. @item TechSmith Screen Capture Codec 2 @tab @tab X
  720. @tab fourcc: TSC2
  721. @item Theora @tab E @tab X
  722. @tab encoding supported through external library libtheora
  723. @item Tiertex Limited SEQ video @tab @tab X
  724. @tab Codec used in DOS CD-ROM FlashBack game.
  725. @item Ut Video @tab X @tab X
  726. @item v210 QuickTime uncompressed 4:2:2 10-bit @tab X @tab X
  727. @item v410 QuickTime uncompressed 4:4:4 10-bit @tab X @tab X
  728. @item VBLE Lossless Codec @tab @tab X
  729. @item VMware Screen Codec / VMware Video @tab @tab X
  730. @tab Codec used in videos captured by VMware.
  731. @item Westwood Studios VQA (Vector Quantized Animation) video @tab @tab X
  732. @item Windows Media Image @tab @tab X
  733. @item Windows Media Video 7 @tab X @tab X
  734. @item Windows Media Video 8 @tab X @tab X
  735. @item Windows Media Video 9 @tab @tab X
  736. @tab not completely working
  737. @item Wing Commander III / Xan @tab @tab X
  738. @tab Used in Wing Commander III .MVE files.
  739. @item Wing Commander IV / Xan @tab @tab X
  740. @tab Used in Wing Commander IV.
  741. @item Winnov WNV1 @tab @tab X
  742. @item WMV7 @tab X @tab X
  743. @item YAMAHA SMAF @tab X @tab X
  744. @item Psygnosis YOP Video @tab @tab X
  745. @item ZLIB @tab X @tab X
  746. @tab part of LCL, encoder experimental
  747. @item Zip Motion Blocks Video @tab X @tab X
  748. @tab Encoder works only in PAL8.
  749. @end multitable
  750. @code{X} means that encoding (resp. decoding) is supported.
  751. @code{E} means that support is provided through an external library.
  752. @section Audio Codecs
  753. @multitable @columnfractions .4 .1 .1 .4
  754. @item Name @tab Encoding @tab Decoding @tab Comments
  755. @item 8SVX audio @tab @tab X
  756. @item AAC @tab E @tab X
  757. @tab encoding supported through external library libfaac and libvo-aacenc
  758. @item AC-3 @tab IX @tab X
  759. @item ADPCM 4X Movie @tab @tab X
  760. @item ADPCM CDROM XA @tab @tab X
  761. @item ADPCM Creative Technology @tab @tab X
  762. @tab 16 -> 4, 8 -> 4, 8 -> 3, 8 -> 2
  763. @item ADPCM Electronic Arts @tab @tab X
  764. @tab Used in various EA titles.
  765. @item ADPCM Electronic Arts Maxis CDROM XS @tab @tab X
  766. @tab Used in Sim City 3000.
  767. @item ADPCM Electronic Arts R1 @tab @tab X
  768. @item ADPCM Electronic Arts R2 @tab @tab X
  769. @item ADPCM Electronic Arts R3 @tab @tab X
  770. @item ADPCM Electronic Arts XAS @tab @tab X
  771. @item ADPCM G.722 @tab X @tab X
  772. @item ADPCM G.726 @tab X @tab X
  773. @item ADPCM IMA AMV @tab @tab X
  774. @tab Used in AMV files
  775. @item ADPCM IMA Electronic Arts EACS @tab @tab X
  776. @item ADPCM IMA Electronic Arts SEAD @tab @tab X
  777. @item ADPCM IMA Funcom @tab @tab X
  778. @item ADPCM IMA QuickTime @tab X @tab X
  779. @item ADPCM IMA Loki SDL MJPEG @tab @tab X
  780. @item ADPCM IMA WAV @tab X @tab X
  781. @item ADPCM IMA Westwood @tab @tab X
  782. @item ADPCM ISS IMA @tab @tab X
  783. @tab Used in FunCom games.
  784. @item ADPCM IMA Duck DK3 @tab @tab X
  785. @tab Used in some Sega Saturn console games.
  786. @item ADPCM IMA Duck DK4 @tab @tab X
  787. @tab Used in some Sega Saturn console games.
  788. @item ADPCM Microsoft @tab X @tab X
  789. @item ADPCM MS IMA @tab X @tab X
  790. @item ADPCM Nintendo Gamecube THP @tab @tab X
  791. @item ADPCM QT IMA @tab X @tab X
  792. @item ADPCM SEGA CRI ADX @tab X @tab X
  793. @tab Used in Sega Dreamcast games.
  794. @item ADPCM Shockwave Flash @tab X @tab X
  795. @item ADPCM SMJPEG IMA @tab @tab X
  796. @tab Used in certain Loki game ports.
  797. @item ADPCM Sound Blaster Pro 2-bit @tab @tab X
  798. @item ADPCM Sound Blaster Pro 2.6-bit @tab @tab X
  799. @item ADPCM Sound Blaster Pro 4-bit @tab @tab X
  800. @item ADPCM VIMA
  801. @tab Used in LucasArts SMUSH animations.
  802. @item ADPCM Westwood Studios IMA @tab @tab X
  803. @tab Used in Westwood Studios games like Command and Conquer.
  804. @item ADPCM Yamaha @tab X @tab X
  805. @item AMR-NB @tab E @tab X
  806. @tab encoding supported through external library libopencore-amrnb
  807. @item AMR-WB @tab E @tab X
  808. @tab encoding supported through external library libvo-amrwbenc
  809. @item Amazing Studio PAF Audio @tab @tab X
  810. @item Apple lossless audio @tab X @tab X
  811. @tab QuickTime fourcc 'alac'
  812. @item ATRAC1 @tab @tab X
  813. @item ATRAC3 @tab @tab X
  814. @item ATRAC3+ @tab @tab X
  815. @item Bink Audio @tab @tab X
  816. @tab Used in Bink and Smacker files in many games.
  817. @item Delphine Software International CIN audio @tab @tab X
  818. @tab Codec used in Delphine Software International games.
  819. @item Digital Speech Standard - Standard Play mode (DSS SP) @tab @tab X
  820. @item Discworld II BMV Audio @tab @tab X
  821. @item COOK @tab @tab X
  822. @tab All versions except 5.1 are supported.
  823. @item DCA (DTS Coherent Acoustics) @tab @tab X
  824. @tab supported extensions: XCh, XLL (partially)
  825. @item DPCM id RoQ @tab X @tab X
  826. @tab Used in Quake III, Jedi Knight 2, other computer games.
  827. @item DPCM Interplay @tab @tab X
  828. @tab Used in various Interplay computer games.
  829. @item DPCM Sierra Online @tab @tab X
  830. @tab Used in Sierra Online game audio files.
  831. @item DPCM Sol @tab @tab X
  832. @item DPCM Xan @tab @tab X
  833. @tab Used in Origin's Wing Commander IV AVI files.
  834. @item DSP Group TrueSpeech @tab @tab X
  835. @item DV audio @tab @tab X
  836. @item Enhanced AC-3 @tab X @tab X
  837. @item FLAC (Free Lossless Audio Codec) @tab X @tab IX
  838. @item G.723.1 @tab X @tab X
  839. @item GSM @tab E @tab X
  840. @tab encoding supported through external library libgsm
  841. @item GSM Microsoft variant @tab E @tab X
  842. @tab encoding supported through external library libgsm
  843. @item IAC (Indeo Audio Coder) @tab @tab X
  844. @item iLBC (Internet Low Bitrate Codec) @tab E @tab E
  845. @tab encoding and decoding supported through external library libilbc
  846. @item IMC (Intel Music Coder) @tab @tab X
  847. @item MACE (Macintosh Audio Compression/Expansion) 3:1 @tab @tab X
  848. @item MACE (Macintosh Audio Compression/Expansion) 6:1 @tab @tab X
  849. @item MLP (Meridian Lossless Packing) @tab @tab X
  850. @tab Used in DVD-Audio discs.
  851. @item Monkey's Audio @tab @tab X
  852. @tab Only versions 3.97-3.99 are supported.
  853. @item MP1 (MPEG audio layer 1) @tab @tab IX
  854. @item MP2 (MPEG audio layer 2) @tab IE @tab IX
  855. @tab encoding supported also through external library TwoLAME
  856. @item MP3 (MPEG audio layer 3) @tab E @tab IX
  857. @tab encoding supported through external library LAME, ADU MP3 and MP3onMP4 also supported
  858. @item MPEG-4 Audio Lossless Coding (ALS) @tab @tab X
  859. @item Musepack SV7 @tab @tab X
  860. @item Musepack SV8 @tab @tab X
  861. @item Nellymoser Asao @tab X @tab X
  862. @item On2 AVC (Audio for Video Codec) @tab @tab X
  863. @item Opus @tab E @tab E
  864. @tab supported through external library libopus
  865. @item PCM A-law @tab X @tab X
  866. @item PCM mu-law @tab X @tab X
  867. @item PCM signed 16-bit big-endian planar @tab @tab X
  868. @item PCM signed 16-bit little-endian planar @tab @tab X
  869. @item PCM signed 24-bit little-endian planar @tab @tab X
  870. @item PCM signed 32-bit little-endian planar @tab @tab X
  871. @item PCM 32-bit floating point big-endian @tab X @tab X
  872. @item PCM 32-bit floating point little-endian @tab X @tab X
  873. @item PCM 64-bit floating point big-endian @tab X @tab X
  874. @item PCM 64-bit floating point little-endian @tab X @tab X
  875. @item PCM D-Cinema audio signed 24-bit @tab X @tab X
  876. @item PCM signed 8-bit @tab X @tab X
  877. @item PCM signed 16-bit big-endian @tab X @tab X
  878. @item PCM signed 16-bit little-endian @tab X @tab X
  879. @item PCM signed 24-bit big-endian @tab X @tab X
  880. @item PCM signed 24-bit little-endian @tab X @tab X
  881. @item PCM signed 32-bit big-endian @tab X @tab X
  882. @item PCM signed 32-bit little-endian @tab X @tab X
  883. @item PCM signed 16/20/24-bit big-endian in MPEG-TS @tab @tab X
  884. @item PCM unsigned 8-bit @tab X @tab X
  885. @item PCM unsigned 16-bit big-endian @tab X @tab X
  886. @item PCM unsigned 16-bit little-endian @tab X @tab X
  887. @item PCM unsigned 24-bit big-endian @tab X @tab X
  888. @item PCM unsigned 24-bit little-endian @tab X @tab X
  889. @item PCM unsigned 32-bit big-endian @tab X @tab X
  890. @item PCM unsigned 32-bit little-endian @tab X @tab X
  891. @item PCM Zork @tab @tab X
  892. @item QCELP / PureVoice @tab @tab X
  893. @item QDesign Music Codec 2 @tab @tab X
  894. @tab There are still some distortions.
  895. @item RealAudio 1.0 (14.4K) @tab X @tab X
  896. @tab Real 14400 bit/s codec
  897. @item RealAudio 2.0 (28.8K) @tab @tab X
  898. @tab Real 28800 bit/s codec
  899. @item RealAudio 3.0 (dnet) @tab IX @tab X
  900. @tab Real low bitrate AC-3 codec
  901. @item RealAudio Lossless @tab @tab X
  902. @item RealAudio SIPR / ACELP.NET @tab @tab X
  903. @item Shorten @tab @tab X
  904. @item Sierra VMD audio @tab @tab X
  905. @tab Used in Sierra VMD files.
  906. @item Smacker audio @tab @tab X
  907. @item SMPTE 302M AES3 audio @tab @tab X
  908. @item Speex @tab E @tab E
  909. @tab supported through external library libspeex
  910. @item TAK (Tom's lossless Audio Kompressor) @tab @tab X
  911. @item True Audio (TTA) @tab @tab X
  912. @item TrueHD @tab @tab X
  913. @tab Used in HD-DVD and Blu-Ray discs.
  914. @item TwinVQ (VQF flavor) @tab @tab X
  915. @item Vorbis @tab E @tab X
  916. @tab A native but very primitive encoder exists.
  917. @item Voxware MetaSound @tab @tab X
  918. @item WavPack @tab E @tab X
  919. @tab supported through external library libwavpack
  920. @item Westwood Audio (SND1) @tab @tab X
  921. @item Windows Media Audio 1 @tab X @tab X
  922. @item Windows Media Audio 2 @tab X @tab X
  923. @item Windows Media Audio Lossless @tab @tab X
  924. @item Windows Media Audio Pro @tab @tab X
  925. @item Windows Media Audio Voice @tab @tab X
  926. @end multitable
  927. @code{X} means that encoding (resp. decoding) is supported.
  928. @code{E} means that support is provided through an external library.
  929. @code{I} means that an integer-only version is available, too (ensures high
  930. performance on systems without hardware floating point support).
  931. @section Subtitle Formats
  932. @multitable @columnfractions .4 .1 .1 .1 .1
  933. @item Name @tab Muxing @tab Demuxing @tab Encoding @tab Decoding
  934. @item SSA/ASS @tab X @tab X @tab X @tab X
  935. @item DVB @tab X @tab X @tab X @tab X
  936. @item DVD @tab X @tab X @tab X @tab X
  937. @item PGS @tab @tab @tab @tab X
  938. @item SubRip (SRT) @tab X @tab X @tab @tab X
  939. @item XSUB @tab @tab @tab X @tab X
  940. @end multitable
  941. @code{X} means that the feature is supported.
  942. @section Network Protocols
  943. @multitable @columnfractions .4 .1
  944. @item Name @tab Support
  945. @item file @tab X
  946. @item Gopher @tab X
  947. @item HLS @tab X
  948. @item HTTP @tab X
  949. @item HTTPS @tab X
  950. @item Icecast @tab X
  951. @item MMSH @tab X
  952. @item MMST @tab X
  953. @item pipe @tab X
  954. @item RTMP @tab X
  955. @item RTMPE @tab X
  956. @item RTMPS @tab X
  957. @item RTMPT @tab X
  958. @item RTMPTE @tab X
  959. @item RTMPTS @tab X
  960. @item RTP @tab X
  961. @item SCTP @tab X
  962. @item TCP @tab X
  963. @item TLS @tab X
  964. @item UDP @tab X
  965. @end multitable
  966. @code{X} means that the protocol is supported.
  967. @code{E} means that support is provided through an external library.
  968. @section Input/Output Devices
  969. @multitable @columnfractions .4 .1 .1
  970. @item Name @tab Input @tab Output
  971. @item ALSA @tab X @tab X
  972. @item BKTR @tab X @tab
  973. @item DV1394 @tab X @tab
  974. @item Linux framebuffer @tab X @tab
  975. @item JACK @tab X @tab
  976. @item LIBCDIO @tab X
  977. @item LIBDC1394 @tab X @tab
  978. @item OSS @tab X @tab X
  979. @item Pulseaudio @tab X @tab
  980. @item Video4Linux2 @tab X @tab
  981. @item VfW capture @tab X @tab
  982. @item X11 grabbing @tab X @tab
  983. @end multitable
  984. @code{X} means that input/output is supported.
  985. @bye