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.

885 lines
31KB

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