1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
2018-11-24 Alfred E. Heggestad <alfred.heggestad@gmail.com>
* Version 0.6.0
* Project URL: https://github.com/creytiv/rem
* avc: new module for Advanced Video Coding (AVC)
* flv: new module for Flash Video File format (FLV)
2018-04-20 Alfred E. Heggestad <alfred.heggestad@gmail.com>
* Version 0.5.3
* Project URL: https://github.com/creytiv/rem
* auresamp: avoid FIR filtering if ouput sample rate equals input (#15)
* build: Update Windows project (#18) (thanks Encamy)
* vid: vidframe_draw_point: correct endian for RGB32 (#16)
2017-09-23 Alfred E. Heggestad <alfred.heggestad@gmail.com>
* Version 0.5.2
* Project URL: https://github.com/creytiv/rem
* build: Updated MSVS projects to vs2015 (thanks Mikhail Barg)
* goertzel: new module for Goertzel Algorithm
* dtmf: new module for DTMF decoder
2017-04-08 Alfred E. Heggestad <alfred.heggestad@gmail.com>
* Version 0.5.1
* Project URL: https://github.com/creytiv/rem
* vid: add YUV444P to vidframe functions
add NV12/21 to vidframe_copy
* vidconv: add RGB32 to/from YUV444P
add NV12/21 to RGB32 (thanks Harald Gutmann)
2016-12-02 Alfred E. Heggestad <alfred.heggestad@gmail.com>
* Version 0.5.0
* Project URL: https://github.com/creytiv/rem
* build: remove support for Symbian OS
* vid: add support for YUV444P pixel format
* vidconv: fix yuv420p <-> nv12 conversion
added vidconv YUV420P to NV12
2015-12-13 Alfred E. Heggestad <aeh@db.org>
* Version 0.4.7
* build: add pkg-config file (thanks to William King)
* auconv: new module for audio sample format conversion
(thanks to Ola Palm for testing)
* aumix: close file on sleep
* vid: added vidframe_copy()
* vidmix: pthread_rwlockattr_setkind_np for linux and glibc
(patch copied from openwrt repo)
2014-05-18 Alfred E. Heggestad <aeh@db.org>
* Version 0.4.6
* debian: update package
* include: use quotes to include header files
* vidmix: use full picture for 2 participants
2014-01-06 Alfred E. Heggestad <aeh@db.org>
* Version 0.4.5
* debian: fix dependency to libre (patch from Juha)
* auresamp: improved audio resampler
better low-pass FIR-filter coefficients
* fir: improved channels-agnostic FIR-filter
* vid: vidframe_draw_point() make API take RGB-values
handle VID_FMT_ARGB format in all vid-functions
vidframe_fill() fix swapped RGB/BGR values
2013-10-03 Alfred E. Heggestad <aeh@db.org>
* Version 0.4.4
* debian: fix dependency to libre (patch from Juha)
* vid: change type of width/height to 'unsigned'
* vidframe: added basic drawing functions
2013-05-05 Alfred E. Heggestad <aeh@db.org>
* Version 0.4.3
* aubuf: added API for 16-bit samples
* vidconv: added support for NV21 to YUV420P
* vidmix: various improvements
2012-09-09 Alfred E. Heggestad <aeh@db.org>
* Version 0.4.2
* aubuf: fix bug in aubuf_append()
* aumix: change sample type to int16_t
* auresamp: change sample API to array of int16_t
* vid: change signature of vidframe_size()
* vidconv: fix pixel alignment bug
* vidmix: enhance API
2012-04-21 Alfred E. Heggestad <aeh@db.org>
* Version 0.4.1
* updated doxygen comments
* aufile: new module for audio file reading/writing
* aumix: various improvements, add aumix_playfile()
add function to enable/disable sources
added aumix_source_flush()
* vidconv: add support for YUV420P to RGB555
fix warning of casting to unaligned access
* vidmix: various improvements
add function to enable/disable sources
2011-12-25 Alfred E. Heggestad <aeh@db.org>
* Version 0.4.0
* vidconv: add support for YUV420P to RGB565
2011-09-07 Alfred E. Heggestad <aeh@db.org>
* Version 0.3.0
* Initial Release
|