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.

934 lines
33KB

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