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.

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