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.

825 lines
30KB

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