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.

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