]>
git.ipfire.org Git - thirdparty/freeswitch.git/log
Anthony Minessale [Tue, 18 Nov 2014 22:39:32 +0000 (16:39 -0600)]
FS-7500: another refactoring pass, temp code still in place, WORK IN PROGRESS
Seven Du [Sun, 16 Nov 2014 01:27:30 +0000 (09:27 +0800)]
FS-7500: fix if statement
Anthony Minessale [Sat, 15 Nov 2014 17:44:48 +0000 (11:44 -0600)]
FS-7500: revert earlier bridge change
Anthony Minessale [Sat, 15 Nov 2014 16:34:26 +0000 (10:34 -0600)]
FS-7500: mark places to fix later
Anthony Minessale [Sat, 15 Nov 2014 01:01:56 +0000 (19:01 -0600)]
FS-7500: Work in progress. Added codec config params that can be set from session and made vpx codec re-init on size change. Also add periodic key frame timer
Anthony Minessale [Fri, 14 Nov 2014 02:52:57 +0000 (20:52 -0600)]
FS-7500: major refactoring pass. Push concepts from mod_vlc as deep as possible and flesh out api to use everywhere else. Round 2 will be to convert the bridge and other places using the same code
Anthony Minessale [Thu, 13 Nov 2014 03:30:39 +0000 (21:30 -0600)]
FS-7500: add support for codec control and use it to pass messages down to the codec and use it to implement keyframe reset for fir, pli and nack. Later we will expand to handle nack correctly.
Anthony Minessale [Wed, 12 Nov 2014 01:10:45 +0000 (19:10 -0600)]
FS-7500 FS-7517 FS-7508 FS-7514: chrome working on most, bria working on some
Anthony Minessale [Tue, 11 Nov 2014 03:38:56 +0000 (21:38 -0600)]
FS-7508 FS-7517: import h264 and vpx codec files
Anthony Minessale [Tue, 11 Nov 2014 03:38:37 +0000 (21:38 -0600)]
FS-7514: [mod_vlc] temp workaround
Anthony Minessale [Tue, 11 Nov 2014 03:38:14 +0000 (21:38 -0600)]
FS-7508: add autoconf for vpx lib
Brian West [Mon, 22 Sep 2014 20:00:19 +0000 (15:00 -0500)]
fix line endings
Seven Du [Sat, 27 Sep 2014 09:06:55 +0000 (17:06 +0800)]
FS-7500: fix and use 32bit timestamp, frame->timestamp is defined as switch_size_t and not always 32bit
Seven Du [Tue, 16 Sep 2014 04:56:19 +0000 (12:56 +0800)]
FS-7513: let the core thread to read video if vid-floor in conference already locked-hold by someone else
William King [Thu, 28 Aug 2014 05:31:52 +0000 (22:31 -0700)]
FS-7500 S-7513: Few build fixes
Seven Du [Sat, 23 Aug 2014 08:59:52 +0000 (16:59 +0800)]
FS-7513: Example code to use the core video thread with a custom callback
It by default remains the default behaviour
However, you can setup a relationship between members to let the
member choose to see anyone else but the floor, e.g.:
conference 3000 relate 1 2 sendvideo
In the above command member 2 will see member 1's video regardless
member 1 has video floor or not
Seven Du [Sat, 23 Aug 2014 08:54:50 +0000 (16:54 +0800)]
FS-7500: add ability to insert a custom callback to the core video thread
the callback will be called on each loop on read video frame, or
the callback function call run it's own loop to take over the core
loop so it can read video from session by itself.
the callback function can -
return SWITCH_STATUS_SUCCESS to wait another loop
return SWITCH_STATUS_CONTINUE to continue use the default behaviour
return anything else will break the core video loop and end the
core thread
Seven Du [Sat, 23 Aug 2014 03:21:08 +0000 (11:21 +0800)]
FS-7513: show relationships
Seven Du [Fri, 22 Aug 2014 06:28:31 +0000 (14:28 +0800)]
FS-7513: force floor on member join
Seven Du [Tue, 26 Aug 2014 23:11:08 +0000 (07:11 +0800)]
FS-7514: refresh req on vlc channel
Seven Du [Fri, 22 Aug 2014 05:01:20 +0000 (13:01 +0800)]
FS-7514: not hardcoded H264 anymore
Seven Du [Mon, 4 Aug 2014 17:46:55 +0000 (01:46 +0800)]
FS-7514: cleanup
Seven Du [Mon, 4 Aug 2014 17:23:09 +0000 (01:23 +0800)]
FS-7514: allows the core video thread to read from the vlc endpoint
Seven Du [Mon, 4 Aug 2014 17:01:57 +0000 (01:01 +0800)]
FS-7514: follow the last core_video refactor
Seven Du [Mon, 4 Aug 2014 07:23:12 +0000 (15:23 +0800)]
FS-7500: update yuv codec
Seven Du [Sun, 3 Aug 2014 19:15:26 +0000 (03:15 +0800)]
FS-7500: refactor to use switch_core_video
added switch_core_codec_encode_video and switch_core_codec_decode video and add separate video implementations
the switch_core_video code depends on libvpx, wraped into the switch_ namespace like switch_apr, need to figure out how to find the correct libvpx lib in autotools
Seven Du [Sun, 3 Aug 2014 19:13:24 +0000 (03:13 +0800)]
FS-7500: add switch_core_video code
Seven Du [Sun, 27 Jul 2014 22:41:58 +0000 (06:41 +0800)]
FS-7500: add decode_video App
Seven Du [Sat, 26 Jul 2014 10:39:30 +0000 (18:39 +0800)]
FS-7514: refactor timestamp code
Seven Du [Sat, 26 Jul 2014 00:36:02 +0000 (08:36 +0800)]
FS-7517: add play_yuv to test encoder
William King [Fri, 25 Jul 2014 04:53:35 +0000 (21:53 -0700)]
FS-7508 FS-7517: [build] Convert the build over to automake, though there is still room to fix
the autoconf portion to detect the correct location of libopenh264
Basic conversion for vpx too.
Borrowing from ldns handling, setup mod_vpx to prompt for the required library when the module is enabled
Seven Du [Thu, 24 Jul 2014 00:45:39 +0000 (08:45 +0800)]
FS-7514: vlc video
liyang [Thu, 13 Feb 2014 06:56:07 +0000 (14:56 +0800)]
FS-7500: allow using the video thread externally - e.g. non rtp based video
Seven Du [Sun, 16 Feb 2014 03:28:28 +0000 (11:28 +0800)]
FS-7500: add raw video codec yuv I420
Seven Du [Tue, 24 Sep 2013 18:39:29 +0000 (02:39 +0800)]
FS-7500: initial idea to decode video in core
Seven Du [Fri, 10 Jan 2014 04:00:01 +0000 (12:00 +0800)]
FS-7500: move video bridge logic to switch_core_media so possible to do transcoding
Seven Du [Wed, 17 Oct 2012 01:02:31 +0000 (09:02 +0800)]
FS-7502: refresh video on video record or eavesdrop
Seven Du [Wed, 29 Aug 2012 04:59:21 +0000 (12:59 +0800)]
FS-7502: video eavesdrop
Seven Du [Tue, 28 Aug 2012 08:12:12 +0000 (16:12 +0800)]
FS-7502: add simple video media bug implementation, should work with .fsv, be sure to set enable_file_write_buffering=false
Conflicts:
src/include/switch_types.h
Seven Du [Fri, 10 Aug 2012 07:35:29 +0000 (15:35 +0800)]
FS-7513: [mod_conference] video recording in conference
conference 3000 record /tmp/testrecord.fsv
call 9194 try to playback
mp4 should also work with the mp4 file format, will be available soon
Seven Du [Wed, 29 Aug 2012 03:35:32 +0000 (11:35 +0800)]
FS-7500: [mod_fsv] fix fsv sample_count and mux of channels
Anthony Minessale [Thu, 28 May 2015 17:35:17 +0000 (12:35 -0500)]
bump
Ken Rice [Wed, 27 May 2015 18:22:29 +0000 (13:22 -0500)]
tweak rebootstrapping for use with mock.
Anthony Minessale [Wed, 27 May 2015 21:48:16 +0000 (16:48 -0500)]
FS-7582 #resolve #comment port from 1.6 its probably better to start working on 1.6 for any webrtc or dtls stuff
Anthony Minessale [Wed, 27 May 2015 06:13:27 +0000 (01:13 -0500)]
skip rtcp addr when mux is set
Ken Rice [Tue, 26 May 2015 14:13:13 +0000 (09:13 -0500)]
FS-7574 #resolve Make curl in getg729.sh.in and getsounds.sh follow 3XX redirecrts
Ken Rice [Tue, 26 May 2015 05:09:42 +0000 (00:09 -0500)]
make curl call in getlib.sh follow 301 redirects
Ken Rice [Fri, 15 May 2015 15:32:21 +0000 (10:32 -0500)]
update URLs for sound files
Brian West [Thu, 21 May 2015 17:42:51 +0000 (12:42 -0500)]
FS-7529 correct fix
Anthony Minessale [Thu, 21 May 2015 14:50:49 +0000 (09:50 -0500)]
FS-7567 #resolve #comment additional occurrences beyond the initial patch discovered
Brian West [Wed, 20 May 2015 19:52:44 +0000 (14:52 -0500)]
Merge branch 'master' of https://freeswitch.org/stash/scm/fs/freeswitch
Brian West [Wed, 20 May 2015 19:52:23 +0000 (14:52 -0500)]
FS-7562 --resolve
Jeff Lenk [Wed, 20 May 2015 18:19:12 +0000 (13:19 -0500)]
FS-7488 remove windows duplicate files
Anthony Minessale [Mon, 18 May 2015 19:29:39 +0000 (14:29 -0500)]
FS-7541 use switch_time_now for more accurate timestamps and wait for 3 consecutive missing packets to write silence into native recordings
Jeff Lenk [Sun, 17 May 2015 18:45:52 +0000 (13:45 -0500)]
FS-7488 windows fix build error
Chris Rienzo [Fri, 15 May 2015 12:43:00 +0000 (08:43 -0400)]
FS-7557 fix crash when doing 'limit_usage mongo foo bar'
Chris Rienzo [Thu, 14 May 2015 21:19:42 +0000 (17:19 -0400)]
FS-7557 mod_mongo add limit backend - still testing
Michael Jerris [Thu, 14 May 2015 17:55:32 +0000 (13:55 -0400)]
FS-7463: revert commits
c2c04632f35c b33563138b09 and
6bf74877b5f0 . Future pull requests should be verified that they compile before submitting.
Luis Azedo [Wed, 22 Apr 2015 19:11:12 +0000 (20:11 +0100)]
conditionally allow intercept of replaced call-id when processing replaces header
without this change one leg calls inhaled could not be picked because there is no bridge_uuid.
FS-7463 #resolve
Anthony Minessale II [Thu, 14 May 2015 16:37:51 +0000 (11:37 -0500)]
Merge pull request #241 in FS/freeswitch from ~LAZEDO/freeswitch-fs-7463:FS-7463 to master
* commit '
b33563138b0953693dbe0d32a439c533ea8b4316 ':
conditionally allow intercept of replaced call-id when processing replaces header
William King [Wed, 13 May 2015 22:56:18 +0000 (15:56 -0700)]
FS-7552 #resolve
Michael Jerris [Tue, 12 May 2015 05:36:45 +0000 (00:36 -0500)]
fix clang build on wheezy and other platforms that have aligned_alloc in libc but not in headers
Steve Underwood [Tue, 12 May 2015 05:11:50 +0000 (13:11 +0800)]
Eliminated a spandsp warning frmo clang
Michael Jerris [Tue, 12 May 2015 04:37:03 +0000 (23:37 -0500)]
fix clang build not seeing some libc prototypes throwing build warnings
Steve Underwood [Tue, 12 May 2015 04:00:04 +0000 (12:00 +0800)]
A slightly mroe elegant an commented fix for the potential overflow issue in udptl.c
Michael Jerris [Tue, 12 May 2015 00:46:27 +0000 (19:46 -0500)]
FS-7184: add buffer overflow check in udptl_rx_packet
Brian West [Mon, 11 May 2015 21:47:02 +0000 (16:47 -0500)]
FS-7529 --resolve
Anthony Minessale II [Mon, 11 May 2015 15:46:02 +0000 (10:46 -0500)]
Merge pull request #251 in FS/freeswitch from ~DRAGOS_OANCEA/freeswitch-dragos:opus_8khz_samples_per_frame to master
* commit '
ccbef9e0c7e31c410ce08b5276c3e2e5a2f69883 ':
opus@8000h : with this change there RTP timestamps will be incremented with 960 (20 ms ptime) - per RFC , and the frame size will be 160 samples.
doancea [Mon, 11 May 2015 14:48:49 +0000 (16:48 +0200)]
opus@8000h : with this change there RTP timestamps will be incremented with 960 (20 ms ptime) - per RFC , and the frame size will be 160 samples.
Steve Underwood [Tue, 5 May 2015 13:13:50 +0000 (21:13 +0800)]
FAX now tolerates EOP and PPS messages being incorrectly echoed
William King [Tue, 5 May 2015 04:36:15 +0000 (21:36 -0700)]
FS-7060: On first startup, on a clean platform, make sure to create the amqp exchange.
Michael Jerris [Mon, 4 May 2015 19:58:48 +0000 (15:58 -0400)]
FS-7523: [mod_json_cdr] don't install state handlers before we configure the module
Michael Jerris [Mon, 4 May 2015 15:46:30 +0000 (11:46 -0400)]
FS-7523: [mod_json_cdr] don't bind events before we configure the module
Michael Jerris [Mon, 4 May 2015 15:23:33 +0000 (11:23 -0400)]
FS-7425: #resolve dhparams might not be present, causing a seg. Make sure they are there before we apply them
William King [Sun, 3 May 2015 18:23:30 +0000 (11:23 -0700)]
FS-7526: add enable_fallback_format_fields for mod_amqp producer profiles if the profile param is set.
Chris Rienzo [Thu, 30 Apr 2015 20:06:19 +0000 (16:06 -0400)]
FS-7496 [mod_http_cache] lookup file extension from content-type if missing in URL
Brian West [Wed, 29 Apr 2015 16:39:59 +0000 (11:39 -0500)]
FS-7496 #resolve strip url args after the file extension
Chris Rienzo [Thu, 30 Apr 2015 18:24:41 +0000 (14:24 -0400)]
FS-7496 Updated mime.types, added switch_core_mime_type2ext function and used it in mod_httapi. Now, file extensions defined in mime.types will be applied if mod_httapi downloads a file without one.
Brian [Thu, 30 Apr 2015 12:35:23 +0000 (07:35 -0500)]
FS-7492 fix copy paste typo
Anthony Minessale [Thu, 30 Apr 2015 00:18:59 +0000 (19:18 -0500)]
FS-7466
Chris Rienzo [Tue, 28 Apr 2015 20:18:46 +0000 (16:18 -0400)]
FS-7491 #resolve #comment [mod_graylog2] send timestamp with millisecond precision instead of microsecond as required by GELF.
Chris Rienzo [Tue, 28 Apr 2015 18:38:38 +0000 (14:38 -0400)]
FS-7490 #resolve #comment mod_rayo, srgs to regex transform: latest PCRE doesn't like regex generated by mod_rayo. It requires the group name not to start
with a digit.
Anthony Minessale II [Tue, 28 Apr 2015 18:14:41 +0000 (13:14 -0500)]
Merge pull request #199 in FS/freeswitch from ~ARTURZ/freeswitch:FS-7307-native-recording-buffering to master
* commit '
8e72fafb2c11d6fc8532f0de8d9d5d26200376fd ':
FS-7307: When recording a call in native format, buffering does not work
Michael Jerris [Tue, 28 Apr 2015 16:59:15 +0000 (11:59 -0500)]
FS-7488: [mod_managed] fix build error
Anthony Minessale [Tue, 28 Apr 2015 21:12:24 +0000 (16:12 -0500)]
FS-7472
Anthony Minessale [Mon, 27 Apr 2015 17:35:38 +0000 (12:35 -0500)]
swigall
Anthony Minessale [Sat, 25 Apr 2015 19:15:26 +0000 (14:15 -0500)]
swigall
Anthony Minessale [Thu, 12 Feb 2015 16:14:49 +0000 (10:14 -0600)]
fix switch_core_codec_copy blocking interface forever issue
Anthony Minessale [Sat, 25 Apr 2015 18:22:43 +0000 (13:22 -0500)]
Eric Tamme [Fri, 24 Apr 2015 15:31:03 +0000 (10:31 -0500)]
FS-7425: set dh params and call set_tmp_dh to enable PFS for DTLS-SRTP
Michael Jerris [Fri, 24 Apr 2015 14:47:16 +0000 (09:47 -0500)]
FS-7465: make sure write buffer is big enough on stereo file handles
Anthony Minessale [Thu, 23 Apr 2015 15:45:48 +0000 (10:45 -0500)]
FS-7470: add force-register-domain param to verto
William King [Thu, 23 Apr 2015 04:33:08 +0000 (21:33 -0700)]
Fixing a typo from a last minute refactor after fixing a bug
William King [Wed, 22 Apr 2015 23:18:13 +0000 (16:18 -0700)]
Revert "FS-7435 change pgsql support to default on, with an option to disable"
This reverts commit
702f0472655f834ac939abd2cf877fbf98f5aada .
William King [Wed, 22 Apr 2015 23:13:05 +0000 (18:13 -0500)]
Merge pull request #234 in FS/freeswitch from feature/FS-7435-enable-auto-detection-of-libpq-for to master
* commit '
702f0472655f834ac939abd2cf877fbf98f5aada ':
FS-7435 change pgsql support to default on, with an option to disable
Luis Azedo [Wed, 22 Apr 2015 19:11:12 +0000 (20:11 +0100)]
conditionally allow intercept of replaced call-id when processing replaces header
without this change one leg calls inhaled could not be picked because there is no bridge_uuid.
FS-7463 #resolve
Michael Jerris [Tue, 21 Apr 2015 23:57:36 +0000 (18:57 -0500)]
FS-7460: don't force ice in 3pcc-mode=proxy
Jeff Lenk [Tue, 21 Apr 2015 17:06:42 +0000 (12:06 -0500)]
FS-7458
Michael Jerris [Tue, 21 Apr 2015 16:06:46 +0000 (11:06 -0500)]
FS-7456: also more complete fix for FS-7440, handle sdp with m lines in any order
William King [Mon, 20 Apr 2015 02:11:47 +0000 (19:11 -0700)]
Additional fix for error case when connection succeeds, but login fails