general.texi 60 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414
  1. \input texinfo @c -*- texinfo -*-
  2. @documentencoding UTF-8
  3. @settitle General Documentation
  4. @titlepage
  5. @center @titlefont{General Documentation}
  6. @end titlepage
  7. @top
  8. @contents
  9. @chapter External libraries
  10. FFmpeg can be hooked up with a number of external libraries to add support
  11. for more formats. None of them are used by default, their use has to be
  12. explicitly requested by passing the appropriate flags to
  13. @command{./configure}.
  14. @section Alliance for Open Media (AOM)
  15. FFmpeg can make use of the AOM library for AV1 decoding and encoding.
  16. Go to @url{http://aomedia.org/} and follow the instructions for
  17. installing the library. Then pass @code{--enable-libaom} to configure to
  18. enable it.
  19. @section AMD AMF/VCE
  20. FFmpeg can use the AMD Advanced Media Framework library
  21. for accelerated H.264 and HEVC(only windows) encoding on hardware with Video Coding Engine (VCE).
  22. To enable support you must obtain the AMF framework header files(version 1.4.9+) from
  23. @url{https://github.com/GPUOpen-LibrariesAndSDKs/AMF.git}.
  24. Create an @code{AMF/} directory in the system include path.
  25. Copy the contents of @code{AMF/amf/public/include/} into that directory.
  26. Then configure FFmpeg with @code{--enable-amf}.
  27. Initialization of amf encoder occurs in this order:
  28. 1) trying to initialize through dx11(only windows)
  29. 2) trying to initialize through dx9(only windows)
  30. 3) trying to initialize through vulkan
  31. To use h.264(AMD VCE) encoder on linux amdgru-pro version 19.20+ and amf-amdgpu-pro
  32. package(amdgru-pro contains, but does not install automatically) are required.
  33. This driver can be installed using amdgpu-pro-install script in official amd driver archive.
  34. @section AviSynth
  35. FFmpeg can read AviSynth scripts as input. To enable support, pass
  36. @code{--enable-avisynth} to configure after installing the headers
  37. provided by @url{https://github.com/AviSynth/AviSynthPlus, AviSynth+}.
  38. AviSynth+ can be configured to install only the headers by either
  39. passing @code{-DHEADERS_ONLY:bool=on} to the normal CMake-based build
  40. system, or by using the supplied @code{GNUmakefile}.
  41. For Windows, supported AviSynth variants are
  42. @url{http://avisynth.nl, AviSynth 2.6 RC1 or higher} for 32-bit builds and
  43. @url{http://avisynth.nl/index.php/AviSynth+, AviSynth+ r1718 or higher} for 32-bit and 64-bit builds.
  44. For Linux, macOS, and BSD, the only supported AviSynth variant is
  45. @url{https://github.com/AviSynth/AviSynthPlus, AviSynth+}, starting with version 3.5.
  46. @float NOTE
  47. In 2016, AviSynth+ added support for building with GCC. However, due to
  48. the eccentricities of Windows' calling conventions, 32-bit GCC builds
  49. of AviSynth+ are not compatible with typical 32-bit builds of FFmpeg.
  50. By default, FFmpeg assumes compatibility with 32-bit MSVC builds of
  51. AviSynth+ since that is the most widely-used and entrenched build
  52. configuration. Users can override this and enable support for 32-bit
  53. GCC builds of AviSynth+ by passing @code{-DAVSC_WIN32_GCC32} to
  54. @code{--extra-cflags} when configuring FFmpeg.
  55. 64-bit builds of FFmpeg are not affected, and can use either MSVC or
  56. GCC builds of AviSynth+ without any special flags.
  57. @end float
  58. @float NOTE
  59. AviSynth(+) is loaded dynamically. Distributors can build FFmpeg
  60. with @code{--enable-avisynth}, and the binaries will work regardless
  61. of the end user having AviSynth installed. If/when an end user
  62. would like to use AviSynth scripts, then they can install AviSynth(+)
  63. and FFmpeg will be able to find and use it to open scripts.
  64. @end float
  65. @section Chromaprint
  66. FFmpeg can make use of the Chromaprint library for generating audio fingerprints.
  67. Pass @code{--enable-chromaprint} to configure to
  68. enable it. See @url{https://acoustid.org/chromaprint}.
  69. @section codec2
  70. FFmpeg can make use of the codec2 library for codec2 decoding and encoding.
  71. There is currently no native decoder, so libcodec2 must be used for decoding.
  72. Go to @url{http://freedv.org/}, download "Codec 2 source archive".
  73. Build and install using CMake. Debian users can install the libcodec2-dev package instead.
  74. Once libcodec2 is installed you can pass @code{--enable-libcodec2} to configure to enable it.
  75. The easiest way to use codec2 is with .c2 files, since they contain the mode information required for decoding.
  76. To encode such a file, use a .c2 file extension and give the libcodec2 encoder the -mode option:
  77. @code{ffmpeg -i input.wav -mode 700C output.c2}.
  78. Playback is as simple as @code{ffplay output.c2}.
  79. For a list of supported modes, run @code{ffmpeg -h encoder=libcodec2}.
  80. Raw codec2 files are also supported.
  81. To make sense of them the mode in use needs to be specified as a format option:
  82. @code{ffmpeg -f codec2raw -mode 1300 -i input.raw output.wav}.
  83. @section dav1d
  84. FFmpeg can make use of the dav1d library for AV1 video decoding.
  85. Go to @url{https://code.videolan.org/videolan/dav1d} and follow the instructions for
  86. installing the library. Then pass @code{--enable-libdav1d} to configure to enable it.
  87. @section davs2
  88. FFmpeg can make use of the davs2 library for AVS2-P2/IEEE1857.4 video decoding.
  89. Go to @url{https://github.com/pkuvcl/davs2} and follow the instructions for
  90. installing the library. Then pass @code{--enable-libdavs2} to configure to
  91. enable it.
  92. @float NOTE
  93. libdavs2 is under the GNU Public License Version 2 or later
  94. (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
  95. details), you must upgrade FFmpeg's license to GPL in order to use it.
  96. @end float
  97. @section Game Music Emu
  98. FFmpeg can make use of the Game Music Emu library to read audio from supported video game
  99. music file formats. Pass @code{--enable-libgme} to configure to
  100. enable it. See @url{https://bitbucket.org/mpyne/game-music-emu/overview}.
  101. @section Intel QuickSync Video
  102. FFmpeg can use Intel QuickSync Video (QSV) for accelerated decoding and encoding
  103. of multiple codecs. To use QSV, FFmpeg must be linked against the @code{libmfx}
  104. dispatcher, which loads the actual decoding libraries.
  105. The dispatcher is open source and can be downloaded from
  106. @url{https://github.com/lu-zero/mfx_dispatch.git}. FFmpeg needs to be configured
  107. with the @code{--enable-libmfx} option and @code{pkg-config} needs to be able to
  108. locate the dispatcher's @code{.pc} files.
  109. @section Kvazaar
  110. FFmpeg can make use of the Kvazaar library for HEVC encoding.
  111. Go to @url{https://github.com/ultravideo/kvazaar} and follow the
  112. instructions for installing the library. Then pass
  113. @code{--enable-libkvazaar} to configure to enable it.
  114. @section LAME
  115. FFmpeg can make use of the LAME library for MP3 encoding.
  116. Go to @url{http://lame.sourceforge.net/} and follow the
  117. instructions for installing the library.
  118. Then pass @code{--enable-libmp3lame} to configure to enable it.
  119. @section libilbc
  120. iLBC is a narrowband speech codec that has been made freely available
  121. by Google as part of the WebRTC project. libilbc is a packaging friendly
  122. copy of the iLBC codec. FFmpeg can make use of the libilbc library for
  123. iLBC decoding and encoding.
  124. Go to @url{https://github.com/TimothyGu/libilbc} and follow the instructions for
  125. installing the library. Then pass @code{--enable-libilbc} to configure to
  126. enable it.
  127. @section libvpx
  128. FFmpeg can make use of the libvpx library for VP8/VP9 decoding and encoding.
  129. Go to @url{http://www.webmproject.org/} and follow the instructions for
  130. installing the library. Then pass @code{--enable-libvpx} to configure to
  131. enable it.
  132. @section ModPlug
  133. FFmpeg can make use of this library, originating in Modplug-XMMS, to read from MOD-like music files.
  134. See @url{https://github.com/Konstanty/libmodplug}. Pass @code{--enable-libmodplug} to configure to
  135. enable it.
  136. @section OpenCORE, VisualOn, and Fraunhofer libraries
  137. Spun off Google Android sources, OpenCore, VisualOn and Fraunhofer
  138. libraries provide encoders for a number of audio codecs.
  139. @float NOTE
  140. OpenCORE and VisualOn libraries are under the Apache License 2.0
  141. (see @url{http://www.apache.org/licenses/LICENSE-2.0} for details), which is
  142. incompatible to the LGPL version 2.1 and GPL version 2. You have to
  143. upgrade FFmpeg's license to LGPL version 3 (or if you have enabled
  144. GPL components, GPL version 3) by passing @code{--enable-version3} to configure in
  145. order to use it.
  146. The license of the Fraunhofer AAC library is incompatible with the GPL.
  147. Therefore, for GPL builds, you have to pass @code{--enable-nonfree} to
  148. configure in order to use it. To the best of our knowledge, it is
  149. compatible with the LGPL.
  150. @end float
  151. @subsection OpenCORE AMR
  152. FFmpeg can make use of the OpenCORE libraries for AMR-NB
  153. decoding/encoding and AMR-WB decoding.
  154. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  155. instructions for installing the libraries.
  156. Then pass @code{--enable-libopencore-amrnb} and/or
  157. @code{--enable-libopencore-amrwb} to configure to enable them.
  158. @subsection VisualOn AMR-WB encoder library
  159. FFmpeg can make use of the VisualOn AMR-WBenc library for AMR-WB encoding.
  160. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  161. instructions for installing the library.
  162. Then pass @code{--enable-libvo-amrwbenc} to configure to enable it.
  163. @subsection Fraunhofer AAC library
  164. FFmpeg can make use of the Fraunhofer AAC library for AAC decoding & encoding.
  165. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  166. instructions for installing the library.
  167. Then pass @code{--enable-libfdk-aac} to configure to enable it.
  168. @section OpenH264
  169. FFmpeg can make use of the OpenH264 library for H.264 decoding and encoding.
  170. Go to @url{http://www.openh264.org/} and follow the instructions for
  171. installing the library. Then pass @code{--enable-libopenh264} to configure to
  172. enable it.
  173. For decoding, this library is much more limited than the built-in decoder
  174. in libavcodec; currently, this library lacks support for decoding B-frames
  175. and some other main/high profile features. (It currently only supports
  176. constrained baseline profile and CABAC.) Using it is mostly useful for
  177. testing and for taking advantage of Cisco's patent portfolio license
  178. (@url{http://www.openh264.org/BINARY_LICENSE.txt}).
  179. @section OpenJPEG
  180. FFmpeg can use the OpenJPEG libraries for decoding/encoding J2K videos. Go to
  181. @url{http://www.openjpeg.org/} to get the libraries and follow the installation
  182. instructions. To enable using OpenJPEG in FFmpeg, pass @code{--enable-libopenjpeg} to
  183. @file{./configure}.
  184. @section rav1e
  185. FFmpeg can make use of rav1e (Rust AV1 Encoder) via its C bindings to encode videos.
  186. Go to @url{https://github.com/xiph/rav1e/} and follow the instructions to build
  187. the C library. To enable using rav1e in FFmpeg, pass @code{--enable-librav1e}
  188. to @file{./configure}.
  189. @section TwoLAME
  190. FFmpeg can make use of the TwoLAME library for MP2 encoding.
  191. Go to @url{http://www.twolame.org/} and follow the
  192. instructions for installing the library.
  193. Then pass @code{--enable-libtwolame} to configure to enable it.
  194. @section VapourSynth
  195. FFmpeg can read VapourSynth scripts as input. To enable support, pass
  196. @code{--enable-vapoursynth} to configure. Vapoursynth is detected via
  197. @code{pkg-config}. Versions 42 or greater supported.
  198. See @url{http://www.vapoursynth.com/}.
  199. Due to security concerns, Vapoursynth scripts will not
  200. be autodetected so the input format has to be forced. For ff* CLI tools,
  201. add @code{-f vapoursynth} before the input @code{-i yourscript.vpy}.
  202. @section WavPack
  203. FFmpeg can make use of the libwavpack library for WavPack encoding.
  204. Go to @url{http://www.wavpack.com/} and follow the instructions for
  205. installing the library. Then pass @code{--enable-libwavpack} to configure to
  206. enable it.
  207. @section x264
  208. FFmpeg can make use of the x264 library for H.264 encoding.
  209. Go to @url{http://www.videolan.org/developers/x264.html} and follow the
  210. instructions for installing the library. Then pass @code{--enable-libx264} to
  211. configure to enable it.
  212. @float NOTE
  213. x264 is under the GNU Public License Version 2 or later
  214. (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
  215. details), you must upgrade FFmpeg's license to GPL in order to use it.
  216. @end float
  217. @section x265
  218. FFmpeg can make use of the x265 library for HEVC encoding.
  219. Go to @url{http://x265.org/developers.html} and follow the instructions
  220. for installing the library. Then pass @code{--enable-libx265} to configure
  221. to enable it.
  222. @float NOTE
  223. x265 is under the GNU Public License Version 2 or later
  224. (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
  225. details), you must upgrade FFmpeg's license to GPL in order to use it.
  226. @end float
  227. @section xavs
  228. FFmpeg can make use of the xavs library for AVS encoding.
  229. Go to @url{http://xavs.sf.net/} and follow the instructions for
  230. installing the library. Then pass @code{--enable-libxavs} to configure to
  231. enable it.
  232. @section xavs2
  233. FFmpeg can make use of the xavs2 library for AVS2-P2/IEEE1857.4 video encoding.
  234. Go to @url{https://github.com/pkuvcl/xavs2} and follow the instructions for
  235. installing the library. Then pass @code{--enable-libxavs2} to configure to
  236. enable it.
  237. @float NOTE
  238. libxavs2 is under the GNU Public License Version 2 or later
  239. (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
  240. details), you must upgrade FFmpeg's license to GPL in order to use it.
  241. @end float
  242. @section ZVBI
  243. ZVBI is a VBI decoding library which can be used by FFmpeg to decode DVB
  244. teletext pages and DVB teletext subtitles.
  245. Go to @url{http://sourceforge.net/projects/zapping/} and follow the instructions for
  246. installing the library. Then pass @code{--enable-libzvbi} to configure to
  247. enable it.
  248. @chapter Supported File Formats, Codecs or Features
  249. You can use the @code{-formats} and @code{-codecs} options to have an exhaustive list.
  250. @section File Formats
  251. FFmpeg supports the following file formats through the @code{libavformat}
  252. library:
  253. @multitable @columnfractions .4 .1 .1 .4
  254. @item Name @tab Encoding @tab Decoding @tab Comments
  255. @item 3dostr @tab @tab X
  256. @item 4xm @tab @tab X
  257. @tab 4X Technologies format, used in some games.
  258. @item 8088flex TMV @tab @tab X
  259. @item AAX @tab @tab X
  260. @tab Audible Enhanced Audio format, used in audiobooks.
  261. @item AA @tab @tab X
  262. @tab Audible Format 2, 3, and 4, used in audiobooks.
  263. @item ACT Voice @tab @tab X
  264. @tab contains G.729 audio
  265. @item Adobe Filmstrip @tab X @tab X
  266. @item Audio IFF (AIFF) @tab X @tab X
  267. @item American Laser Games MM @tab @tab X
  268. @tab Multimedia format used in games like Mad Dog McCree.
  269. @item 3GPP AMR @tab X @tab X
  270. @item Amazing Studio Packed Animation File @tab @tab X
  271. @tab Multimedia format used in game Heart Of Darkness.
  272. @item Apple HTTP Live Streaming @tab @tab X
  273. @item Artworx Data Format @tab @tab X
  274. @item Interplay ACM @tab @tab X
  275. @tab Audio only format used in some Interplay games.
  276. @item ADP @tab @tab X
  277. @tab Audio format used on the Nintendo Gamecube.
  278. @item AFC @tab @tab X
  279. @tab Audio format used on the Nintendo Gamecube.
  280. @item ADS/SS2 @tab @tab X
  281. @tab Audio format used on the PS2.
  282. @item APNG @tab X @tab X
  283. @item ASF @tab X @tab X
  284. @item AST @tab X @tab X
  285. @tab Audio format used on the Nintendo Wii.
  286. @item AVI @tab X @tab X
  287. @item AviSynth @tab @tab X
  288. @item AVR @tab @tab X
  289. @tab Audio format used on Mac.
  290. @item AVS @tab @tab X
  291. @tab Multimedia format used by the Creature Shock game.
  292. @item Beam Software SIFF @tab @tab X
  293. @tab Audio and video format used in some games by Beam Software.
  294. @item Bethesda Softworks VID @tab @tab X
  295. @tab Used in some games from Bethesda Softworks.
  296. @item Binary text @tab @tab X
  297. @item Bink @tab @tab X
  298. @tab Multimedia format used by many games.
  299. @item Bitmap Brothers JV @tab @tab X
  300. @tab Used in Z and Z95 games.
  301. @item Brute Force & Ignorance @tab @tab X
  302. @tab Used in the game Flash Traffic: City of Angels.
  303. @item BFSTM @tab @tab X
  304. @tab Audio format used on the Nintendo WiiU (based on BRSTM).
  305. @item BRSTM @tab @tab X
  306. @tab Audio format used on the Nintendo Wii.
  307. @item BWF @tab X @tab X
  308. @item codec2 (raw) @tab X @tab X
  309. @tab Must be given -mode format option to decode correctly.
  310. @item codec2 (.c2 files) @tab X @tab X
  311. @tab Contains header with version and mode info, simplifying playback.
  312. @item CRI ADX @tab X @tab X
  313. @tab Audio-only format used in console video games.
  314. @item CRI AIX @tab @tab X
  315. @item CRI HCA @tab @tab X
  316. @tab Audio-only format used in console video games.
  317. @item Discworld II BMV @tab @tab X
  318. @item Interplay C93 @tab @tab X
  319. @tab Used in the game Cyberia from Interplay.
  320. @item Delphine Software International CIN @tab @tab X
  321. @tab Multimedia format used by Delphine Software games.
  322. @item Digital Speech Standard (DSS) @tab @tab X
  323. @item Canopus HQ @tab @tab X
  324. @item Canopus HQA @tab @tab X
  325. @item Canopus HQX @tab @tab X
  326. @item CD+G @tab @tab X
  327. @tab Video format used by CD+G karaoke disks
  328. @item Phantom Cine @tab @tab X
  329. @item Cineform HD @tab @tab X
  330. @item Commodore CDXL @tab @tab X
  331. @tab Amiga CD video format
  332. @item Core Audio Format @tab X @tab X
  333. @tab Apple Core Audio Format
  334. @item CRC testing format @tab X @tab
  335. @item Creative Voice @tab X @tab X
  336. @tab Created for the Sound Blaster Pro.
  337. @item CRYO APC @tab @tab X
  338. @tab Audio format used in some games by CRYO Interactive Entertainment.
  339. @item D-Cinema audio @tab X @tab X
  340. @item Deluxe Paint Animation @tab @tab X
  341. @item DCSTR @tab @tab X
  342. @item DFA @tab @tab X
  343. @tab This format is used in Chronomaster game
  344. @item DirectDraw Surface @tab @tab X
  345. @item DSD Stream File (DSF) @tab @tab X
  346. @item DV video @tab X @tab X
  347. @item DXA @tab @tab X
  348. @tab This format is used in the non-Windows version of the Feeble Files
  349. game and different game cutscenes repacked for use with ScummVM.
  350. @item Electronic Arts cdata @tab @tab X
  351. @item Electronic Arts Multimedia @tab @tab X
  352. @tab Used in various EA games; files have extensions like WVE and UV2.
  353. @item Ensoniq Paris Audio File @tab @tab X
  354. @item FFM (FFserver live feed) @tab X @tab X
  355. @item Flash (SWF) @tab X @tab X
  356. @item Flash 9 (AVM2) @tab X @tab X
  357. @tab Only embedded audio is decoded.
  358. @item FLI/FLC/FLX animation @tab @tab X
  359. @tab .fli/.flc files
  360. @item Flash Video (FLV) @tab X @tab X
  361. @tab Macromedia Flash video files
  362. @item framecrc testing format @tab X @tab
  363. @item FunCom ISS @tab @tab X
  364. @tab Audio format used in various games from FunCom like The Longest Journey.
  365. @item G.723.1 @tab X @tab X
  366. @item G.726 @tab @tab X @tab Both left- and right-justified.
  367. @item G.729 BIT @tab X @tab X
  368. @item G.729 raw @tab @tab X
  369. @item GENH @tab @tab X
  370. @tab Audio format for various games.
  371. @item GIF Animation @tab X @tab X
  372. @item GXF @tab X @tab X
  373. @tab General eXchange Format SMPTE 360M, used by Thomson Grass Valley
  374. playout servers.
  375. @item HNM @tab @tab X
  376. @tab Only version 4 supported, used in some games from Cryo Interactive
  377. @item iCEDraw File @tab @tab X
  378. @item ICO @tab X @tab X
  379. @tab Microsoft Windows ICO
  380. @item id Quake II CIN video @tab @tab X
  381. @item id RoQ @tab X @tab X
  382. @tab Used in Quake III, Jedi Knight 2 and other computer games.
  383. @item IEC61937 encapsulation @tab X @tab X
  384. @item IFF @tab @tab X
  385. @tab Interchange File Format
  386. @item IFV @tab @tab X
  387. @tab A format used by some old CCTV DVRs.
  388. @item iLBC @tab X @tab X
  389. @item Interplay MVE @tab @tab X
  390. @tab Format used in various Interplay computer games.
  391. @item Iterated Systems ClearVideo @tab @tab X
  392. @tab I-frames only
  393. @item IV8 @tab @tab X
  394. @tab A format generated by IndigoVision 8000 video server.
  395. @item IVF (On2) @tab X @tab X
  396. @tab A format used by libvpx
  397. @item Internet Video Recording @tab @tab X
  398. @item IRCAM @tab X @tab X
  399. @item LATM @tab X @tab X
  400. @item LMLM4 @tab @tab X
  401. @tab Used by Linux Media Labs MPEG-4 PCI boards
  402. @item LOAS @tab @tab X
  403. @tab contains LATM multiplexed AAC audio
  404. @item LRC @tab X @tab X
  405. @item LVF @tab @tab X
  406. @item LXF @tab @tab X
  407. @tab VR native stream format, used by Leitch/Harris' video servers.
  408. @item Magic Lantern Video (MLV) @tab @tab X
  409. @item Matroska @tab X @tab X
  410. @item Matroska audio @tab X @tab
  411. @item FFmpeg metadata @tab X @tab X
  412. @tab Metadata in text format.
  413. @item MAXIS XA @tab @tab X
  414. @tab Used in Sim City 3000; file extension .xa.
  415. @item MD Studio @tab @tab X
  416. @item Metal Gear Solid: The Twin Snakes @tab @tab X
  417. @item Megalux Frame @tab @tab X
  418. @tab Used by Megalux Ultimate Paint
  419. @item Mobotix .mxg @tab @tab X
  420. @item Monkey's Audio @tab @tab X
  421. @item Motion Pixels MVI @tab @tab X
  422. @item MOV/QuickTime/MP4 @tab X @tab X
  423. @tab 3GP, 3GP2, PSP, iPod variants supported
  424. @item MP2 @tab X @tab X
  425. @item MP3 @tab X @tab X
  426. @item MPEG-1 System @tab X @tab X
  427. @tab muxed audio and video, VCD format supported
  428. @item MPEG-PS (program stream) @tab X @tab X
  429. @tab also known as @code{VOB} file, SVCD and DVD format supported
  430. @item MPEG-TS (transport stream) @tab X @tab X
  431. @tab also known as DVB Transport Stream
  432. @item MPEG-4 @tab X @tab X
  433. @tab MPEG-4 is a variant of QuickTime.
  434. @item MSF @tab @tab X
  435. @tab Audio format used on the PS3.
  436. @item Mirillis FIC video @tab @tab X
  437. @tab No cursor rendering.
  438. @item MIDI Sample Dump Standard @tab @tab X
  439. @item MIME multipart JPEG @tab X @tab
  440. @item MSN TCP webcam @tab @tab X
  441. @tab Used by MSN Messenger webcam streams.
  442. @item MTV @tab @tab X
  443. @item Musepack @tab @tab X
  444. @item Musepack SV8 @tab @tab X
  445. @item Material eXchange Format (MXF) @tab X @tab X
  446. @tab SMPTE 377M, used by D-Cinema, broadcast industry.
  447. @item Material eXchange Format (MXF), D-10 Mapping @tab X @tab X
  448. @tab SMPTE 386M, D-10/IMX Mapping.
  449. @item NC camera feed @tab @tab X
  450. @tab NC (AVIP NC4600) camera streams
  451. @item NIST SPeech HEader REsources @tab @tab X
  452. @item Computerized Speech Lab NSP @tab @tab X
  453. @item NTT TwinVQ (VQF) @tab @tab X
  454. @tab Nippon Telegraph and Telephone Corporation TwinVQ.
  455. @item Nullsoft Streaming Video @tab @tab X
  456. @item NuppelVideo @tab @tab X
  457. @item NUT @tab X @tab X
  458. @tab NUT Open Container Format
  459. @item Ogg @tab X @tab X
  460. @item Playstation Portable PMP @tab @tab X
  461. @item Portable Voice Format @tab @tab X
  462. @item TechnoTrend PVA @tab @tab X
  463. @tab Used by TechnoTrend DVB PCI boards.
  464. @item QCP @tab @tab X
  465. @item raw ADTS (AAC) @tab X @tab X
  466. @item raw AC-3 @tab X @tab X
  467. @item raw AMR-NB @tab @tab X
  468. @item raw AMR-WB @tab @tab X
  469. @item raw aptX @tab X @tab X
  470. @item raw aptX HD @tab X @tab X
  471. @item raw Chinese AVS video @tab X @tab X
  472. @item raw Dirac @tab X @tab X
  473. @item raw DNxHD @tab X @tab X
  474. @item raw DTS @tab X @tab X
  475. @item raw DTS-HD @tab @tab X
  476. @item raw E-AC-3 @tab X @tab X
  477. @item raw FLAC @tab X @tab X
  478. @item raw GSM @tab @tab X
  479. @item raw H.261 @tab X @tab X
  480. @item raw H.263 @tab X @tab X
  481. @item raw H.264 @tab X @tab X
  482. @item raw HEVC @tab X @tab X
  483. @item raw Ingenient MJPEG @tab @tab X
  484. @item raw MJPEG @tab X @tab X
  485. @item raw MLP @tab @tab X
  486. @item raw MPEG @tab @tab X
  487. @item raw MPEG-1 @tab @tab X
  488. @item raw MPEG-2 @tab @tab X
  489. @item raw MPEG-4 @tab X @tab X
  490. @item raw NULL @tab X @tab
  491. @item raw video @tab X @tab X
  492. @item raw id RoQ @tab X @tab
  493. @item raw SBC @tab X @tab X
  494. @item raw Shorten @tab @tab X
  495. @item raw TAK @tab @tab X
  496. @item raw TrueHD @tab X @tab X
  497. @item raw VC-1 @tab X @tab X
  498. @item raw PCM A-law @tab X @tab X
  499. @item raw PCM mu-law @tab X @tab X
  500. @item raw PCM Archimedes VIDC @tab X @tab X
  501. @item raw PCM signed 8 bit @tab X @tab X
  502. @item raw PCM signed 16 bit big-endian @tab X @tab X
  503. @item raw PCM signed 16 bit little-endian @tab X @tab X
  504. @item raw PCM signed 24 bit big-endian @tab X @tab X
  505. @item raw PCM signed 24 bit little-endian @tab X @tab X
  506. @item raw PCM signed 32 bit big-endian @tab X @tab X
  507. @item raw PCM signed 32 bit little-endian @tab X @tab X
  508. @item raw PCM signed 64 bit big-endian @tab X @tab X
  509. @item raw PCM signed 64 bit little-endian @tab X @tab X
  510. @item raw PCM unsigned 8 bit @tab X @tab X
  511. @item raw PCM unsigned 16 bit big-endian @tab X @tab X
  512. @item raw PCM unsigned 16 bit little-endian @tab X @tab X
  513. @item raw PCM unsigned 24 bit big-endian @tab X @tab X
  514. @item raw PCM unsigned 24 bit little-endian @tab X @tab X
  515. @item raw PCM unsigned 32 bit big-endian @tab X @tab X
  516. @item raw PCM unsigned 32 bit little-endian @tab X @tab X
  517. @item raw PCM 16.8 floating point little-endian @tab @tab X
  518. @item raw PCM 24.0 floating point little-endian @tab @tab X
  519. @item raw PCM floating-point 32 bit big-endian @tab X @tab X
  520. @item raw PCM floating-point 32 bit little-endian @tab X @tab X
  521. @item raw PCM floating-point 64 bit big-endian @tab X @tab X
  522. @item raw PCM floating-point 64 bit little-endian @tab X @tab X
  523. @item RDT @tab @tab X
  524. @item REDCODE R3D @tab @tab X
  525. @tab File format used by RED Digital cameras, contains JPEG 2000 frames and PCM audio.
  526. @item RealMedia @tab X @tab X
  527. @item Redirector @tab @tab X
  528. @item RedSpark @tab @tab X
  529. @item Renderware TeXture Dictionary @tab @tab X
  530. @item Resolume DXV @tab @tab X
  531. @item RL2 @tab @tab X
  532. @tab Audio and video format used in some games by Entertainment Software Partners.
  533. @item RPL/ARMovie @tab @tab X
  534. @item Lego Mindstorms RSO @tab X @tab X
  535. @item RSD @tab @tab X
  536. @item RTMP @tab X @tab X
  537. @tab Output is performed by publishing stream to RTMP server
  538. @item RTP @tab X @tab X
  539. @item RTSP @tab X @tab X
  540. @item Sample Dump eXchange @tab @tab X
  541. @item SAP @tab X @tab X
  542. @item SBG @tab @tab X
  543. @item SDP @tab @tab X
  544. @item SER @tab @tab X
  545. @item Sega FILM/CPK @tab X @tab X
  546. @tab Used in many Sega Saturn console games.
  547. @item Silicon Graphics Movie @tab @tab X
  548. @item Sierra SOL @tab @tab X
  549. @tab .sol files used in Sierra Online games.
  550. @item Sierra VMD @tab @tab X
  551. @tab Used in Sierra CD-ROM games.
  552. @item Smacker @tab @tab X
  553. @tab Multimedia format used by many games.
  554. @item SMJPEG @tab X @tab X
  555. @tab Used in certain Loki game ports.
  556. @item SMPTE 337M encapsulation @tab @tab X
  557. @item Smush @tab @tab X
  558. @tab Multimedia format used in some LucasArts games.
  559. @item Sony OpenMG (OMA) @tab X @tab X
  560. @tab Audio format used in Sony Sonic Stage and Sony Vegas.
  561. @item Sony PlayStation STR @tab @tab X
  562. @item Sony Wave64 (W64) @tab X @tab X
  563. @item SoX native format @tab X @tab X
  564. @item SUN AU format @tab X @tab X
  565. @item SUP raw PGS subtitles @tab X @tab X
  566. @item SVAG @tab @tab X
  567. @tab Audio format used in Konami PS2 games.
  568. @item TDSC @tab @tab X
  569. @item Text files @tab @tab X
  570. @item THP @tab @tab X
  571. @tab Used on the Nintendo GameCube.
  572. @item Tiertex Limited SEQ @tab @tab X
  573. @tab Tiertex .seq files used in the DOS CD-ROM version of the game Flashback.
  574. @item True Audio @tab X @tab X
  575. @item VAG @tab @tab X
  576. @tab Audio format used in many Sony PS2 games.
  577. @item VC-1 test bitstream @tab X @tab X
  578. @item Vidvox Hap @tab X @tab X
  579. @item Vivo @tab @tab X
  580. @item VPK @tab @tab X
  581. @tab Audio format used in Sony PS games.
  582. @item WAV @tab X @tab X
  583. @item WavPack @tab X @tab X
  584. @item WebM @tab X @tab X
  585. @item Windows Televison (WTV) @tab X @tab X
  586. @item Wing Commander III movie @tab @tab X
  587. @tab Multimedia format used in Origin's Wing Commander III computer game.
  588. @item Westwood Studios audio @tab @tab X
  589. @tab Multimedia format used in Westwood Studios games.
  590. @item Westwood Studios VQA @tab @tab X
  591. @tab Multimedia format used in Westwood Studios games.
  592. @item Wideband Single-bit Data (WSD) @tab @tab X
  593. @item WVE @tab @tab X
  594. @item XMV @tab @tab X
  595. @tab Microsoft video container used in Xbox games.
  596. @item XVAG @tab @tab X
  597. @tab Audio format used on the PS3.
  598. @item xWMA @tab @tab X
  599. @tab Microsoft audio container used by XAudio 2.
  600. @item eXtended BINary text (XBIN) @tab @tab X
  601. @item YUV4MPEG pipe @tab X @tab X
  602. @item Psygnosis YOP @tab @tab X
  603. @end multitable
  604. @code{X} means that the feature in that column (encoding / decoding) is supported.
  605. @section Image Formats
  606. FFmpeg can read and write images for each frame of a video sequence. The
  607. following image formats are supported:
  608. @multitable @columnfractions .4 .1 .1 .4
  609. @item Name @tab Encoding @tab Decoding @tab Comments
  610. @item .Y.U.V @tab X @tab X
  611. @tab one raw file per component
  612. @item Alias PIX @tab X @tab X
  613. @tab Alias/Wavefront PIX image format
  614. @item animated GIF @tab X @tab X
  615. @item APNG @tab X @tab X
  616. @item BMP @tab X @tab X
  617. @tab Microsoft BMP image
  618. @item BRender PIX @tab @tab X
  619. @tab Argonaut BRender 3D engine image format.
  620. @item DPX @tab X @tab X
  621. @tab Digital Picture Exchange
  622. @item EXR @tab @tab X
  623. @tab OpenEXR
  624. @item FITS @tab X @tab X
  625. @tab Flexible Image Transport System
  626. @item JPEG @tab X @tab X
  627. @tab Progressive JPEG is not supported.
  628. @item JPEG 2000 @tab X @tab X
  629. @item JPEG-LS @tab X @tab X
  630. @item LJPEG @tab X @tab
  631. @tab Lossless JPEG
  632. @item PAM @tab X @tab X
  633. @tab PAM is a PNM extension with alpha support.
  634. @item PBM @tab X @tab X
  635. @tab Portable BitMap image
  636. @item PCX @tab X @tab X
  637. @tab PC Paintbrush
  638. @item PGM @tab X @tab X
  639. @tab Portable GrayMap image
  640. @item PGMYUV @tab X @tab X
  641. @tab PGM with U and V components in YUV 4:2:0
  642. @item PIC @tab @tab X
  643. @tab Pictor/PC Paint
  644. @item PNG @tab X @tab X
  645. @item PPM @tab X @tab X
  646. @tab Portable PixelMap image
  647. @item PSD @tab @tab X
  648. @tab Photoshop
  649. @item PTX @tab @tab X
  650. @tab V.Flash PTX format
  651. @item SGI @tab X @tab X
  652. @tab SGI RGB image format
  653. @item Sun Rasterfile @tab X @tab X
  654. @tab Sun RAS image format
  655. @item TIFF @tab X @tab X
  656. @tab YUV, JPEG and some extension is not supported yet.
  657. @item Truevision Targa @tab X @tab X
  658. @tab Targa (.TGA) image format
  659. @item WebP @tab E @tab X
  660. @tab WebP image format, encoding supported through external library libwebp
  661. @item XBM @tab X @tab X
  662. @tab X BitMap image format
  663. @item XFace @tab X @tab X
  664. @tab X-Face image format
  665. @item XPM @tab @tab X
  666. @tab X PixMap image format
  667. @item XWD @tab X @tab X
  668. @tab X Window Dump image format
  669. @end multitable
  670. @code{X} means that the feature in that column (encoding / decoding) is supported.
  671. @code{E} means that support is provided through an external library.
  672. @section Video Codecs
  673. @multitable @columnfractions .4 .1 .1 .4
  674. @item Name @tab Encoding @tab Decoding @tab Comments
  675. @item 4X Movie @tab @tab X
  676. @tab Used in certain computer games.
  677. @item 8088flex TMV @tab @tab X
  678. @item A64 multicolor @tab X @tab
  679. @tab Creates video suitable to be played on a commodore 64 (multicolor mode).
  680. @item Amazing Studio PAF Video @tab @tab X
  681. @item American Laser Games MM @tab @tab X
  682. @tab Used in games like Mad Dog McCree.
  683. @item AMV Video @tab X @tab X
  684. @tab Used in Chinese MP3 players.
  685. @item ANSI/ASCII art @tab @tab X
  686. @item Apple Intermediate Codec @tab @tab X
  687. @item Apple MJPEG-B @tab @tab X
  688. @item Apple Pixlet @tab @tab X
  689. @item Apple ProRes @tab X @tab X
  690. @item Apple QuickDraw @tab @tab X
  691. @tab fourcc: qdrw
  692. @item Asus v1 @tab X @tab X
  693. @tab fourcc: ASV1
  694. @item Asus v2 @tab X @tab X
  695. @tab fourcc: ASV2
  696. @item ATI VCR1 @tab @tab X
  697. @tab fourcc: VCR1
  698. @item ATI VCR2 @tab @tab X
  699. @tab fourcc: VCR2
  700. @item Auravision Aura @tab @tab X
  701. @item Auravision Aura 2 @tab @tab X
  702. @item Autodesk Animator Flic video @tab @tab X
  703. @item Autodesk RLE @tab @tab X
  704. @tab fourcc: AASC
  705. @item AV1 @tab E @tab E
  706. @tab Supported through external libraries libaom, libdav1d and librav1e
  707. @item Avid 1:1 10-bit RGB Packer @tab X @tab X
  708. @tab fourcc: AVrp
  709. @item AVS (Audio Video Standard) video @tab @tab X
  710. @tab Video encoding used by the Creature Shock game.
  711. @item AVS2-P2/IEEE1857.4 @tab E @tab E
  712. @tab Supported through external libraries libxavs2 and libdavs2
  713. @item AYUV @tab X @tab X
  714. @tab Microsoft uncompressed packed 4:4:4:4
  715. @item Beam Software VB @tab @tab X
  716. @item Bethesda VID video @tab @tab X
  717. @tab Used in some games from Bethesda Softworks.
  718. @item Bink Video @tab @tab X
  719. @item BitJazz SheerVideo @tab @tab X
  720. @item Bitmap Brothers JV video @tab @tab X
  721. @item y41p Brooktree uncompressed 4:1:1 12-bit @tab X @tab X
  722. @item Brute Force & Ignorance @tab @tab X
  723. @tab Used in the game Flash Traffic: City of Angels.
  724. @item C93 video @tab @tab X
  725. @tab Codec used in Cyberia game.
  726. @item CamStudio @tab @tab X
  727. @tab fourcc: CSCD
  728. @item CD+G @tab @tab X
  729. @tab Video codec for CD+G karaoke disks
  730. @item CDXL @tab @tab X
  731. @tab Amiga CD video codec
  732. @item Chinese AVS video @tab E @tab X
  733. @tab AVS1-P2, JiZhun profile, encoding through external library libxavs
  734. @item Delphine Software International CIN video @tab @tab X
  735. @tab Codec used in Delphine Software International games.
  736. @item Discworld II BMV Video @tab @tab X
  737. @item Canopus Lossless Codec @tab @tab X
  738. @item CDToons @tab @tab X
  739. @tab Codec used in various Broderbund games.
  740. @item Cinepak @tab @tab X
  741. @item Cirrus Logic AccuPak @tab X @tab X
  742. @tab fourcc: CLJR
  743. @item CPiA Video Format @tab @tab X
  744. @item Creative YUV (CYUV) @tab @tab X
  745. @item DFA @tab @tab X
  746. @tab Codec used in Chronomaster game.
  747. @item Dirac @tab E @tab X
  748. @tab supported though the native vc2 (Dirac Pro) encoder
  749. @item Deluxe Paint Animation @tab @tab X
  750. @item DNxHD @tab X @tab X
  751. @tab aka SMPTE VC3
  752. @item Duck TrueMotion 1.0 @tab @tab X
  753. @tab fourcc: DUCK
  754. @item Duck TrueMotion 2.0 @tab @tab X
  755. @tab fourcc: TM20
  756. @item Duck TrueMotion 2.0 RT @tab @tab X
  757. @tab fourcc: TR20
  758. @item DV (Digital Video) @tab X @tab X
  759. @item Dxtory capture format @tab @tab X
  760. @item Feeble Files/ScummVM DXA @tab @tab X
  761. @tab Codec originally used in Feeble Files game.
  762. @item Electronic Arts CMV video @tab @tab X
  763. @tab Used in NHL 95 game.
  764. @item Electronic Arts Madcow video @tab @tab X
  765. @item Electronic Arts TGV video @tab @tab X
  766. @item Electronic Arts TGQ video @tab @tab X
  767. @item Electronic Arts TQI video @tab @tab X
  768. @item Escape 124 @tab @tab X
  769. @item Escape 130 @tab @tab X
  770. @item FFmpeg video codec #1 @tab X @tab X
  771. @tab lossless codec (fourcc: FFV1)
  772. @item Flash Screen Video v1 @tab X @tab X
  773. @tab fourcc: FSV1
  774. @item Flash Screen Video v2 @tab X @tab X
  775. @item Flash Video (FLV) @tab X @tab X
  776. @tab Sorenson H.263 used in Flash
  777. @item FM Screen Capture Codec @tab @tab X
  778. @item Forward Uncompressed @tab @tab X
  779. @item Fraps @tab @tab X
  780. @item Go2Meeting @tab @tab X
  781. @tab fourcc: G2M2, G2M3
  782. @item Go2Webinar @tab @tab X
  783. @tab fourcc: G2M4
  784. @item Gremlin Digital Video @tab @tab X
  785. @item H.261 @tab X @tab X
  786. @item H.263 / H.263-1996 @tab X @tab X
  787. @item H.263+ / H.263-1998 / H.263 version 2 @tab X @tab X
  788. @item H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 @tab E @tab X
  789. @tab encoding supported through external library libx264 and OpenH264
  790. @item HEVC @tab X @tab X
  791. @tab encoding supported through external library libx265 and libkvazaar
  792. @item HNM version 4 @tab @tab X
  793. @item HuffYUV @tab X @tab X
  794. @item HuffYUV FFmpeg variant @tab X @tab X
  795. @item IBM Ultimotion @tab @tab X
  796. @tab fourcc: ULTI
  797. @item id Cinematic video @tab @tab X
  798. @tab Used in Quake II.
  799. @item id RoQ video @tab X @tab X
  800. @tab Used in Quake III, Jedi Knight 2, other computer games.
  801. @item IFF ILBM @tab @tab X
  802. @tab IFF interleaved bitmap
  803. @item IFF ByteRun1 @tab @tab X
  804. @tab IFF run length encoded bitmap
  805. @item Infinity IMM4 @tab @tab X
  806. @item Intel H.263 @tab @tab X
  807. @item Intel Indeo 2 @tab @tab X
  808. @item Intel Indeo 3 @tab @tab X
  809. @item Intel Indeo 4 @tab @tab X
  810. @item Intel Indeo 5 @tab @tab X
  811. @item Interplay C93 @tab @tab X
  812. @tab Used in the game Cyberia from Interplay.
  813. @item Interplay MVE video @tab @tab X
  814. @tab Used in Interplay .MVE files.
  815. @item J2K @tab X @tab X
  816. @item Karl Morton's video codec @tab @tab X
  817. @tab Codec used in Worms games.
  818. @item Kega Game Video (KGV1) @tab @tab X
  819. @tab Kega emulator screen capture codec.
  820. @item Lagarith @tab @tab X
  821. @item LCL (LossLess Codec Library) MSZH @tab @tab X
  822. @item LCL (LossLess Codec Library) ZLIB @tab E @tab E
  823. @item LOCO @tab @tab X
  824. @item LucasArts SANM/Smush @tab @tab X
  825. @tab Used in LucasArts games / SMUSH animations.
  826. @item lossless MJPEG @tab X @tab X
  827. @item MagicYUV Video @tab X @tab X
  828. @item Mandsoft Screen Capture Codec @tab @tab X
  829. @item Microsoft ATC Screen @tab @tab X
  830. @tab Also known as Microsoft Screen 3.
  831. @item Microsoft Expression Encoder Screen @tab @tab X
  832. @tab Also known as Microsoft Titanium Screen 2.
  833. @item Microsoft RLE @tab @tab X
  834. @item Microsoft Screen 1 @tab @tab X
  835. @tab Also known as Windows Media Video V7 Screen.
  836. @item Microsoft Screen 2 @tab @tab X
  837. @tab Also known as Windows Media Video V9 Screen.
  838. @item Microsoft Video 1 @tab @tab X
  839. @item Mimic @tab @tab X
  840. @tab Used in MSN Messenger Webcam streams.
  841. @item Miro VideoXL @tab @tab X
  842. @tab fourcc: VIXL
  843. @item MJPEG (Motion JPEG) @tab X @tab X
  844. @item Mobotix MxPEG video @tab @tab X
  845. @item Motion Pixels video @tab @tab X
  846. @item MPEG-1 video @tab X @tab X
  847. @item MPEG-2 video @tab X @tab X
  848. @item MPEG-4 part 2 @tab X @tab X
  849. @tab libxvidcore can be used alternatively for encoding.
  850. @item MPEG-4 part 2 Microsoft variant version 1 @tab @tab X
  851. @item MPEG-4 part 2 Microsoft variant version 2 @tab X @tab X
  852. @item MPEG-4 part 2 Microsoft variant version 3 @tab X @tab X
  853. @item Newtek SpeedHQ @tab @tab X
  854. @item Nintendo Gamecube THP video @tab @tab X
  855. @item NuppelVideo/RTjpeg @tab @tab X
  856. @tab Video encoding used in NuppelVideo files.
  857. @item On2 VP3 @tab @tab X
  858. @tab still experimental
  859. @item On2 VP4 @tab @tab X
  860. @tab fourcc: VP40
  861. @item On2 VP5 @tab @tab X
  862. @tab fourcc: VP50
  863. @item On2 VP6 @tab @tab X
  864. @tab fourcc: VP60,VP61,VP62
  865. @item On2 VP7 @tab @tab X
  866. @tab fourcc: VP70,VP71
  867. @item VP8 @tab E @tab X
  868. @tab fourcc: VP80, encoding supported through external library libvpx
  869. @item VP9 @tab E @tab X
  870. @tab encoding supported through external library libvpx
  871. @item Pinnacle TARGA CineWave YUV16 @tab @tab X
  872. @tab fourcc: Y216
  873. @item Prores @tab @tab X
  874. @tab fourcc: apch,apcn,apcs,apco
  875. @item Q-team QPEG @tab @tab X
  876. @tab fourccs: QPEG, Q1.0, Q1.1
  877. @item QuickTime 8BPS video @tab @tab X
  878. @item QuickTime Animation (RLE) video @tab X @tab X
  879. @tab fourcc: 'rle '
  880. @item QuickTime Graphics (SMC) @tab @tab X
  881. @tab fourcc: 'smc '
  882. @item QuickTime video (RPZA) @tab @tab X
  883. @tab fourcc: rpza
  884. @item R10K AJA Kona 10-bit RGB Codec @tab X @tab X
  885. @item R210 Quicktime Uncompressed RGB 10-bit @tab X @tab X
  886. @item Raw Video @tab X @tab X
  887. @item RealVideo 1.0 @tab X @tab X
  888. @item RealVideo 2.0 @tab X @tab X
  889. @item RealVideo 3.0 @tab @tab X
  890. @tab still far from ideal
  891. @item RealVideo 4.0 @tab @tab X
  892. @item Renderware TXD (TeXture Dictionary) @tab @tab X
  893. @tab Texture dictionaries used by the Renderware Engine.
  894. @item RL2 video @tab @tab X
  895. @tab used in some games by Entertainment Software Partners
  896. @item ScreenPressor @tab @tab X
  897. @item Screenpresso @tab @tab X
  898. @item Screen Recorder Gold Codec @tab @tab X
  899. @item Sierra VMD video @tab @tab X
  900. @tab Used in Sierra VMD files.
  901. @item Silicon Graphics Motion Video Compressor 1 (MVC1) @tab @tab X
  902. @item Silicon Graphics Motion Video Compressor 2 (MVC2) @tab @tab X
  903. @item Silicon Graphics RLE 8-bit video @tab @tab X
  904. @item Smacker video @tab @tab X
  905. @tab Video encoding used in Smacker.
  906. @item SMPTE VC-1 @tab @tab X
  907. @item Snow @tab X @tab X
  908. @tab experimental wavelet codec (fourcc: SNOW)
  909. @item Sony PlayStation MDEC (Motion DECoder) @tab @tab X
  910. @item Sorenson Vector Quantizer 1 @tab X @tab X
  911. @tab fourcc: SVQ1
  912. @item Sorenson Vector Quantizer 3 @tab @tab X
  913. @tab fourcc: SVQ3
  914. @item Sunplus JPEG (SP5X) @tab @tab X
  915. @tab fourcc: SP5X
  916. @item TechSmith Screen Capture Codec @tab @tab X
  917. @tab fourcc: TSCC
  918. @item TechSmith Screen Capture Codec 2 @tab @tab X
  919. @tab fourcc: TSC2
  920. @item Theora @tab E @tab X
  921. @tab encoding supported through external library libtheora
  922. @item Tiertex Limited SEQ video @tab @tab X
  923. @tab Codec used in DOS CD-ROM FlashBack game.
  924. @item Ut Video @tab X @tab X
  925. @item v210 QuickTime uncompressed 4:2:2 10-bit @tab X @tab X
  926. @item v308 QuickTime uncompressed 4:4:4 @tab X @tab X
  927. @item v408 QuickTime uncompressed 4:4:4:4 @tab X @tab X
  928. @item v410 QuickTime uncompressed 4:4:4 10-bit @tab X @tab X
  929. @item VBLE Lossless Codec @tab @tab X
  930. @item VMware Screen Codec / VMware Video @tab @tab X
  931. @tab Codec used in videos captured by VMware.
  932. @item Westwood Studios VQA (Vector Quantized Animation) video @tab @tab X
  933. @item Windows Media Image @tab @tab X
  934. @item Windows Media Video 7 @tab X @tab X
  935. @item Windows Media Video 8 @tab X @tab X
  936. @item Windows Media Video 9 @tab @tab X
  937. @tab not completely working
  938. @item Wing Commander III / Xan @tab @tab X
  939. @tab Used in Wing Commander III .MVE files.
  940. @item Wing Commander IV / Xan @tab @tab X
  941. @tab Used in Wing Commander IV.
  942. @item Winnov WNV1 @tab @tab X
  943. @item WMV7 @tab X @tab X
  944. @item YAMAHA SMAF @tab X @tab X
  945. @item Psygnosis YOP Video @tab @tab X
  946. @item yuv4 @tab X @tab X
  947. @tab libquicktime uncompressed packed 4:2:0
  948. @item ZeroCodec Lossless Video @tab @tab X
  949. @item ZLIB @tab X @tab X
  950. @tab part of LCL, encoder experimental
  951. @item Zip Motion Blocks Video @tab X @tab X
  952. @tab Encoder works only in PAL8.
  953. @end multitable
  954. @code{X} means that the feature in that column (encoding / decoding) is supported.
  955. @code{E} means that support is provided through an external library.
  956. @section Audio Codecs
  957. @multitable @columnfractions .4 .1 .1 .4
  958. @item Name @tab Encoding @tab Decoding @tab Comments
  959. @item 8SVX exponential @tab @tab X
  960. @item 8SVX fibonacci @tab @tab X
  961. @item AAC @tab EX @tab X
  962. @tab encoding supported through internal encoder and external library libfdk-aac
  963. @item AAC+ @tab E @tab IX
  964. @tab encoding supported through external library libfdk-aac
  965. @item AC-3 @tab IX @tab IX
  966. @item ACELP.KELVIN @tab @tab X
  967. @item ADPCM 4X Movie @tab @tab X
  968. @item APDCM Yamaha AICA @tab @tab X
  969. @item ADPCM Argonaut Games @tab @tab X
  970. @item ADPCM CDROM XA @tab @tab X
  971. @item ADPCM Creative Technology @tab @tab X
  972. @tab 16 -> 4, 8 -> 4, 8 -> 3, 8 -> 2
  973. @item ADPCM Electronic Arts @tab @tab X
  974. @tab Used in various EA titles.
  975. @item ADPCM Electronic Arts Maxis CDROM XS @tab @tab X
  976. @tab Used in Sim City 3000.
  977. @item ADPCM Electronic Arts R1 @tab @tab X
  978. @item ADPCM Electronic Arts R2 @tab @tab X
  979. @item ADPCM Electronic Arts R3 @tab @tab X
  980. @item ADPCM Electronic Arts XAS @tab @tab X
  981. @item ADPCM G.722 @tab X @tab X
  982. @item ADPCM G.726 @tab X @tab X
  983. @item ADPCM IMA AMV @tab @tab X
  984. @tab Used in AMV files
  985. @item ADPCM IMA Cunning Developments @tab @tab X
  986. @item ADPCM IMA Electronic Arts EACS @tab @tab X
  987. @item ADPCM IMA Electronic Arts SEAD @tab @tab X
  988. @item ADPCM IMA Funcom @tab @tab X
  989. @item ADPCM IMA High Voltage Software ALP @tab @tab X
  990. @item ADPCM IMA QuickTime @tab X @tab X
  991. @item ADPCM IMA Simon & Schuster Interactive @tab X @tab X
  992. @item ADPCM IMA Ubisoft APM @tab @tab X
  993. @item ADPCM IMA Loki SDL MJPEG @tab @tab X
  994. @item ADPCM IMA WAV @tab X @tab X
  995. @item ADPCM IMA Westwood @tab @tab X
  996. @item ADPCM ISS IMA @tab @tab X
  997. @tab Used in FunCom games.
  998. @item ADPCM IMA Dialogic @tab @tab X
  999. @item ADPCM IMA Duck DK3 @tab @tab X
  1000. @tab Used in some Sega Saturn console games.
  1001. @item ADPCM IMA Duck DK4 @tab @tab X
  1002. @tab Used in some Sega Saturn console games.
  1003. @item ADPCM IMA Radical @tab @tab X
  1004. @item ADPCM Microsoft @tab X @tab X
  1005. @item ADPCM MS IMA @tab X @tab X
  1006. @item ADPCM Nintendo Gamecube AFC @tab @tab X
  1007. @item ADPCM Nintendo Gamecube DTK @tab @tab X
  1008. @item ADPCM Nintendo THP @tab @tab X
  1009. @item APDCM Playstation @tab @tab X
  1010. @item ADPCM QT IMA @tab X @tab X
  1011. @item ADPCM SEGA CRI ADX @tab X @tab X
  1012. @tab Used in Sega Dreamcast games.
  1013. @item ADPCM Shockwave Flash @tab X @tab X
  1014. @item ADPCM Sound Blaster Pro 2-bit @tab @tab X
  1015. @item ADPCM Sound Blaster Pro 2.6-bit @tab @tab X
  1016. @item ADPCM Sound Blaster Pro 4-bit @tab @tab X
  1017. @item ADPCM VIMA @tab @tab X
  1018. @tab Used in LucasArts SMUSH animations.
  1019. @item ADPCM Westwood Studios IMA @tab @tab X
  1020. @tab Used in Westwood Studios games like Command and Conquer.
  1021. @item ADPCM Yamaha @tab X @tab X
  1022. @item ADPCM Zork @tab @tab X
  1023. @item AMR-NB @tab E @tab X
  1024. @tab encoding supported through external library libopencore-amrnb
  1025. @item AMR-WB @tab E @tab X
  1026. @tab encoding supported through external library libvo-amrwbenc
  1027. @item Amazing Studio PAF Audio @tab @tab X
  1028. @item Apple lossless audio @tab X @tab X
  1029. @tab QuickTime fourcc 'alac'
  1030. @item aptX @tab X @tab X
  1031. @tab Used in Bluetooth A2DP
  1032. @item aptX HD @tab X @tab X
  1033. @tab Used in Bluetooth A2DP
  1034. @item ATRAC1 @tab @tab X
  1035. @item ATRAC3 @tab @tab X
  1036. @item ATRAC3+ @tab @tab X
  1037. @item ATRAC9 @tab @tab X
  1038. @item Bink Audio @tab @tab X
  1039. @tab Used in Bink and Smacker files in many games.
  1040. @item CELT @tab @tab E
  1041. @tab decoding supported through external library libcelt
  1042. @item codec2 @tab E @tab E
  1043. @tab en/decoding supported through external library libcodec2
  1044. @item CRI HCA @tab @tab X
  1045. @item Delphine Software International CIN audio @tab @tab X
  1046. @tab Codec used in Delphine Software International games.
  1047. @item Digital Speech Standard - Standard Play mode (DSS SP) @tab @tab X
  1048. @item Discworld II BMV Audio @tab @tab X
  1049. @item COOK @tab @tab X
  1050. @tab All versions except 5.1 are supported.
  1051. @item DCA (DTS Coherent Acoustics) @tab X @tab X
  1052. @tab supported extensions: XCh, XXCH, X96, XBR, XLL, LBR (partially)
  1053. @item Dolby E @tab @tab X
  1054. @item DPCM Gremlin @tab @tab X
  1055. @item DPCM id RoQ @tab X @tab X
  1056. @tab Used in Quake III, Jedi Knight 2 and other computer games.
  1057. @item DPCM Interplay @tab @tab X
  1058. @tab Used in various Interplay computer games.
  1059. @item DPCM Squareroot-Delta-Exact @tab @tab X
  1060. @tab Used in various games.
  1061. @item DPCM Sierra Online @tab @tab X
  1062. @tab Used in Sierra Online game audio files.
  1063. @item DPCM Sol @tab @tab X
  1064. @item DPCM Xan @tab @tab X
  1065. @tab Used in Origin's Wing Commander IV AVI files.
  1066. @item DPCM Xilam DERF @tab @tab X
  1067. @item DSD (Direct Stream Digital), least significant bit first @tab @tab X
  1068. @item DSD (Direct Stream Digital), most significant bit first @tab @tab X
  1069. @item DSD (Direct Stream Digital), least significant bit first, planar @tab @tab X
  1070. @item DSD (Direct Stream Digital), most significant bit first, planar @tab @tab X
  1071. @item DSP Group TrueSpeech @tab @tab X
  1072. @item DST (Direct Stream Transfer) @tab @tab X
  1073. @item DV audio @tab @tab X
  1074. @item Enhanced AC-3 @tab X @tab X
  1075. @item EVRC (Enhanced Variable Rate Codec) @tab @tab X
  1076. @item FLAC (Free Lossless Audio Codec) @tab X @tab IX
  1077. @item G.723.1 @tab X @tab X
  1078. @item G.729 @tab @tab X
  1079. @item GSM @tab E @tab X
  1080. @tab encoding supported through external library libgsm
  1081. @item GSM Microsoft variant @tab E @tab X
  1082. @tab encoding supported through external library libgsm
  1083. @item IAC (Indeo Audio Coder) @tab @tab X
  1084. @item iLBC (Internet Low Bitrate Codec) @tab E @tab E
  1085. @tab encoding and decoding supported through external library libilbc
  1086. @item IMC (Intel Music Coder) @tab @tab X
  1087. @item Interplay ACM @tab @tab X
  1088. @item MACE (Macintosh Audio Compression/Expansion) 3:1 @tab @tab X
  1089. @item MACE (Macintosh Audio Compression/Expansion) 6:1 @tab @tab X
  1090. @item MLP (Meridian Lossless Packing) @tab X @tab X
  1091. @tab Used in DVD-Audio discs.
  1092. @item Monkey's Audio @tab @tab X
  1093. @item MP1 (MPEG audio layer 1) @tab @tab IX
  1094. @item MP2 (MPEG audio layer 2) @tab IX @tab IX
  1095. @tab encoding supported also through external library TwoLAME
  1096. @item MP3 (MPEG audio layer 3) @tab E @tab IX
  1097. @tab encoding supported through external library LAME, ADU MP3 and MP3onMP4 also supported
  1098. @item MPEG-4 Audio Lossless Coding (ALS) @tab @tab X
  1099. @item Musepack SV7 @tab @tab X
  1100. @item Musepack SV8 @tab @tab X
  1101. @item Nellymoser Asao @tab X @tab X
  1102. @item On2 AVC (Audio for Video Codec) @tab @tab X
  1103. @item Opus @tab E @tab X
  1104. @tab encoding supported through external library libopus
  1105. @item PCM A-law @tab X @tab X
  1106. @item PCM mu-law @tab X @tab X
  1107. @item PCM Archimedes VIDC @tab X @tab X
  1108. @item PCM signed 8-bit planar @tab X @tab X
  1109. @item PCM signed 16-bit big-endian planar @tab X @tab X
  1110. @item PCM signed 16-bit little-endian planar @tab X @tab X
  1111. @item PCM signed 24-bit little-endian planar @tab X @tab X
  1112. @item PCM signed 32-bit little-endian planar @tab X @tab X
  1113. @item PCM 32-bit floating point big-endian @tab X @tab X
  1114. @item PCM 32-bit floating point little-endian @tab X @tab X
  1115. @item PCM 64-bit floating point big-endian @tab X @tab X
  1116. @item PCM 64-bit floating point little-endian @tab X @tab X
  1117. @item PCM D-Cinema audio signed 24-bit @tab X @tab X
  1118. @item PCM signed 8-bit @tab X @tab X
  1119. @item PCM signed 16-bit big-endian @tab X @tab X
  1120. @item PCM signed 16-bit little-endian @tab X @tab X
  1121. @item PCM signed 24-bit big-endian @tab X @tab X
  1122. @item PCM signed 24-bit little-endian @tab X @tab X
  1123. @item PCM signed 32-bit big-endian @tab X @tab X
  1124. @item PCM signed 32-bit little-endian @tab X @tab X
  1125. @item PCM signed 16/20/24-bit big-endian in MPEG-TS @tab @tab X
  1126. @item PCM unsigned 8-bit @tab X @tab X
  1127. @item PCM unsigned 16-bit big-endian @tab X @tab X
  1128. @item PCM unsigned 16-bit little-endian @tab X @tab X
  1129. @item PCM unsigned 24-bit big-endian @tab X @tab X
  1130. @item PCM unsigned 24-bit little-endian @tab X @tab X
  1131. @item PCM unsigned 32-bit big-endian @tab X @tab X
  1132. @item PCM unsigned 32-bit little-endian @tab X @tab X
  1133. @item QCELP / PureVoice @tab @tab X
  1134. @item QDesign Music Codec 1 @tab @tab X
  1135. @item QDesign Music Codec 2 @tab @tab X
  1136. @tab There are still some distortions.
  1137. @item RealAudio 1.0 (14.4K) @tab X @tab X
  1138. @tab Real 14400 bit/s codec
  1139. @item RealAudio 2.0 (28.8K) @tab @tab X
  1140. @tab Real 28800 bit/s codec
  1141. @item RealAudio 3.0 (dnet) @tab IX @tab X
  1142. @tab Real low bitrate AC-3 codec
  1143. @item RealAudio Lossless @tab @tab X
  1144. @item RealAudio SIPR / ACELP.NET @tab @tab X
  1145. @item SBC (low-complexity subband codec) @tab X @tab X
  1146. @tab Used in Bluetooth A2DP
  1147. @item Shorten @tab @tab X
  1148. @item Sierra VMD audio @tab @tab X
  1149. @tab Used in Sierra VMD files.
  1150. @item Smacker audio @tab @tab X
  1151. @item SMPTE 302M AES3 audio @tab X @tab X
  1152. @item Sonic @tab X @tab X
  1153. @tab experimental codec
  1154. @item Sonic lossless @tab X @tab X
  1155. @tab experimental codec
  1156. @item Speex @tab E @tab E
  1157. @tab supported through external library libspeex
  1158. @item TAK (Tom's lossless Audio Kompressor) @tab @tab X
  1159. @item True Audio (TTA) @tab X @tab X
  1160. @item TrueHD @tab X @tab X
  1161. @tab Used in HD-DVD and Blu-Ray discs.
  1162. @item TwinVQ (VQF flavor) @tab @tab X
  1163. @item VIMA @tab @tab X
  1164. @tab Used in LucasArts SMUSH animations.
  1165. @item Vorbis @tab E @tab X
  1166. @tab A native but very primitive encoder exists.
  1167. @item Voxware MetaSound @tab @tab X
  1168. @item WavPack @tab X @tab X
  1169. @item Westwood Audio (SND1) @tab @tab X
  1170. @item Windows Media Audio 1 @tab X @tab X
  1171. @item Windows Media Audio 2 @tab X @tab X
  1172. @item Windows Media Audio Lossless @tab @tab X
  1173. @item Windows Media Audio Pro @tab @tab X
  1174. @item Windows Media Audio Voice @tab @tab X
  1175. @item Xbox Media Audio 1 @tab @tab X
  1176. @item Xbox Media Audio 2 @tab @tab X
  1177. @end multitable
  1178. @code{X} means that the feature in that column (encoding / decoding) is supported.
  1179. @code{E} means that support is provided through an external library.
  1180. @code{I} means that an integer-only version is available, too (ensures high
  1181. performance on systems without hardware floating point support).
  1182. @section Subtitle Formats
  1183. @multitable @columnfractions .4 .1 .1 .1 .1
  1184. @item Name @tab Muxing @tab Demuxing @tab Encoding @tab Decoding
  1185. @item 3GPP Timed Text @tab @tab @tab X @tab X
  1186. @item AQTitle @tab @tab X @tab @tab X
  1187. @item DVB @tab X @tab X @tab X @tab X
  1188. @item DVB teletext @tab @tab X @tab @tab E
  1189. @item DVD @tab X @tab X @tab X @tab X
  1190. @item JACOsub @tab X @tab X @tab @tab X
  1191. @item MicroDVD @tab X @tab X @tab @tab X
  1192. @item MPL2 @tab @tab X @tab @tab X
  1193. @item MPsub (MPlayer) @tab @tab X @tab @tab X
  1194. @item PGS @tab @tab @tab @tab X
  1195. @item PJS (Phoenix) @tab @tab X @tab @tab X
  1196. @item RealText @tab @tab X @tab @tab X
  1197. @item SAMI @tab @tab X @tab @tab X
  1198. @item Spruce format (STL) @tab @tab X @tab @tab X
  1199. @item SSA/ASS @tab X @tab X @tab X @tab X
  1200. @item SubRip (SRT) @tab X @tab X @tab X @tab X
  1201. @item SubViewer v1 @tab @tab X @tab @tab X
  1202. @item SubViewer @tab @tab X @tab @tab X
  1203. @item TED Talks captions @tab @tab X @tab @tab X
  1204. @item VobSub (IDX+SUB) @tab @tab X @tab @tab X
  1205. @item VPlayer @tab @tab X @tab @tab X
  1206. @item WebVTT @tab X @tab X @tab X @tab X
  1207. @item XSUB @tab @tab @tab X @tab X
  1208. @end multitable
  1209. @code{X} means that the feature is supported.
  1210. @code{E} means that support is provided through an external library.
  1211. @section Network Protocols
  1212. @multitable @columnfractions .4 .1
  1213. @item Name @tab Support
  1214. @item AMQP @tab E
  1215. @item file @tab X
  1216. @item FTP @tab X
  1217. @item Gopher @tab X
  1218. @item HLS @tab X
  1219. @item HTTP @tab X
  1220. @item HTTPS @tab X
  1221. @item Icecast @tab X
  1222. @item MMSH @tab X
  1223. @item MMST @tab X
  1224. @item pipe @tab X
  1225. @item Pro-MPEG FEC @tab X
  1226. @item RTMP @tab X
  1227. @item RTMPE @tab X
  1228. @item RTMPS @tab X
  1229. @item RTMPT @tab X
  1230. @item RTMPTE @tab X
  1231. @item RTMPTS @tab X
  1232. @item RTP @tab X
  1233. @item SAMBA @tab E
  1234. @item SCTP @tab X
  1235. @item SFTP @tab E
  1236. @item TCP @tab X
  1237. @item TLS @tab X
  1238. @item UDP @tab X
  1239. @item ZMQ @tab E
  1240. @end multitable
  1241. @code{X} means that the protocol is supported.
  1242. @code{E} means that support is provided through an external library.
  1243. @section Input/Output Devices
  1244. @multitable @columnfractions .4 .1 .1
  1245. @item Name @tab Input @tab Output
  1246. @item ALSA @tab X @tab X
  1247. @item BKTR @tab X @tab
  1248. @item caca @tab @tab X
  1249. @item DV1394 @tab X @tab
  1250. @item Lavfi virtual device @tab X @tab
  1251. @item Linux framebuffer @tab X @tab X
  1252. @item JACK @tab X @tab
  1253. @item LIBCDIO @tab X
  1254. @item LIBDC1394 @tab X @tab
  1255. @item OpenAL @tab X
  1256. @item OpenGL @tab @tab X
  1257. @item OSS @tab X @tab X
  1258. @item PulseAudio @tab X @tab X
  1259. @item SDL @tab @tab X
  1260. @item Video4Linux2 @tab X @tab X
  1261. @item VfW capture @tab X @tab
  1262. @item X11 grabbing @tab X @tab
  1263. @item Win32 grabbing @tab X @tab
  1264. @end multitable
  1265. @code{X} means that input/output is supported.
  1266. @section Timecode
  1267. @multitable @columnfractions .4 .1 .1
  1268. @item Codec/format @tab Read @tab Write
  1269. @item AVI @tab X @tab X
  1270. @item DV @tab X @tab X
  1271. @item GXF @tab X @tab X
  1272. @item MOV @tab X @tab X
  1273. @item MPEG1/2 @tab X @tab X
  1274. @item MXF @tab X @tab X
  1275. @end multitable
  1276. @bye