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.

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