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.

899 lines
32KB

  1. Entries are sorted chronologically from oldest to youngest within each release,
  2. releases are sorted from youngest to oldest.
  3. version 10:
  4. - av_strnstr
  5. version 9:
  6. - av_basename and av_dirname
  7. - adobe and limelight publisher authentication in RTMP
  8. - VDPAU hardware acceleration through normal hwaccel
  9. - SRTP support
  10. version 9_beta3:
  11. - ashowinfo audio filter
  12. - 24-bit FLAC encoding
  13. - audio volume filter
  14. - deprecated the avconv -vol option. the volume filter is to be used instead.
  15. - multi-channel ALAC encoding up to 7.1
  16. - TAK demuxer, parser, and decoder
  17. - adaptive frame-level multithreading for H.264
  18. version 9_beta2:
  19. - metadata (INFO tag) support in WAV muxer
  20. - support for building DLLs using MSVC
  21. - remove avserver daemon mode
  22. - support building on the Plan 9 operating system
  23. - ffv1: support version 1.3
  24. version 9_beta1:
  25. - XWD encoder and decoder
  26. - Support for fragmentation in the mov/mp4 muxer
  27. - ISMV (Smooth Streaming) muxer
  28. - CDXL demuxer and decoder
  29. - Apple ProRes encoder
  30. - Sun Rasterfile Encoder
  31. - remove libpostproc
  32. - ID3v2 attached pictures reading and writing
  33. - WMA Lossless decoder
  34. - XBM encoder
  35. - RealAudio Lossless decoder
  36. - ZeroCodec decoder
  37. - drop support for avconv without libavfilter
  38. - add libavresample audio conversion library
  39. - audio filters support in libavfilter and avconv
  40. - add fps filter
  41. - audio split filter
  42. - audio mix filter
  43. - avprobe output is now standard INI or JSON. The old format can still
  44. be used with -of old.
  45. - Indeo Audio decoder
  46. - channelsplit audio filter
  47. - RTMPT protocol support
  48. - iLBC encoding/decoding via libilbc
  49. - Microsoft Screen 1 decoder
  50. - join audio filter
  51. - audio channel mapping filter
  52. - Microsoft ATC Screen decoder
  53. - RTSP listen mode
  54. - TechSmith Screen Codec 2 decoder
  55. - AAC encoding via libfdk-aac
  56. - Microsoft Expression Encoder Screen decoder
  57. - RTMPS protocol support
  58. - RTMPTS protocol support
  59. - JPEG 2000 encoding support through OpenJPEG
  60. - G.723.1 demuxer and decoder
  61. - RTMPE protocol support
  62. - RTMPTE protocol support
  63. - Canopus Lossless Codec decoder
  64. - avconv -shortest option is now per-output file,
  65. -pass and -passlogfile are now per-output stream
  66. - Ut Video encoder
  67. - Microsoft Screen 2 decoder
  68. - RTP depacketization of JPEG
  69. - Smooth Streaming live segmenter muxer
  70. - RTP packetization of JPEG
  71. - Opus decoder and encoder using libopus
  72. - remove -same_quant, it hasn't worked for years
  73. - support for building with MSVC
  74. version 0.8:
  75. - GSM audio parser
  76. - SMJPEG muxer
  77. version 0.8_beta2:
  78. - Automatic thread count based on detection number of (available) CPU cores
  79. - Deprecate libpostproc. If desired, the switch --enable-postproc will
  80. enable it but it may be removed in a later Libav release.
  81. - rv34: frame-level multi-threading
  82. - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
  83. version 0.8_beta1:
  84. - BWF muxer
  85. - Flash Screen Video 2 decoder
  86. - ffplay/ffprobe/ffserver renamed to avplay/avprobe/avserver
  87. - ffmpeg deprecated, added avconv, which is almost the same for now, except
  88. for a few incompatible changes in the options, which will hopefully make them
  89. easier to use. The changes are:
  90. * The options placement is now strictly enforced! While in theory the
  91. options for ffmpeg should be given in [input options] -i INPUT [output
  92. options] OUTPUT order, in practice it was possible to give output options
  93. before the -i and it mostly worked. Except when it didn't - the behavior was
  94. a bit inconsistent. In avconv, it is not possible to mix input and output
  95. options. All non-global options are reset after an input or output filename.
  96. * All per-file options are now truly per-file - they apply only to the next
  97. input or output file and specifying different values for different files
  98. will now work properly (notably -ss and -t options).
  99. * All per-stream options are now truly per-stream - it is possible to
  100. specify which stream(s) should a given option apply to. See the Stream
  101. specifiers section in the avconv manual for details.
  102. * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
  103. sense that they're specified after the output filename instead of before,
  104. like all other options. In avconv this irregularity is removed, all options
  105. apply to the next input or output file.
  106. * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
  107. irregular and highly confusing, they were also redundant. In avconv the -map
  108. option will create new streams in the output file and map input streams to
  109. them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
  110. each stream in the first input file.
  111. * The -map option now has slightly different and more powerful syntax:
  112. + Colons (':') are used to separate file index/stream type/stream index
  113. instead of dots. Comma (',') is used to separate the sync stream instead
  114. of colon.. This is done for consistency with other options.
  115. + It's possible to specify stream type. E.g. -map 0:a:2 creates an
  116. output stream from the third input audio stream.
  117. + Omitting the stream index now maps all the streams of the given type,
  118. not just the first. E.g. -map 0:s creates output streams for all the
  119. subtitle streams in the first input file.
  120. + Since -map can now match multiple streams, negative mappings were
  121. introduced. Negative mappings disable some streams from an already
  122. defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
  123. all the stream in the first input file, except for the second audio
  124. stream'.
  125. * There is a new option -c (or -codec) for choosing the decoder/encoder to
  126. use, which allows to precisely specify target stream(s) consistently with
  127. other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
  128. libvorbis sets the codec for the first audio stream and -c copy copies all
  129. the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
  130. aliases to -c:v/a/s
  131. * It is now possible to precisely specify which stream should an AVOption
  132. apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
  133. -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
  134. syntax is deprecated and will stop working soon.
  135. * -map_chapters now takes only an input file index and applies to the next
  136. output file. This is consistent with how all the other options work.
  137. * -map_metadata now takes only an input metadata specifier and applies to
  138. the next output file. Output metadata specifier is now part of the option
  139. name, similarly to the AVOptions/map/codec feature above.
  140. * -metadata can now be used to set metadata on streams and chapters, e.g.
  141. -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
  142. This made -vlang/-alang/-slang options redundant, so they were removed.
  143. * -qscale option now uses stream specifiers and applies to all streams, not
  144. just video. I.e. plain -qscale number would now apply to all streams. To get
  145. the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
  146. and -aq is now an alias for -q:a.
  147. * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
  148. uses stream specifiers. Use -bsf:v/a/s instead of the old options.
  149. * -itsscale option now uses stream specifiers, so its argument is only the
  150. scale parameter.
  151. * -intra option was removed, use -g 0 for the same effect.
  152. * -psnr option was removed, use -flags +psnr for the same effect.
  153. * -vf option is now an alias to the new -filter option, which uses stream specifiers.
  154. * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
  155. * -vtag/-atag/-stag options are now aliases to the new -tag option.
  156. - XMV demuxer
  157. - Windows Media Image decoder
  158. - LATM muxer/demuxer
  159. - showinfo filter
  160. - split filter
  161. - libcdio-paranoia input device for audio CD grabbing
  162. - select filter
  163. - Apple ProRes decoder
  164. - CELT in Ogg demuxing
  165. - VC-1 interlaced decoding
  166. - lut, lutrgb, and lutyuv filters
  167. - boxblur filter
  168. - Ut Video decoder
  169. - Speex encoding via libspeex
  170. - 4:2:2 H.264 decoding support
  171. - 4:2:2 and 4:4:4 H.264 encoding with libx264
  172. - Pulseaudio input device
  173. - replacement Indeo 3 decoder
  174. - TLS/SSL and HTTPS protocol support
  175. - AVOptions API rewritten and documented
  176. - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
  177. AVCodecContext deprecated. Codec private options should be used instead.
  178. - Properly working defaults in libx264 wrapper, support for native presets.
  179. - Encrypted OMA files support
  180. - Discworld II BMV decoding support
  181. - VBLE Decoder
  182. - OS X Video Decoder Acceleration (VDA) support
  183. - CRI ADX audio format muxer and demuxer
  184. - Playstation Portable PMP format demuxer
  185. - PCM format support in OMA demuxer
  186. - CLJR encoder
  187. - Dxtory capture format decoder
  188. - v410 QuickTime uncompressed 4:4:4 10-bit encoder and decoder
  189. - OpenMG Audio muxer
  190. - Simple segmenting muxer
  191. - Indeo 4 decoder
  192. - SMJPEG demuxer
  193. version 0.7:
  194. - E-AC-3 audio encoder
  195. - ac3enc: add channel coupling support
  196. - floating-point sample format support for (E-)AC-3, DCA, AAC, Vorbis decoders
  197. - H.264/MPEG frame-level multithreading
  198. - av_metadata_* functions renamed to av_dict_* and moved to libavutil
  199. - 4:4:4 H.264 decoding support
  200. - 10-bit H.264 optimizations for x86
  201. - bump libswscale for recently reported ABI break
  202. version 0.7_beta2:
  203. - VP8 frame-level multithreading
  204. - NEON optimizations for VP8
  205. - removed a lot of deprecated API cruft
  206. - FFT and IMDCT optimizations for AVX (Sandy Bridge) processors
  207. - DPX image encoder
  208. - SMPTE 302M AES3 audio decoder
  209. - ffmpeg no longer quits after the 'q' key is pressed; use 'ctrl+c' instead
  210. - 9bit and 10bit per sample support in the H.264 decoder
  211. version 0.7_beta1:
  212. - WebM support in Matroska de/muxer
  213. - low overhead Ogg muxing
  214. - MMS-TCP support
  215. - VP8 de/encoding via libvpx
  216. - Demuxer for On2's IVF format
  217. - Pictor/PC Paint decoder
  218. - HE-AAC v2 decoder
  219. - libfaad2 wrapper removed
  220. - DTS-ES extension (XCh) decoding support
  221. - native VP8 decoder
  222. - RTSP tunneling over HTTP
  223. - RTP depacketization of SVQ3
  224. - -strict inofficial replaced by -strict unofficial
  225. - ffplay -exitonkeydown and -exitonmousedown options added
  226. - native GSM / GSM MS decoder
  227. - RTP depacketization of QDM2
  228. - ANSI/ASCII art playback system
  229. - Lego Mindstorms RSO de/muxer
  230. - SubRip subtitle file muxer and demuxer
  231. - Chinese AVS encoding via libxavs
  232. - ffprobe -show_packets option added
  233. - RTP packetization of Theora and Vorbis
  234. - RTP depacketization of MP4A-LATM
  235. - RTP packetization and depacketization of VP8
  236. - hflip filter
  237. - Apple HTTP Live Streaming demuxer
  238. - a64 codec
  239. - MMS-HTTP support
  240. - G.722 ADPCM audio encoder/decoder
  241. - R10k video decoder
  242. - ocv_smooth filter
  243. - frei0r wrapper filter
  244. - change crop filter syntax to width:height:x:y
  245. - make the crop filter accept parametric expressions
  246. - make ffprobe accept AVFormatContext options
  247. - yadif filter
  248. - blackframe filter
  249. - Demuxer for Leitch/Harris' VR native stream format (LXF)
  250. - RTP depacketization of the X-QT QuickTime format
  251. - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
  252. - cropdetect filter
  253. - ffmpeg -crop* options removed
  254. - transpose filter added
  255. - ffmpeg -force_key_frames option added
  256. - demuxer for receiving raw rtp:// URLs without an SDP description
  257. - single stream LATM/LOAS decoder
  258. - setpts filter added
  259. - Win64 support for optimized x86 assembly functions
  260. - MJPEG/AVI1 to JPEG/JFIF bitstream filter
  261. - ASS subtitle encoder and decoder
  262. - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
  263. - overlay filter added
  264. - rename aspect filter to setdar, and pixelaspect to setsar
  265. - IEC 61937 demuxer
  266. - Mobotix .mxg demuxer
  267. - frei0r source added
  268. - hqdn3d filter added
  269. - RTP depacketization of QCELP
  270. - FLAC parser added
  271. - gradfun filter added
  272. - AMR-WB decoder
  273. - replace the ocv_smooth filter with a more generic ocv filter
  274. - Windows Televison (WTV) demuxer
  275. - FFmpeg metadata format muxer and demuxer
  276. - SubRip (srt) subtitle decoder
  277. - floating-point AC-3 encoder added
  278. - Lagarith decoder
  279. - ffmpeg -copytb option added
  280. - IVF muxer added
  281. - Wing Commander IV movies decoder added
  282. - movie source added
  283. - Bink version 'b' audio and video decoder
  284. - Bitmap Brothers JV playback system
  285. - Apple HTTP Live Streaming protocol handler
  286. - sndio support for playback and record
  287. - Linux framebuffer input device added
  288. - Chronomaster DFA decoder
  289. - Mobotix MxPEG decoder
  290. - AAC encoding via libvo-aacenc
  291. - AMR-WB encoding via libvo-amrwbenc
  292. - xWMA demuxer
  293. - fieldorder video filter added
  294. version 0.6:
  295. - PB-frame decoding for H.263
  296. - deprecated vhook subsystem removed
  297. - deprecated old scaler removed
  298. - VQF demuxer
  299. - Alpha channel scaler
  300. - PCX encoder
  301. - RTP packetization of H.263
  302. - RTP packetization of AMR
  303. - RTP depacketization of Vorbis
  304. - CorePNG decoding support
  305. - Cook multichannel decoding support
  306. - introduced avlanguage helpers in libavformat
  307. - 8088flex TMV demuxer and decoder
  308. - per-stream language-tags extraction in asfdec
  309. - V210 decoder and encoder
  310. - remaining GPL parts in AC-3 decoder converted to LGPL
  311. - QCP demuxer
  312. - SoX native format muxer and demuxer
  313. - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
  314. - DPX image decoder
  315. - Electronic Arts Madcow decoder
  316. - DivX (XSUB) subtitle encoder
  317. - nonfree libamr support for AMR-NB/WB decoding/encoding removed
  318. - experimental AAC encoder
  319. - RTP depacketization of ASF and RTSP from WMS servers
  320. - RTMP support in libavformat
  321. - noX handling for OPT_BOOL X options
  322. - Wave64 demuxer
  323. - IEC-61937 compatible Muxer
  324. - TwinVQ decoder
  325. - Bluray (PGS) subtitle decoder
  326. - LPCM support in MPEG-TS (HDMV RID as found on Blu-ray disks)
  327. - WMA Pro decoder
  328. - Core Audio Format demuxer
  329. - Atrac1 decoder
  330. - MD STUDIO audio demuxer
  331. - RF64 support in WAV demuxer
  332. - MPEG-4 Audio Lossless Coding (ALS) decoder
  333. - -formats option split into -formats, -codecs, -bsfs, and -protocols
  334. - IV8 demuxer
  335. - CDG demuxer and decoder
  336. - R210 decoder
  337. - Auravision Aura 1 and 2 decoders
  338. - Deluxe Paint Animation playback system
  339. - SIPR decoder
  340. - Adobe Filmstrip muxer and demuxer
  341. - RTP depacketization of H.263
  342. - Bink demuxer and audio/video decoders
  343. - enable symbol versioning by default for linkers that support it
  344. - IFF PBM/ILBM bitmap decoder
  345. - concat protocol
  346. - Indeo 5 decoder
  347. - RTP depacketization of AMR
  348. - WMA Voice decoder
  349. - ffprobe tool
  350. - AMR-NB decoder
  351. - RTSP muxer
  352. - HE-AAC v1 decoder
  353. - Kega Game Video (KGV1) decoder
  354. - VorbisComment writing for FLAC, Ogg FLAC and Ogg Speex files
  355. - RTP depacketization of Theora
  356. - HTTP Digest authentication
  357. - RTMP/RTMPT/RTMPS/RTMPE/RTMPTE protocol support via librtmp
  358. - Psygnosis YOP demuxer and video decoder
  359. - spectral extension support in the E-AC-3 decoder
  360. - unsharp video filter
  361. - RTP hinting in the mov/3gp/mp4 muxer
  362. - Dirac in Ogg demuxing
  363. - seek to keyframes in Ogg
  364. - 4:2:2 and 4:4:4 Theora decoding
  365. - 35% faster VP3/Theora decoding
  366. - faster AAC decoding
  367. - faster H.264 decoding
  368. - RealAudio 1.0 (14.4K) encoder
  369. version 0.5:
  370. - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
  371. - TechSmith Camtasia (TSCC) video decoder
  372. - IBM Ultimotion (ULTI) video decoder
  373. - Sierra Online audio file demuxer and decoder
  374. - Apple QuickDraw (qdrw) video decoder
  375. - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
  376. - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
  377. - Miro VideoXL (VIXL) video decoder
  378. - H.261 video encoder
  379. - QPEG video decoder
  380. - Nullsoft Video (NSV) file demuxer
  381. - Shorten audio decoder
  382. - LOCO video decoder
  383. - Apple Lossless Audio Codec (ALAC) decoder
  384. - Winnov WNV1 video decoder
  385. - Autodesk Animator Studio Codec (AASC) decoder
  386. - Indeo 2 video decoder
  387. - Fraps FPS1 video decoder
  388. - Snow video encoder/decoder
  389. - Sonic audio encoder/decoder
  390. - Vorbis audio decoder
  391. - Macromedia ADPCM decoder
  392. - Duck TrueMotion 2 video decoder
  393. - support for decoding FLX and DTA extensions in FLIC files
  394. - H.264 custom quantization matrices support
  395. - ffserver fixed, it should now be usable again
  396. - QDM2 audio decoder
  397. - Real Cooker audio decoder
  398. - TrueSpeech audio decoder
  399. - WMA2 audio decoder fixed, now all files should play correctly
  400. - RealAudio 14.4 and 28.8 decoders fixed
  401. - JPEG-LS decoder
  402. - build system improvements
  403. - tabs and trailing whitespace removed from the codebase
  404. - CamStudio video decoder
  405. - AIFF/AIFF-C audio format, encoding and decoding
  406. - ADTS AAC file reading and writing
  407. - Creative VOC file reading and writing
  408. - American Laser Games multimedia (*.mm) playback system
  409. - Zip Motion Blocks Video decoder
  410. - improved Theora/VP3 decoder
  411. - True Audio (TTA) decoder
  412. - AVS demuxer and video decoder
  413. - JPEG-LS encoder
  414. - Smacker demuxer and decoder
  415. - NuppelVideo/MythTV demuxer and RTjpeg decoder
  416. - KMVC decoder
  417. - MPEG-2 intra VLC support
  418. - MPEG-2 4:2:2 encoder
  419. - Flash Screen Video decoder
  420. - GXF demuxer
  421. - Chinese AVS decoder
  422. - GXF muxer
  423. - MXF demuxer
  424. - VC-1/WMV3/WMV9 video decoder
  425. - MacIntel support
  426. - AVISynth support
  427. - VMware video decoder
  428. - VP5 video decoder
  429. - VP6 video decoder
  430. - WavPack lossless audio decoder
  431. - Targa (.TGA) picture decoder
  432. - Vorbis audio encoder
  433. - Delphine Software .cin demuxer/audio and video decoder
  434. - Tiertex .seq demuxer/video decoder
  435. - MTV demuxer
  436. - TIFF picture encoder and decoder
  437. - GIF picture decoder
  438. - Intel Music Coder decoder
  439. - Zip Motion Blocks Video encoder
  440. - Musepack decoder
  441. - Flash Screen Video encoder
  442. - Theora encoding via libtheora
  443. - BMP encoder
  444. - WMA encoder
  445. - GSM-MS encoder and decoder
  446. - DCA decoder
  447. - DXA demuxer and decoder
  448. - DNxHD decoder
  449. - Gamecube movie (.THP) playback system
  450. - Blackfin optimizations
  451. - Interplay C93 demuxer and video decoder
  452. - Bethsoft VID demuxer and video decoder
  453. - CRYO APC demuxer
  454. - Atrac3 decoder
  455. - V.Flash PTX decoder
  456. - RoQ muxer, RoQ audio encoder
  457. - Renderware TXD demuxer and decoder
  458. - extern C declarations for C++ removed from headers
  459. - sws_flags command line option
  460. - codebook generator
  461. - RoQ video encoder
  462. - QTRLE encoder
  463. - OS/2 support removed and restored again
  464. - AC-3 decoder
  465. - NUT muxer
  466. - additional SPARC (VIS) optimizations
  467. - Matroska muxer
  468. - slice-based parallel H.264 decoding
  469. - Monkey's Audio demuxer and decoder
  470. - AMV audio and video decoder
  471. - DNxHD encoder
  472. - H.264 PAFF decoding
  473. - Nellymoser ASAO decoder
  474. - Beam Software SIFF demuxer and decoder
  475. - libvorbis Vorbis decoding removed in favor of native decoder
  476. - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
  477. - Ogg (Theora, Vorbis and FLAC) muxer
  478. - The "device" muxers and demuxers are now in a new libavdevice library
  479. - PC Paintbrush PCX decoder
  480. - Sun Rasterfile decoder
  481. - TechnoTrend PVA demuxer
  482. - Linux Media Labs MPEG-4 (LMLM4) demuxer
  483. - AVM2 (Flash 9) SWF muxer
  484. - QT variant of IMA ADPCM encoder
  485. - VFW grabber
  486. - iPod/iPhone compatible mp4 muxer
  487. - Mimic decoder
  488. - MSN TCP Webcam stream demuxer
  489. - RL2 demuxer / decoder
  490. - IFF demuxer
  491. - 8SVX audio decoder
  492. - non-recursive Makefiles
  493. - BFI demuxer
  494. - MAXIS EA XA (.xa) demuxer / decoder
  495. - BFI video decoder
  496. - OMA demuxer
  497. - MLP/TrueHD decoder
  498. - Electronic Arts CMV decoder
  499. - Motion Pixels Video decoder
  500. - Motion Pixels MVI demuxer
  501. - removed animated GIF decoder/demuxer
  502. - D-Cinema audio muxer
  503. - Electronic Arts TGV decoder
  504. - Apple Lossless Audio Codec (ALAC) encoder
  505. - AAC decoder
  506. - floating point PCM encoder/decoder
  507. - MXF muxer
  508. - DV100 AKA DVCPRO HD decoder and demuxer
  509. - E-AC-3 support added to AC-3 decoder
  510. - Nellymoser ASAO encoder
  511. - ASS and SSA demuxer and muxer
  512. - liba52 wrapper removed
  513. - SVQ3 watermark decoding support
  514. - Speex decoding via libspeex
  515. - Electronic Arts TGQ decoder
  516. - RV40 decoder
  517. - QCELP / PureVoice decoder
  518. - RV30 decoder
  519. - hybrid WavPack support
  520. - R3D REDCODE demuxer
  521. - ALSA support for playback and record
  522. - Electronic Arts TQI decoder
  523. - OpenJPEG based JPEG 2000 decoder
  524. - NC (NC4600) camera file demuxer
  525. - Gopher client support
  526. - MXF D-10 muxer
  527. - generic metadata API
  528. version 0.4.9-pre1:
  529. - DV encoder, DV muxer
  530. - Microsoft RLE video decoder
  531. - Microsoft Video-1 decoder
  532. - Apple Animation (RLE) decoder
  533. - Apple Graphics (SMC) decoder
  534. - Apple Video (RPZA) decoder
  535. - Cinepak decoder
  536. - Sega FILM (CPK) file demuxer
  537. - Westwood multimedia support (VQA & AUD files)
  538. - Id Quake II CIN playback support
  539. - 8BPS video decoder
  540. - FLIC playback support
  541. - RealVideo 2.0 (RV20) decoder
  542. - Duck TrueMotion v1 (DUCK) video decoder
  543. - Sierra VMD demuxer and video decoder
  544. - MSZH and ZLIB decoder support
  545. - SVQ1 video encoder
  546. - AMR-WB support
  547. - PPC optimizations
  548. - rate distortion optimal cbp support
  549. - rate distorted optimal ac prediction for MPEG-4
  550. - rate distorted optimal lambda->qp support
  551. - AAC encoding with libfaac
  552. - Sunplus JPEG codec (SP5X) support
  553. - use Lagrange multipler instead of QP for ratecontrol
  554. - Theora/VP3 decoding support
  555. - XA and ADX ADPCM codecs
  556. - export MPEG-2 active display area / pan scan
  557. - Add support for configuring with IBM XLC
  558. - floating point AAN DCT
  559. - initial support for zygo video (not complete)
  560. - RGB ffv1 support
  561. - new audio/video parser API
  562. - av_log() system
  563. - av_read_frame() and av_seek_frame() support
  564. - missing last frame fixes
  565. - seek by mouse in ffplay
  566. - noise reduction of DCT coefficients
  567. - H.263 OBMC & 4MV support
  568. - H.263 alternative inter vlc support
  569. - H.263 loop filter
  570. - H.263 slice structured mode
  571. - interlaced DCT support for MPEG-2 encoding
  572. - stuffing to stay above min_bitrate
  573. - MB type & QP visualization
  574. - frame stepping for ffplay
  575. - interlaced motion estimation
  576. - alternate scantable support
  577. - SVCD scan offset support
  578. - closed GOP support
  579. - SSE2 FDCT
  580. - quantizer noise shaping
  581. - G.726 ADPCM audio codec
  582. - MS ADPCM encoding
  583. - multithreaded/SMP motion estimation
  584. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  585. - multithreaded/SMP decoding for MPEG-2
  586. - FLAC decoder
  587. - Metrowerks CodeWarrior suppport
  588. - H.263+ custom pcf support
  589. - nicer output for 'ffmpeg -formats'
  590. - Matroska demuxer
  591. - SGI image format, encoding and decoding
  592. - H.264 loop filter support
  593. - H.264 CABAC support
  594. - nicer looking arrows for the motion vector visualization
  595. - improved VCD support
  596. - audio timestamp drift compensation
  597. - MPEG-2 YUV 422/444 support
  598. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  599. - better image scaling
  600. - H.261 support
  601. - correctly interleave packets during encoding
  602. - VIS optimized motion compensation
  603. - intra_dc_precision>0 encoding support
  604. - support reuse of motion vectors/MB types/field select values of the source video
  605. - more accurate deblock filter
  606. - padding support
  607. - many optimizations and bugfixes
  608. - FunCom ISS audio file demuxer and according ADPCM decoding
  609. version 0.4.8:
  610. - MPEG-2 video encoding (Michael)
  611. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  612. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  613. and Mario Brito)
  614. - Xan DPCM audio decoder (Mario Brito)
  615. - Interplay MVE playback subsystem (Mike Melanson)
  616. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  617. version 0.4.7:
  618. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  619. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  620. - current version now also compiles with older GCC (Fabrice)
  621. - 4X multimedia playback system including 4xm file demuxer (Mike
  622. Melanson), and 4X video and audio codecs (Michael)
  623. - Creative YUV (CYUV) decoder (Mike Melanson)
  624. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  625. than HuffYUV) (Michael)
  626. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  627. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  628. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  629. - ffplay has been replaced with a newer version which uses SDL (optionally)
  630. for multiplatform support (Fabrice)
  631. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  632. by anonymous
  633. - AMR format has been added (Johannes Carlsson)
  634. - 3GP support has been added (Johannes Carlsson)
  635. - VP3 codec has been added (Mike Melanson)
  636. - more MPEG-1/2 fixes
  637. - better multiplatform support, MS Visual Studio fixes (various)
  638. - AltiVec optimizations (Magnus Damn and others)
  639. - SH4 processor support has been added (BERO)
  640. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  641. - VOB streaming support (Brian Foley)
  642. - better MP3 autodetection (Andriy Rysin)
  643. - qpel encoding (Michael)
  644. - 4mv+b frames encoding finally fixed (Michael)
  645. - chroma ME (Michael)
  646. - 5 comparison functions for ME (Michael)
  647. - B-frame encoding speedup (Michael)
  648. - WMV2 codec (unfinished - Michael)
  649. - user specified diamond size for EPZS (Michael)
  650. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  651. - ASV2 codec (Michael)
  652. - CLJR decoder (Alex)
  653. .. And lots more new enhancements and fixes.
  654. version 0.4.6:
  655. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  656. from scratch
  657. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  658. - fix quantization bug in AC3 encoder
  659. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  660. - added prototype ffplay program
  661. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  662. - bug fix on MCBPC tables of H.263 (Juanjo)
  663. - bug fix on DC coefficients of H.263 (Juanjo)
  664. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  665. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  666. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  667. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  668. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  669. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  670. - added first regression tests
  671. - added MPEG-2 TS demuxer
  672. - new demux API for libav
  673. - more accurate and faster IDCT (Michael)
  674. - faster and entropy-controlled motion search (Michael)
  675. - two pass video encoding (Michael)
  676. - new video rate control (Michael)
  677. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  678. - great performance improvement of video encoders and decoders (Michael)
  679. - new and faster bit readers and vlc parsers (Michael)
  680. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  681. - added DV video decoder
  682. - preliminary RTP/RTSP support in ffserver and libavformat
  683. - H.263+ AIC decoding/encoding support (Juanjo)
  684. - VCD MPEG-PS mode (Juanjo)
  685. - PSNR stuff (Juanjo)
  686. - simple stats output (Juanjo)
  687. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  688. version 0.4.5:
  689. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  690. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  691. - added configure system (actually a small shell script)
  692. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  693. Michael Hipp (temporary solution - waiting for integer only
  694. decoder)
  695. - fixed VIDIOCSYNC interrupt
  696. - added Intel H.263 decoding support ('I263' AVI fourCC)
  697. - added Real Video 1.0 decoding (needs further testing)
  698. - simplified image formats again. Added PGM format (=grey
  699. pgm). Renamed old PGM to PGMYUV.
  700. - fixed msmpeg4 slice issues (tell me if you still find problems)
  701. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  702. - added support for MPlayer interface
  703. - added macroblock skip optimization
  704. - added MJPEG decoder
  705. - added mmx/mmxext IDCT from libmpeg2
  706. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  707. <celer at shell.scrypt.net>)
  708. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  709. - added deinterlacing option
  710. - MPEG-1/2 fixes
  711. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  712. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  713. - Windows porting of file converter
  714. - added MJPEG raw format (input/ouput)
  715. - added JPEG image format support (input/output)
  716. version 0.4.4:
  717. - fixed some std header definitions (Bjorn Lindgren
  718. <bjorn.e.lindgren at telia.com>).
  719. - added MPEG demuxer (MPEG-1 and 2 compatible).
  720. - added ASF demuxer
  721. - added prototype RM demuxer
  722. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  723. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  724. header does not include them)
  725. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  726. play them (only tested video)
  727. - fixed H.263 white bug
  728. - fixed phase rounding in img resample filter
  729. - add MMX code for polyphase img resample filter
  730. - added CPU autodetection
  731. - added generic title/author/copyright/comment string handling (ASF and RM
  732. use them)
  733. - added SWF demux to extract MP3 track (not usable yet because no MP3
  734. decoder)
  735. - added fractional frame rate support
  736. - codecs are no longer searched by read_header() (should fix ffserver
  737. segfault)
  738. version 0.4.3:
  739. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  740. - fixed raw yuv output
  741. - added motion rounding support in MPEG-4
  742. - fixed motion bug rounding in MSMPEG4
  743. - added B-frame handling in video core
  744. - added full MPEG-1 decoding support
  745. - added partial (frame only) MPEG-2 support
  746. - changed the FOURCC code for H.263 to "U263" to be able to see the
  747. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  748. this +codec ;) (JuanJo).
  749. - Halfpel motion estimation after MB type selection (JuanJo)
  750. - added pgm and .Y.U.V output format
  751. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  752. output.
  753. - added pgmpipe I/O format (original patch from Martin Aumueller
  754. <lists at reserv.at>, but changed completely since we use a format
  755. instead of a protocol)
  756. version 0.4.2:
  757. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  758. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  759. missing. MSMPEG4 support is complete.
  760. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  761. can decode ffmpeg MPEGs :-)).
  762. - added libavcodec API documentation (see apiexample.c).
  763. - fixed image polyphase bug (the bottom of some images could be
  764. greenish)
  765. - added support for non clipped motion vectors (decoding only)
  766. and image sizes non-multiple of 16
  767. - added support for AC prediction (decoding only)
  768. - added file overwrite confirmation (can be disabled with -y)
  769. - added custom size picture to H.263 using H.263+ (Juanjo)
  770. version 0.4.1:
  771. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  772. of AVI and ASF to DIV3.
  773. - added -me option to set motion estimation method
  774. (default=log). suppressed redundant -hq option.
  775. - added options -acodec and -vcodec to force a given codec (useful for
  776. AVI for example)
  777. - fixed -an option
  778. - improved dct_quantize speed
  779. - factorized some motion estimation code
  780. version 0.4.0:
  781. - removing grab code from ffserver and moved it to ffmpeg. Added
  782. multistream support to ffmpeg.
  783. - added timeshifting support for live feeds (option ?date=xxx in the
  784. URL)
  785. - added high quality image resize code with polyphase filter (need
  786. mmx/see optimization). Enable multiple image size support in ffserver.
  787. - added multi live feed support in ffserver
  788. - suppressed master feature from ffserver (it should be done with an
  789. external program which opens the .ffm url and writes it to another
  790. ffserver)
  791. - added preliminary support for video stream parsing (WAV and AVI half
  792. done). Added proper support for audio/video file conversion in
  793. ffmpeg.
  794. - added preliminary support for video file sending from ffserver
  795. - redesigning I/O subsystem: now using URL based input and output
  796. (see avio.h)
  797. - added WAV format support
  798. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  799. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  800. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  801. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  802. - added new motion estimation algorithms, log and phods (Juanjo)
  803. - changed directories: libav for format handling, libavcodec for
  804. codecs
  805. version 0.3.4:
  806. - added stereo in MPEG audio encoder
  807. version 0.3.3:
  808. - added 'high quality' mode which use motion vectors. It can be used in
  809. real time at low resolution.
  810. - fixed rounding problems which caused quality problems at high
  811. bitrates and large GOP size
  812. version 0.3.2: small fixes
  813. - ASF fixes
  814. - put_seek bug fix
  815. version 0.3.1: added avi/divx support
  816. - added AVI support
  817. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  818. - added sound for flash format (not tested)
  819. version 0.3: initial public release