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.

920 lines
32KB

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