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.

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