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.

894 lines
31KB

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