Changelog 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149
  1. Entries are sorted chronologically from oldest to youngest within each release,
  2. releases are sorted from youngest to oldest.
  3. version 2.0:
  4. - curves filter
  5. - reference-counting for AVFrame and AVPacket data
  6. - ffmpeg now fails when input options are used for output file
  7. or vice versa
  8. - support for Monkey's Audio versions from 3.93
  9. - perms and aperms filters
  10. - audio filtering support in ffplay
  11. - 10% faster aac encoding on x86 and MIPS
  12. - sine audio filter source
  13. - WebP demuxing and decoding support
  14. - new ffmpeg options -filter_script and -filter_complex_script, which allow a
  15. filtergraph description to be read from a file
  16. - OpenCL support
  17. - audio phaser filter
  18. - separatefields filter
  19. - libquvi demuxer
  20. - uniform options syntax across all filters
  21. - telecine filter
  22. - new interlace filter
  23. - smptehdbars source
  24. - inverse telecine filters (fieldmatch and decimate)
  25. - colorbalance filter
  26. - colorchannelmixer filter
  27. - The matroska demuxer can now output proper verbatim ASS packets. It will
  28. become the default at the next libavformat major bump.
  29. - decent native animated GIF encoding
  30. - asetrate filter
  31. - interleave filter
  32. - timeline editing with filters
  33. - vidstabdetect and vidstabtransform filters for video stabilization using
  34. the vid.stab library
  35. - astats filter
  36. - trim and atrim filters
  37. - ffmpeg -t and -ss (output-only) options are now sample-accurate when
  38. transcoding audio
  39. - Matroska muxer can now put the index at the beginning of the file.
  40. - extractplanes filter
  41. - avectorscope filter
  42. - ADPCM DTK decoder
  43. - ADP demuxer
  44. - RSD demuxer
  45. - RedSpark demuxer
  46. - ADPCM IMA Radical decoder
  47. - zmq filters
  48. - DCT denoiser filter (dctdnoiz)
  49. - Wavelet denoiser filter ported from libmpcodecs as owdenoise (formerly "ow")
  50. - Apple Intermediate Codec decoder
  51. - Escape 130 video decoder
  52. - FTP protocol support
  53. - V4L2 output device
  54. - 3D LUT filter (lut3d)
  55. - SMPTE 302M audio encoder
  56. - support for slice multithreading in libavfilter
  57. - Hald CLUT support (generation and filtering)
  58. - VC-1 interlaced B-frame support
  59. - support for WavPack muxing (raw and in Matroska)
  60. - XVideo output device
  61. - vignette filter
  62. - True Audio (TTA) encoder
  63. - Go2Webinar decoder
  64. - mcdeint filter ported from libmpcodecs
  65. - sab filter ported from libmpcodecs
  66. - ffprobe -show_chapters option
  67. - WavPack encoding through libwavpack
  68. - rotate filter
  69. - spp filter ported from libmpcodecs
  70. - libgme support
  71. - psnr filter
  72. version 1.2:
  73. - VDPAU hardware acceleration through normal hwaccel
  74. - SRTP support
  75. - Error diffusion dither in Swscale
  76. - Chained Ogg support
  77. - Theora Midstream reconfiguration support
  78. - EVRC decoder
  79. - audio fade filter
  80. - filtering audio with unknown channel layout
  81. - allpass, bass, bandpass, bandreject, biquad, equalizer, highpass, lowpass
  82. and treble audio filter
  83. - improved showspectrum filter, with multichannel support and sox-like colors
  84. - histogram filter
  85. - tee muxer
  86. - il filter ported from libmpcodecs
  87. - support ID3v2 tags in ASF files
  88. - encrypted TTA stream decoding support
  89. - RF64 support in WAV muxer
  90. - noise filter ported from libmpcodecs
  91. - Subtitles character encoding conversion
  92. - blend filter
  93. - stereo3d filter ported from libmpcodecs
  94. version 1.1:
  95. - stream disposition information printing in ffprobe
  96. - filter for loudness analysis following EBU R128
  97. - Opus encoder using libopus
  98. - ffprobe -select_streams option
  99. - Pinnacle TARGA CineWave YUV16 decoder
  100. - TAK demuxer, decoder and parser
  101. - DTS-HD demuxer
  102. - remove -same_quant, it hasn't worked for years
  103. - FFM2 support
  104. - X-Face image encoder and decoder
  105. - 24-bit FLAC encoding
  106. - multi-channel ALAC encoding up to 7.1
  107. - metadata (INFO tag) support in WAV muxer
  108. - subtitles raw text decoder
  109. - support for building DLLs using MSVC
  110. - LVF demuxer
  111. - ffescape tool
  112. - metadata (info chunk) support in CAF muxer
  113. - field filter ported from libmpcodecs
  114. - AVR demuxer
  115. - geq filter ported from libmpcodecs
  116. - remove ffserver daemon mode
  117. - AST muxer/demuxer
  118. - new expansion syntax for drawtext
  119. - BRender PIX image decoder
  120. - ffprobe -show_entries option
  121. - ffprobe -sections option
  122. - ADPCM IMA Dialogic decoder
  123. - BRSTM demuxer
  124. - animated GIF decoder and demuxer
  125. - PVF demuxer
  126. - subtitles filter
  127. - IRCAM muxer/demuxer
  128. - Paris Audio File demuxer
  129. - Virtual concatenation demuxer
  130. - VobSub demuxer
  131. - JSON captions for TED talks decoding support
  132. - SOX Resampler support in libswresample
  133. - aselect filter
  134. - SGI RLE 8-bit decoder
  135. - Silicon Graphics Motion Video Compressor 1 & 2 decoder
  136. - Silicon Graphics Movie demuxer
  137. - apad filter
  138. - Resolution & pixel format change support with multithreading for H.264
  139. - documentation split into per-component manuals
  140. - pp (postproc) filter ported from MPlayer
  141. - NIST Sphere demuxer
  142. - MPL2, VPlayer, MPlayer, AQTitle, PJS and SubViewer v1 subtitles demuxers and decoders
  143. - Sony Wave64 muxer
  144. - adobe and limelight publisher authentication in RTMP
  145. - data: URI scheme
  146. - support building on the Plan 9 operating system
  147. - kerndeint filter ported from MPlayer
  148. - histeq filter ported from VirtualDub
  149. - Megalux Frame demuxer
  150. - 012v decoder
  151. - Improved AVC Intra decoding support
  152. version 1.0:
  153. - INI and flat output in ffprobe
  154. - Scene detection in libavfilter
  155. - Indeo Audio decoder
  156. - channelsplit audio filter
  157. - setnsamples audio filter
  158. - atempo filter
  159. - ffprobe -show_data option
  160. - RTMPT protocol support
  161. - iLBC encoding/decoding via libilbc
  162. - Microsoft Screen 1 decoder
  163. - join audio filter
  164. - audio channel mapping filter
  165. - Microsoft ATC Screen decoder
  166. - RTSP listen mode
  167. - TechSmith Screen Codec 2 decoder
  168. - AAC encoding via libfdk-aac
  169. - Microsoft Expression Encoder Screen decoder
  170. - RTMPS protocol support
  171. - RTMPTS protocol support
  172. - RTMPE protocol support
  173. - RTMPTE protocol support
  174. - showwaves and showspectrum filter
  175. - LucasArts SMUSH playback support
  176. - SAMI, RealText and SubViewer demuxers and decoders
  177. - Heart Of Darkness PAF playback support
  178. - iec61883 device
  179. - asettb filter
  180. - new option: -progress
  181. - 3GPP Timed Text encoder/decoder
  182. - GeoTIFF decoder support
  183. - ffmpeg -(no)stdin option
  184. - Opus decoder using libopus
  185. - caca output device using libcaca
  186. - alphaextract and alphamerge filters
  187. - concat filter
  188. - flite filter
  189. - Canopus Lossless Codec decoder
  190. - bitmap subtitles in filters (experimental and temporary)
  191. - MP2 encoding via TwoLAME
  192. - bmp parser
  193. - smptebars source
  194. - asetpts filter
  195. - hue filter
  196. - ICO muxer
  197. - SubRip encoder and decoder without embedded timing
  198. - edge detection filter
  199. - framestep filter
  200. - ffmpeg -shortest option is now per-output file
  201. -pass and -passlogfile are now per-output stream
  202. - volume measurement filter
  203. - Ut Video encoder
  204. - Microsoft Screen 2 decoder
  205. - smartblur filter ported from MPlayer
  206. - CPiA decoder
  207. - decimate filter ported from MPlayer
  208. - RTP depacketization of JPEG
  209. - Smooth Streaming live segmenter muxer
  210. - F4V muxer
  211. - sendcmd and asendcmd filters
  212. - WebVTT demuxer and decoder (simple tags supported)
  213. - RTP packetization of JPEG
  214. - faststart option in the MOV/MP4 muxer
  215. - support for building with MSVC
  216. version 0.11:
  217. - Fixes: CVE-2012-2772, CVE-2012-2774, CVE-2012-2775, CVE-2012-2776, CVE-2012-2777,
  218. CVE-2012-2779, CVE-2012-2782, CVE-2012-2783, CVE-2012-2784, CVE-2012-2785,
  219. CVE-2012-2786, CVE-2012-2787, CVE-2012-2788, CVE-2012-2789, CVE-2012-2790,
  220. CVE-2012-2791, CVE-2012-2792, CVE-2012-2793, CVE-2012-2794, CVE-2012-2795,
  221. CVE-2012-2796, CVE-2012-2797, CVE-2012-2798, CVE-2012-2799, CVE-2012-2800,
  222. CVE-2012-2801, CVE-2012-2802, CVE-2012-2803, CVE-2012-2804,
  223. - v408 Quicktime and Microsoft AYUV Uncompressed 4:4:4:4 encoder and decoder
  224. - setfield filter
  225. - CDXL demuxer and decoder
  226. - Apple ProRes encoder
  227. - ffprobe -count_packets and -count_frames options
  228. - Sun Rasterfile Encoder
  229. - ID3v2 attached pictures reading and writing
  230. - WMA Lossless decoder
  231. - bluray protocol
  232. - blackdetect filter
  233. - libutvideo encoder wrapper (--enable-libutvideo)
  234. - swapuv filter
  235. - bbox filter
  236. - XBM encoder and decoder
  237. - RealAudio Lossless decoder
  238. - ZeroCodec decoder
  239. - tile video filter
  240. - Metal Gear Solid: The Twin Snakes demuxer
  241. - OpenEXR image decoder
  242. - removelogo filter
  243. - drop support for ffmpeg without libavfilter
  244. - drawtext video filter: fontconfig support
  245. - ffmpeg -benchmark_all option
  246. - super2xsai filter ported from libmpcodecs
  247. - add libavresample audio conversion library for compatibility
  248. - MicroDVD decoder
  249. - Avid Meridien (AVUI) encoder and decoder
  250. - accept + prefix to -pix_fmt option to disable automatic conversions.
  251. - complete audio filtering in libavfilter and ffmpeg
  252. - add fps filter
  253. - vorbis parser
  254. - png parser
  255. - audio mix filter
  256. - ffv1: support (draft) version 1.3
  257. version 0.10:
  258. - Fixes: CVE-2011-3929, CVE-2011-3934, CVE-2011-3935, CVE-2011-3936,
  259. CVE-2011-3937, CVE-2011-3940, CVE-2011-3941, CVE-2011-3944,
  260. CVE-2011-3945, CVE-2011-3946, CVE-2011-3947, CVE-2011-3949,
  261. CVE-2011-3950, CVE-2011-3951, CVE-2011-3952
  262. - v410 Quicktime Uncompressed 4:4:4 10-bit encoder and decoder
  263. - SBaGen (SBG) binaural beats script demuxer
  264. - OpenMG Audio muxer
  265. - Timecode extraction in DV and MOV
  266. - thumbnail video filter
  267. - XML output in ffprobe
  268. - asplit audio filter
  269. - tinterlace video filter
  270. - astreamsync audio filter
  271. - amerge audio filter
  272. - ISMV (Smooth Streaming) muxer
  273. - GSM audio parser
  274. - SMJPEG muxer
  275. - XWD encoder and decoder
  276. - Automatic thread count based on detection number of (available) CPU cores
  277. - y41p Brooktree Uncompressed 4:1:1 12-bit encoder and decoder
  278. - ffprobe -show_error option
  279. - Avid 1:1 10-bit RGB Packer codec
  280. - v308 Quicktime Uncompressed 4:4:4 encoder and decoder
  281. - yuv4 libquicktime packed 4:2:0 encoder and decoder
  282. - ffprobe -show_frames option
  283. - silencedetect audio filter
  284. - ffprobe -show_program_version, -show_library_versions, -show_versions options
  285. - rv34: frame-level multi-threading
  286. - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
  287. - Improved PGS subtitle decoder
  288. - dumpgraph option to lavfi device
  289. - r210 and r10k encoders
  290. - ffwavesynth decoder
  291. - aviocat tool
  292. - ffeval tool
  293. version 0.9:
  294. - openal input device added
  295. - boxblur filter added
  296. - BWF muxer
  297. - Flash Screen Video 2 decoder
  298. - lavfi input device added
  299. - added avconv, which is almost the same for now, except
  300. for a few incompatible changes in the options, which will hopefully make them
  301. easier to use. The changes are:
  302. * The options placement is now strictly enforced! While in theory the
  303. options for ffmpeg should be given in [input options] -i INPUT [output
  304. options] OUTPUT order, in practice it was possible to give output options
  305. before the -i and it mostly worked. Except when it didn't - the behavior was
  306. a bit inconsistent. In avconv, it is not possible to mix input and output
  307. options. All non-global options are reset after an input or output filename.
  308. * All per-file options are now truly per-file - they apply only to the next
  309. input or output file and specifying different values for different files
  310. will now work properly (notably -ss and -t options).
  311. * All per-stream options are now truly per-stream - it is possible to
  312. specify which stream(s) should a given option apply to. See the Stream
  313. specifiers section in the avconv manual for details.
  314. * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
  315. sense that they're specified after the output filename instead of before,
  316. like all other options. In avconv this irregularity is removed, all options
  317. apply to the next input or output file.
  318. * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
  319. irregular and highly confusing, they were also redundant. In avconv the -map
  320. option will create new streams in the output file and map input streams to
  321. them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
  322. each stream in the first input file.
  323. * The -map option now has slightly different and more powerful syntax:
  324. + Colons (':') are used to separate file index/stream type/stream index
  325. instead of dots. Comma (',') is used to separate the sync stream instead
  326. of colon.. This is done for consistency with other options.
  327. + It's possible to specify stream type. E.g. -map 0:a:2 creates an
  328. output stream from the third input audio stream.
  329. + Omitting the stream index now maps all the streams of the given type,
  330. not just the first. E.g. -map 0:s creates output streams for all the
  331. subtitle streams in the first input file.
  332. + Since -map can now match multiple streams, negative mappings were
  333. introduced. Negative mappings disable some streams from an already
  334. defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
  335. all the stream in the first input file, except for the second audio
  336. stream'.
  337. * There is a new option -c (or -codec) for choosing the decoder/encoder to
  338. use, which allows to precisely specify target stream(s) consistently with
  339. other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
  340. libvorbis sets the codec for the first audio stream and -c copy copies all
  341. the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
  342. aliases to -c:v/a/s
  343. * It is now possible to precisely specify which stream should an AVOption
  344. apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
  345. -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
  346. syntax is deprecated and will stop working soon.
  347. * -map_chapters now takes only an input file index and applies to the next
  348. output file. This is consistent with how all the other options work.
  349. * -map_metadata now takes only an input metadata specifier and applies to
  350. the next output file. Output metadata specifier is now part of the option
  351. name, similarly to the AVOptions/map/codec feature above.
  352. * -metadata can now be used to set metadata on streams and chapters, e.g.
  353. -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
  354. This made -vlang/-alang/-slang options redundant, so they were removed.
  355. * -qscale option now uses stream specifiers and applies to all streams, not
  356. just video. I.e. plain -qscale number would now apply to all streams. To get
  357. the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
  358. and -aq is now an alias for -q:a.
  359. * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
  360. uses stream specifiers. Use -bsf:v/a/s instead of the old options.
  361. * -itsscale option now uses stream specifiers, so its argument is only the
  362. scale parameter.
  363. * -intra option was removed, use -g 0 for the same effect.
  364. * -psnr option was removed, use -flags +psnr for the same effect.
  365. * -vf option is now an alias to the new -filter option, which uses stream specifiers.
  366. * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
  367. * -vtag/-atag/-stag options are now aliases to the new -tag option.
  368. - XMV demuxer
  369. - LOAS demuxer
  370. - ashowinfo filter added
  371. - Windows Media Image decoder
  372. - amovie source added
  373. - LATM muxer/demuxer
  374. - Speex encoder via libspeex
  375. - JSON output in ffprobe
  376. - WTV muxer
  377. - Optional C++ Support (needed for libstagefright)
  378. - H.264 Decoding on Android via Stagefright
  379. - Prores decoder
  380. - BIN/XBIN/ADF/IDF text file decoder
  381. - aconvert audio filter added
  382. - audio support to lavfi input device added
  383. - libcdio-paranoia input device for audio CD grabbing
  384. - Apple ProRes decoder
  385. - CELT in Ogg demuxing
  386. - G.723.1 demuxer and decoder
  387. - libmodplug support (--enable-libmodplug)
  388. - VC-1 interlaced decoding
  389. - libutvideo wrapper (--enable-libutvideo)
  390. - aevalsrc audio source added
  391. - Ut Video decoder
  392. - Speex encoding via libspeex
  393. - 4:2:2 H.264 decoding support
  394. - 4:2:2 and 4:4:4 H.264 encoding with libx264
  395. - Pulseaudio input device
  396. - Prores encoder
  397. - Video Decoder Acceleration (VDA) HWAccel module.
  398. - replacement Indeo 3 decoder
  399. - new ffmpeg option: -map_channel
  400. - volume audio filter added
  401. - earwax audio filter added
  402. - libv4l2 support (--enable-libv4l2)
  403. - TLS/SSL and HTTPS protocol support
  404. - AVOptions API rewritten and documented
  405. - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
  406. AVCodecContext deprecated. Codec private options should be used instead.
  407. - Properly working defaults in libx264 wrapper, support for native presets.
  408. - Encrypted OMA files support
  409. - Discworld II BMV decoding support
  410. - VBLE Decoder
  411. - OS X Video Decoder Acceleration (VDA) support
  412. - compact and csv output in ffprobe
  413. - pan audio filter
  414. - IFF Amiga Continuous Bitmap (ACBM) decoder
  415. - ass filter
  416. - CRI ADX audio format muxer and demuxer
  417. - Playstation Portable PMP format demuxer
  418. - Microsoft Windows ICO demuxer
  419. - life source
  420. - PCM format support in OMA demuxer
  421. - CLJR encoder
  422. - new option: -report
  423. - Dxtory capture format decoder
  424. - cellauto source
  425. - Simple segmenting muxer
  426. - Indeo 4 decoder
  427. - SMJPEG demuxer
  428. version 0.8:
  429. - many many things we forgot because we rather write code than changelogs
  430. - WebM support in Matroska de/muxer
  431. - low overhead Ogg muxing
  432. - MMS-TCP support
  433. - VP8 de/encoding via libvpx
  434. - Demuxer for On2's IVF format
  435. - Pictor/PC Paint decoder
  436. - HE-AAC v2 decoder
  437. - HE-AAC v2 encoding with libaacplus
  438. - libfaad2 wrapper removed
  439. - DTS-ES extension (XCh) decoding support
  440. - native VP8 decoder
  441. - RTSP tunneling over HTTP
  442. - RTP depacketization of SVQ3
  443. - -strict inofficial replaced by -strict unofficial
  444. - ffplay -exitonkeydown and -exitonmousedown options added
  445. - native GSM / GSM MS decoder
  446. - RTP depacketization of QDM2
  447. - ANSI/ASCII art playback system
  448. - Lego Mindstorms RSO de/muxer
  449. - libavcore added (and subsequently removed)
  450. - SubRip subtitle file muxer and demuxer
  451. - Chinese AVS encoding via libxavs
  452. - ffprobe -show_packets option added
  453. - RTP packetization of Theora and Vorbis
  454. - RTP depacketization of MP4A-LATM
  455. - RTP packetization and depacketization of VP8
  456. - hflip filter
  457. - Apple HTTP Live Streaming demuxer
  458. - a64 codec
  459. - MMS-HTTP support
  460. - G.722 ADPCM audio encoder/decoder
  461. - R10k video decoder
  462. - ocv_smooth filter
  463. - frei0r wrapper filter
  464. - change crop filter syntax to width:height:x:y
  465. - make the crop filter accept parametric expressions
  466. - make ffprobe accept AVFormatContext options
  467. - yadif filter
  468. - blackframe filter
  469. - Demuxer for Leitch/Harris' VR native stream format (LXF)
  470. - RTP depacketization of the X-QT QuickTime format
  471. - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
  472. - cropdetect filter
  473. - ffmpeg -crop* options removed
  474. - transpose filter added
  475. - ffmpeg -force_key_frames option added
  476. - demuxer for receiving raw rtp:// URLs without an SDP description
  477. - single stream LATM/LOAS decoder
  478. - setpts filter added
  479. - Win64 support for optimized x86 assembly functions
  480. - MJPEG/AVI1 to JPEG/JFIF bitstream filter
  481. - ASS subtitle encoder and decoder
  482. - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
  483. - overlay filter added
  484. - rename aspect filter to setdar, and pixelaspect to setsar
  485. - IEC 61937 demuxer
  486. - Mobotix .mxg demuxer
  487. - frei0r source added
  488. - hqdn3d filter added
  489. - RTP depacketization of QCELP
  490. - FLAC parser added
  491. - gradfun filter added
  492. - AMR-WB decoder
  493. - replace the ocv_smooth filter with a more generic ocv filter
  494. - Windows Televison (WTV) demuxer
  495. - FFmpeg metadata format muxer and demuxer
  496. - SubRip (srt) subtitle encoder and decoder
  497. - floating-point AC-3 encoder added
  498. - Lagarith decoder
  499. - ffmpeg -copytb option added
  500. - IVF muxer added
  501. - Wing Commander IV movies decoder added
  502. - movie source added
  503. - Bink version 'b' audio and video decoder
  504. - Bitmap Brothers JV playback system
  505. - Apple HTTP Live Streaming protocol handler
  506. - sndio support for playback and record
  507. - Linux framebuffer input device added
  508. - Chronomaster DFA decoder
  509. - DPX image encoder
  510. - MicroDVD subtitle file muxer and demuxer
  511. - Playstation Portable PMP format demuxer
  512. - fieldorder video filter added
  513. - AAC encoding via libvo-aacenc
  514. - AMR-WB encoding via libvo-amrwbenc
  515. - xWMA demuxer
  516. - Mobotix MxPEG decoder
  517. - VP8 frame-multithreading
  518. - NEON optimizations for VP8
  519. - Lots of deprecated API cruft removed
  520. - fft and imdct optimizations for AVX (Sandy Bridge) processors
  521. - showinfo filter added
  522. - SMPTE 302M AES3 audio decoder
  523. - Apple Core Audio Format muxer
  524. - 9bit and 10bit per sample support in the H.264 decoder
  525. - 9bit and 10bit FFV1 encoding / decoding
  526. - split filter added
  527. - select filter added
  528. - sdl output device added
  529. - libmpcodecs video filter support (3 times as many filters than before)
  530. - mpeg2 aspect ratio dection fixed
  531. - libxvid aspect pickiness fixed
  532. - Frame multithreaded decoding
  533. - E-AC-3 audio encoder
  534. - ac3enc: add channel coupling support
  535. - floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.
  536. - H264/MPEG frame-level multi-threading
  537. - All av_metadata_* functions renamed to av_dict_* and moved to libavutil
  538. - 4:4:4 H.264 decoding support
  539. - 10-bit H.264 optimizations for x86
  540. - lut, lutrgb, and lutyuv filters added
  541. - buffersink libavfilter sink added
  542. - Bump libswscale for recently reported ABI break
  543. - New J2K encoder (via OpenJPEG)
  544. version 0.7:
  545. - all the changes for 0.8, but keeping API/ABI compatibility with the 0.6 release
  546. version 0.6:
  547. - PB-frame decoding for H.263
  548. - deprecated vhook subsystem removed
  549. - deprecated old scaler removed
  550. - VQF demuxer
  551. - Alpha channel scaler
  552. - PCX encoder
  553. - RTP packetization of H.263
  554. - RTP packetization of AMR
  555. - RTP depacketization of Vorbis
  556. - CorePNG decoding support
  557. - Cook multichannel decoding support
  558. - introduced avlanguage helpers in libavformat
  559. - 8088flex TMV demuxer and decoder
  560. - per-stream language-tags extraction in asfdec
  561. - V210 decoder and encoder
  562. - remaining GPL parts in AC-3 decoder converted to LGPL
  563. - QCP demuxer
  564. - SoX native format muxer and demuxer
  565. - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
  566. - DPX image decoder
  567. - Electronic Arts Madcow decoder
  568. - DivX (XSUB) subtitle encoder
  569. - nonfree libamr support for AMR-NB/WB decoding/encoding removed
  570. - experimental AAC encoder
  571. - RTP depacketization of ASF and RTSP from WMS servers
  572. - RTMP support in libavformat
  573. - noX handling for OPT_BOOL X options
  574. - Wave64 demuxer
  575. - IEC-61937 compatible Muxer
  576. - TwinVQ decoder
  577. - Bluray (PGS) subtitle decoder
  578. - LPCM support in MPEG-TS (HDMV RID as found on Blu-ray disks)
  579. - WMA Pro decoder
  580. - Core Audio Format demuxer
  581. - Atrac1 decoder
  582. - MD STUDIO audio demuxer
  583. - RF64 support in WAV demuxer
  584. - MPEG-4 Audio Lossless Coding (ALS) decoder
  585. - -formats option split into -formats, -codecs, -bsfs, and -protocols
  586. - IV8 demuxer
  587. - CDG demuxer and decoder
  588. - R210 decoder
  589. - Auravision Aura 1 and 2 decoders
  590. - Deluxe Paint Animation playback system
  591. - SIPR decoder
  592. - Adobe Filmstrip muxer and demuxer
  593. - RTP depacketization of H.263
  594. - Bink demuxer and audio/video decoders
  595. - enable symbol versioning by default for linkers that support it
  596. - IFF PBM/ILBM bitmap decoder
  597. - concat protocol
  598. - Indeo 5 decoder
  599. - RTP depacketization of AMR
  600. - WMA Voice decoder
  601. - ffprobe tool
  602. - AMR-NB decoder
  603. - RTSP muxer
  604. - HE-AAC v1 decoder
  605. - Kega Game Video (KGV1) decoder
  606. - VorbisComment writing for FLAC, Ogg FLAC and Ogg Speex files
  607. - RTP depacketization of Theora
  608. - HTTP Digest authentication
  609. - RTMP/RTMPT/RTMPS/RTMPE/RTMPTE protocol support via librtmp
  610. - Psygnosis YOP demuxer and video decoder
  611. - spectral extension support in the E-AC-3 decoder
  612. - unsharp video filter
  613. - RTP hinting in the mov/3gp/mp4 muxer
  614. - Dirac in Ogg demuxing
  615. - seek to keyframes in Ogg
  616. - 4:2:2 and 4:4:4 Theora decoding
  617. - 35% faster VP3/Theora decoding
  618. - faster AAC decoding
  619. - faster H.264 decoding
  620. - RealAudio 1.0 (14.4K) encoder
  621. version 0.5:
  622. - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
  623. - TechSmith Camtasia (TSCC) video decoder
  624. - IBM Ultimotion (ULTI) video decoder
  625. - Sierra Online audio file demuxer and decoder
  626. - Apple QuickDraw (qdrw) video decoder
  627. - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
  628. - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
  629. - Miro VideoXL (VIXL) video decoder
  630. - H.261 video encoder
  631. - QPEG video decoder
  632. - Nullsoft Video (NSV) file demuxer
  633. - Shorten audio decoder
  634. - LOCO video decoder
  635. - Apple Lossless Audio Codec (ALAC) decoder
  636. - Winnov WNV1 video decoder
  637. - Autodesk Animator Studio Codec (AASC) decoder
  638. - Indeo 2 video decoder
  639. - Fraps FPS1 video decoder
  640. - Snow video encoder/decoder
  641. - Sonic audio encoder/decoder
  642. - Vorbis audio decoder
  643. - Macromedia ADPCM decoder
  644. - Duck TrueMotion 2 video decoder
  645. - support for decoding FLX and DTA extensions in FLIC files
  646. - H.264 custom quantization matrices support
  647. - ffserver fixed, it should now be usable again
  648. - QDM2 audio decoder
  649. - Real Cooker audio decoder
  650. - TrueSpeech audio decoder
  651. - WMA2 audio decoder fixed, now all files should play correctly
  652. - RealAudio 14.4 and 28.8 decoders fixed
  653. - JPEG-LS decoder
  654. - build system improvements
  655. - tabs and trailing whitespace removed from the codebase
  656. - CamStudio video decoder
  657. - AIFF/AIFF-C audio format, encoding and decoding
  658. - ADTS AAC file reading and writing
  659. - Creative VOC file reading and writing
  660. - American Laser Games multimedia (*.mm) playback system
  661. - Zip Motion Blocks Video decoder
  662. - improved Theora/VP3 decoder
  663. - True Audio (TTA) decoder
  664. - AVS demuxer and video decoder
  665. - JPEG-LS encoder
  666. - Smacker demuxer and decoder
  667. - NuppelVideo/MythTV demuxer and RTjpeg decoder
  668. - KMVC decoder
  669. - MPEG-2 intra VLC support
  670. - MPEG-2 4:2:2 encoder
  671. - Flash Screen Video decoder
  672. - GXF demuxer
  673. - Chinese AVS decoder
  674. - GXF muxer
  675. - MXF demuxer
  676. - VC-1/WMV3/WMV9 video decoder
  677. - MacIntel support
  678. - AVISynth support
  679. - VMware video decoder
  680. - VP5 video decoder
  681. - VP6 video decoder
  682. - WavPack lossless audio decoder
  683. - Targa (.TGA) picture decoder
  684. - Vorbis audio encoder
  685. - Delphine Software .cin demuxer/audio and video decoder
  686. - Tiertex .seq demuxer/video decoder
  687. - MTV demuxer
  688. - TIFF picture encoder and decoder
  689. - GIF picture decoder
  690. - Intel Music Coder decoder
  691. - Zip Motion Blocks Video encoder
  692. - Musepack decoder
  693. - Flash Screen Video encoder
  694. - Theora encoding via libtheora
  695. - BMP encoder
  696. - WMA encoder
  697. - GSM-MS encoder and decoder
  698. - DCA decoder
  699. - DXA demuxer and decoder
  700. - DNxHD decoder
  701. - Gamecube movie (.THP) playback system
  702. - Blackfin optimizations
  703. - Interplay C93 demuxer and video decoder
  704. - Bethsoft VID demuxer and video decoder
  705. - CRYO APC demuxer
  706. - Atrac3 decoder
  707. - V.Flash PTX decoder
  708. - RoQ muxer, RoQ audio encoder
  709. - Renderware TXD demuxer and decoder
  710. - extern C declarations for C++ removed from headers
  711. - sws_flags command line option
  712. - codebook generator
  713. - RoQ video encoder
  714. - QTRLE encoder
  715. - OS/2 support removed and restored again
  716. - AC-3 decoder
  717. - NUT muxer
  718. - additional SPARC (VIS) optimizations
  719. - Matroska muxer
  720. - slice-based parallel H.264 decoding
  721. - Monkey's Audio demuxer and decoder
  722. - AMV audio and video decoder
  723. - DNxHD encoder
  724. - H.264 PAFF decoding
  725. - Nellymoser ASAO decoder
  726. - Beam Software SIFF demuxer and decoder
  727. - libvorbis Vorbis decoding removed in favor of native decoder
  728. - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
  729. - Ogg (Theora, Vorbis and FLAC) muxer
  730. - The "device" muxers and demuxers are now in a new libavdevice library
  731. - PC Paintbrush PCX decoder
  732. - Sun Rasterfile decoder
  733. - TechnoTrend PVA demuxer
  734. - Linux Media Labs MPEG-4 (LMLM4) demuxer
  735. - AVM2 (Flash 9) SWF muxer
  736. - QT variant of IMA ADPCM encoder
  737. - VFW grabber
  738. - iPod/iPhone compatible mp4 muxer
  739. - Mimic decoder
  740. - MSN TCP Webcam stream demuxer
  741. - RL2 demuxer / decoder
  742. - IFF demuxer
  743. - 8SVX audio decoder
  744. - non-recursive Makefiles
  745. - BFI demuxer
  746. - MAXIS EA XA (.xa) demuxer / decoder
  747. - BFI video decoder
  748. - OMA demuxer
  749. - MLP/TrueHD decoder
  750. - Electronic Arts CMV decoder
  751. - Motion Pixels Video decoder
  752. - Motion Pixels MVI demuxer
  753. - removed animated GIF decoder/demuxer
  754. - D-Cinema audio muxer
  755. - Electronic Arts TGV decoder
  756. - Apple Lossless Audio Codec (ALAC) encoder
  757. - AAC decoder
  758. - floating point PCM encoder/decoder
  759. - MXF muxer
  760. - DV100 AKA DVCPRO HD decoder and demuxer
  761. - E-AC-3 support added to AC-3 decoder
  762. - Nellymoser ASAO encoder
  763. - ASS and SSA demuxer and muxer
  764. - liba52 wrapper removed
  765. - SVQ3 watermark decoding support
  766. - Speex decoding via libspeex
  767. - Electronic Arts TGQ decoder
  768. - RV40 decoder
  769. - QCELP / PureVoice decoder
  770. - RV30 decoder
  771. - hybrid WavPack support
  772. - R3D REDCODE demuxer
  773. - ALSA support for playback and record
  774. - Electronic Arts TQI decoder
  775. - OpenJPEG based JPEG 2000 decoder
  776. - NC (NC4600) camera file demuxer
  777. - Gopher client support
  778. - MXF D-10 muxer
  779. - generic metadata API
  780. - flash ScreenVideo2 encoder
  781. version 0.4.9-pre1:
  782. - DV encoder, DV muxer
  783. - Microsoft RLE video decoder
  784. - Microsoft Video-1 decoder
  785. - Apple Animation (RLE) decoder
  786. - Apple Graphics (SMC) decoder
  787. - Apple Video (RPZA) decoder
  788. - Cinepak decoder
  789. - Sega FILM (CPK) file demuxer
  790. - Westwood multimedia support (VQA & AUD files)
  791. - Id Quake II CIN playback support
  792. - 8BPS video decoder
  793. - FLIC playback support
  794. - RealVideo 2.0 (RV20) decoder
  795. - Duck TrueMotion v1 (DUCK) video decoder
  796. - Sierra VMD demuxer and video decoder
  797. - MSZH and ZLIB decoder support
  798. - SVQ1 video encoder
  799. - AMR-WB support
  800. - PPC optimizations
  801. - rate distortion optimal cbp support
  802. - rate distorted optimal ac prediction for MPEG-4
  803. - rate distorted optimal lambda->qp support
  804. - AAC encoding with libfaac
  805. - Sunplus JPEG codec (SP5X) support
  806. - use Lagrange multipler instead of QP for ratecontrol
  807. - Theora/VP3 decoding support
  808. - XA and ADX ADPCM codecs
  809. - export MPEG-2 active display area / pan scan
  810. - Add support for configuring with IBM XLC
  811. - floating point AAN DCT
  812. - initial support for zygo video (not complete)
  813. - RGB ffv1 support
  814. - new audio/video parser API
  815. - av_log() system
  816. - av_read_frame() and av_seek_frame() support
  817. - missing last frame fixes
  818. - seek by mouse in ffplay
  819. - noise reduction of DCT coefficients
  820. - H.263 OBMC & 4MV support
  821. - H.263 alternative inter vlc support
  822. - H.263 loop filter
  823. - H.263 slice structured mode
  824. - interlaced DCT support for MPEG-2 encoding
  825. - stuffing to stay above min_bitrate
  826. - MB type & QP visualization
  827. - frame stepping for ffplay
  828. - interlaced motion estimation
  829. - alternate scantable support
  830. - SVCD scan offset support
  831. - closed GOP support
  832. - SSE2 FDCT
  833. - quantizer noise shaping
  834. - G.726 ADPCM audio codec
  835. - MS ADPCM encoding
  836. - multithreaded/SMP motion estimation
  837. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  838. - multithreaded/SMP decoding for MPEG-2
  839. - FLAC decoder
  840. - Metrowerks CodeWarrior suppport
  841. - H.263+ custom pcf support
  842. - nicer output for 'ffmpeg -formats'
  843. - Matroska demuxer
  844. - SGI image format, encoding and decoding
  845. - H.264 loop filter support
  846. - H.264 CABAC support
  847. - nicer looking arrows for the motion vector visualization
  848. - improved VCD support
  849. - audio timestamp drift compensation
  850. - MPEG-2 YUV 422/444 support
  851. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  852. - better image scaling
  853. - H.261 support
  854. - correctly interleave packets during encoding
  855. - VIS optimized motion compensation
  856. - intra_dc_precision>0 encoding support
  857. - support reuse of motion vectors/MB types/field select values of the source video
  858. - more accurate deblock filter
  859. - padding support
  860. - many optimizations and bugfixes
  861. - FunCom ISS audio file demuxer and according ADPCM decoding
  862. version 0.4.8:
  863. - MPEG-2 video encoding (Michael)
  864. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  865. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  866. and Mario Brito)
  867. - Xan DPCM audio decoder (Mario Brito)
  868. - Interplay MVE playback subsystem (Mike Melanson)
  869. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  870. version 0.4.7:
  871. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  872. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  873. - current version now also compiles with older GCC (Fabrice)
  874. - 4X multimedia playback system including 4xm file demuxer (Mike
  875. Melanson), and 4X video and audio codecs (Michael)
  876. - Creative YUV (CYUV) decoder (Mike Melanson)
  877. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  878. than HuffYUV) (Michael)
  879. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  880. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  881. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  882. - ffplay has been replaced with a newer version which uses SDL (optionally)
  883. for multiplatform support (Fabrice)
  884. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  885. by anonymous
  886. - AMR format has been added (Johannes Carlsson)
  887. - 3GP support has been added (Johannes Carlsson)
  888. - VP3 codec has been added (Mike Melanson)
  889. - more MPEG-1/2 fixes
  890. - better multiplatform support, MS Visual Studio fixes (various)
  891. - AltiVec optimizations (Magnus Damn and others)
  892. - SH4 processor support has been added (BERO)
  893. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  894. - VOB streaming support (Brian Foley)
  895. - better MP3 autodetection (Andriy Rysin)
  896. - qpel encoding (Michael)
  897. - 4mv+b frames encoding finally fixed (Michael)
  898. - chroma ME (Michael)
  899. - 5 comparison functions for ME (Michael)
  900. - B-frame encoding speedup (Michael)
  901. - WMV2 codec (unfinished - Michael)
  902. - user specified diamond size for EPZS (Michael)
  903. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  904. - ASV2 codec (Michael)
  905. - CLJR decoder (Alex)
  906. .. And lots more new enhancements and fixes.
  907. version 0.4.6:
  908. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  909. from scratch
  910. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  911. - fix quantization bug in AC3 encoder
  912. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  913. - added prototype ffplay program
  914. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  915. - bug fix on MCBPC tables of H.263 (Juanjo)
  916. - bug fix on DC coefficients of H.263 (Juanjo)
  917. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  918. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  919. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  920. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  921. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  922. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  923. - added first regression tests
  924. - added MPEG-2 TS demuxer
  925. - new demux API for libav
  926. - more accurate and faster IDCT (Michael)
  927. - faster and entropy-controlled motion search (Michael)
  928. - two pass video encoding (Michael)
  929. - new video rate control (Michael)
  930. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  931. - great performance improvement of video encoders and decoders (Michael)
  932. - new and faster bit readers and vlc parsers (Michael)
  933. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  934. - added DV video decoder
  935. - preliminary RTP/RTSP support in ffserver and libavformat
  936. - H.263+ AIC decoding/encoding support (Juanjo)
  937. - VCD MPEG-PS mode (Juanjo)
  938. - PSNR stuff (Juanjo)
  939. - simple stats output (Juanjo)
  940. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  941. version 0.4.5:
  942. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  943. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  944. - added configure system (actually a small shell script)
  945. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  946. Michael Hipp (temporary solution - waiting for integer only
  947. decoder)
  948. - fixed VIDIOCSYNC interrupt
  949. - added Intel H.263 decoding support ('I263' AVI fourCC)
  950. - added Real Video 1.0 decoding (needs further testing)
  951. - simplified image formats again. Added PGM format (=grey
  952. pgm). Renamed old PGM to PGMYUV.
  953. - fixed msmpeg4 slice issues (tell me if you still find problems)
  954. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  955. - added support for MPlayer interface
  956. - added macroblock skip optimization
  957. - added MJPEG decoder
  958. - added mmx/mmxext IDCT from libmpeg2
  959. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  960. <celer at shell.scrypt.net>)
  961. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  962. - added deinterlacing option
  963. - MPEG-1/2 fixes
  964. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  965. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  966. - Windows porting of file converter
  967. - added MJPEG raw format (input/output)
  968. - added JPEG image format support (input/output)
  969. version 0.4.4:
  970. - fixed some std header definitions (Bjorn Lindgren
  971. <bjorn.e.lindgren at telia.com>).
  972. - added MPEG demuxer (MPEG-1 and 2 compatible).
  973. - added ASF demuxer
  974. - added prototype RM demuxer
  975. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  976. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  977. header does not include them)
  978. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  979. play them (only tested video)
  980. - fixed H.263 white bug
  981. - fixed phase rounding in img resample filter
  982. - add MMX code for polyphase img resample filter
  983. - added CPU autodetection
  984. - added generic title/author/copyright/comment string handling (ASF and RM
  985. use them)
  986. - added SWF demux to extract MP3 track (not usable yet because no MP3
  987. decoder)
  988. - added fractional frame rate support
  989. - codecs are no longer searched by read_header() (should fix ffserver
  990. segfault)
  991. version 0.4.3:
  992. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  993. - fixed raw yuv output
  994. - added motion rounding support in MPEG-4
  995. - fixed motion bug rounding in MSMPEG4
  996. - added B-frame handling in video core
  997. - added full MPEG-1 decoding support
  998. - added partial (frame only) MPEG-2 support
  999. - changed the FOURCC code for H.263 to "U263" to be able to see the
  1000. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  1001. this +codec ;) (JuanJo).
  1002. - Halfpel motion estimation after MB type selection (JuanJo)
  1003. - added pgm and .Y.U.V output format
  1004. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  1005. output.
  1006. - added pgmpipe I/O format (original patch from Martin Aumueller
  1007. <lists at reserv.at>, but changed completely since we use a format
  1008. instead of a protocol)
  1009. version 0.4.2:
  1010. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  1011. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  1012. missing. MSMPEG4 support is complete.
  1013. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  1014. can decode ffmpeg MPEGs :-)).
  1015. - added libavcodec API documentation (see apiexample.c).
  1016. - fixed image polyphase bug (the bottom of some images could be
  1017. greenish)
  1018. - added support for non clipped motion vectors (decoding only)
  1019. and image sizes non-multiple of 16
  1020. - added support for AC prediction (decoding only)
  1021. - added file overwrite confirmation (can be disabled with -y)
  1022. - added custom size picture to H.263 using H.263+ (Juanjo)
  1023. version 0.4.1:
  1024. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  1025. of AVI and ASF to DIV3.
  1026. - added -me option to set motion estimation method
  1027. (default=log). suppressed redundant -hq option.
  1028. - added options -acodec and -vcodec to force a given codec (useful for
  1029. AVI for example)
  1030. - fixed -an option
  1031. - improved dct_quantize speed
  1032. - factorized some motion estimation code
  1033. version 0.4.0:
  1034. - removing grab code from ffserver and moved it to ffmpeg. Added
  1035. multistream support to ffmpeg.
  1036. - added timeshifting support for live feeds (option ?date=xxx in the
  1037. URL)
  1038. - added high quality image resize code with polyphase filter (need
  1039. mmx/see optimization). Enable multiple image size support in ffserver.
  1040. - added multi live feed support in ffserver
  1041. - suppressed master feature from ffserver (it should be done with an
  1042. external program which opens the .ffm url and writes it to another
  1043. ffserver)
  1044. - added preliminary support for video stream parsing (WAV and AVI half
  1045. done). Added proper support for audio/video file conversion in
  1046. ffmpeg.
  1047. - added preliminary support for video file sending from ffserver
  1048. - redesigning I/O subsystem: now using URL based input and output
  1049. (see avio.h)
  1050. - added WAV format support
  1051. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  1052. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  1053. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  1054. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  1055. - added new motion estimation algorithms, log and phods (Juanjo)
  1056. - changed directories: libav for format handling, libavcodec for
  1057. codecs
  1058. version 0.3.4:
  1059. - added stereo in MPEG audio encoder
  1060. version 0.3.3:
  1061. - added 'high quality' mode which use motion vectors. It can be used in
  1062. real time at low resolution.
  1063. - fixed rounding problems which caused quality problems at high
  1064. bitrates and large GOP size
  1065. version 0.3.2: small fixes
  1066. - ASF fixes
  1067. - put_seek bug fix
  1068. version 0.3.1: added avi/divx support
  1069. - added AVI support
  1070. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  1071. - added sound for flash format (not tested)
  1072. version 0.3: initial public release