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.

808 lines
29KB

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