tux3
ae243b2089
Delete CoreAV's timer from the CoreAV thread
2015-10-23 20:05:30 +02:00
tux3
1f758efc2f
Delete CoreAV from the Core thread
...
Since it was created there
Fixes #2457
2015-10-23 19:42:39 +02:00
tux3
4d9aeeec39
Fix bitrate callback to match toxav update
2015-10-23 17:52:46 +02:00
tux3
6dc91b156a
Use actual mutexes for CameraSource
...
That homemade spinlock thing was insane, VTune says we were spending 1.5s spinning for no reason when openning a device for example
2015-10-23 17:52:46 +02:00
tux3
477554ffba
Clean up callback hell between AV UI and CoreAV
2015-10-23 17:52:46 +02:00
tux3
a505e06f83
Multithread CoreAV
...
This is a little less insane, gives an overall 2x speedup on debug builds video calls
2015-10-23 17:52:45 +02:00
tux3
41e0212f77
Cleanup UI/CoreAV interface
2015-10-23 17:52:45 +02:00
tux3
73a4f40744
Fix call start/call invite race condition
...
Would result in an assert failure
2015-10-23 17:52:45 +02:00
tux3
1db17ae1ec
Fix crash due to erase/remove typo
...
A race condition would result in trying to remove an element that didn't exist, and thus erasing end (undefined behavior) instead of erasing [end, end) (no-op)
2015-10-23 17:52:45 +02:00
tux3
f45256baf1
Implement group calls
2015-10-23 17:52:45 +02:00
tux3
6cbd507ca8
Clean up dead code in CoreAV
2015-10-23 17:39:08 +02:00
tux3
69b8a90277
Implement video calls
2015-10-23 17:39:08 +02:00
tux3
e0aa8dd4a2
Implement audio calls
2015-10-23 17:39:08 +02:00
tux3
2b888ddc05
Better data structure for tox calls
2015-10-23 17:19:16 +02:00
tux3
512dc8de2d
Implement basic call logic
...
We can now make New AV calls, but without any audio/video. Just opening a link.
2015-10-23 17:09:53 +02:00
tux3
dbbc702c60
Strip out old AV code
2015-10-23 17:02:01 +02:00
Nils Fenner
33e54b841a
Merge pull request #2415 from antis81:ngf/mic
2015-10-21 22:19:37 +02:00
Zetok Zalbavar
c07aee18ad
Merge pull request #2346 from PKEv:save_avatar_in_DB
...
Save avatar in DB
add import avatars
update delete avatar action
correct import avatar for user without history
add multithreaded
make import run once
2015-10-20 21:01:20 +01:00
Nils Fenner
b7cf4df13f
Get rid of static methods and bugs
2015-10-20 03:46:44 +02:00
Nils Fenner
2a2cba3cf2
remove outcommented code
2015-10-18 22:21:08 +02:00
TheSpiritXIII
dc2c6532a5
Audio: Fix unclosed audio when hanging up
2015-10-18 22:21:08 +02:00
TheSpiritXIII
bbbd450b6a
Audio: Only open mic when requested
2015-10-18 22:21:08 +02:00
TheSpiritXIII
a311b96376
Audio: Open output only when necessary
2015-10-18 22:21:08 +02:00
agilob
7117083e86
Merge remote-tracking branch 'origin/new_video_view'
2015-10-18 20:55:01 +01:00
PKEv
e5a5074f91
make import run once
...
and rename function
2015-10-18 22:15:49 +03:00
PKEv
ec5e9c7350
correct import avatar for user without history
2015-10-18 16:50:00 +03:00
PKev
dd975c38eb
Save avatar in DB
...
Partially addresses an issue #1656
2015-10-14 22:16:59 +03:00
agilob
7c6ac40d21
add debugging messages to camerasource, code reformatting to make it more readable and ogranized better
2015-10-11 07:38:44 +01:00
Impyy
98c21f3832
Added a context menu to edit/remove the avatar
2015-10-05 22:03:31 +02:00
tux3
c0e2b91fe8
Fix #2310 caused by #2309
2015-09-27 23:45:02 +02:00
Impyy
c49ce6208e
Load user status from data file
2015-09-25 20:56:11 +02:00
tux3
6229e045f2
Merge branch 'pr2223'
...
Fixes #659
2015-09-14 19:51:10 +02:00
PKEv
564b32eb7c
save alias
2015-09-14 20:10:35 +03:00
tux3
8fbc0c8b59
Remove some debug output fluff
2015-09-06 00:11:47 +02:00
Zetok Zalbavar
06611d618e
Revert changes from merge of #2092 pull request
...
That pull request made qTox crash in a number of ways, with no quick fix
available.
Hopefully there will be a way to fix crash, so that this commit could be
reverted, and fix applied.
2015-08-30 21:28:53 +01:00
agilob
d6b176d955
Merge remote-tracking branch 'TheSpirit/requests'
...
merge awaiting friend requests, fix formatting conflict
2015-08-30 14:25:46 +01:00
TheSpiritXIII
2043908e15
Remove dialog for group invites
2015-08-21 10:32:00 -04:00
Zetok Zalbavar
2088c26028
Better wording for accepting / rejecting avatars
2015-07-28 11:11:58 +01:00
Jookia
7fab49d665
core: TOX_ERR_NEW_LOAD_BAD_FORMAT is non-fatal.
...
This fixes errors from save migrations between versions and architectures.
2015-07-12 23:58:40 +10:00
PKev
4682814442
fix the names in the history
...
fix #1943 #1787
2015-06-30 16:56:38 +03:00
tux3
645b1e5566
Fix raciness of encryption API
...
And make it saner by not having one global password that has to be set before encrypting/decrypting, which is as racy and poorly designed as it gets
Fixes #1917 's immediate symtoms, which some potential for other regressions due to the mess that is encrypted persistence currently
2015-06-27 21:14:35 +02:00
tux3
2ab55568f2
Make the video code a singleton, fix multithreading bugs
...
There can now only be one CameraSource running.
Video frames are decoded in their own thread, and then converted by users in the user's threads.
The CameraSource API is entirely thread-safe and controls the video decoding thread.
The video device only stays open as long as there are users subscribed to the CameraSource.
We use a dangerous combination of spinlocks and memory fences to keep things synchronized.
2015-06-26 18:34:48 +02:00
TheSpiritXIII
858b005567
Circles: Fix memory leaks and extraneous saving
2015-06-26 10:54:49 +02:00
TheSpiritXIII
c662c0aa92
Update activity on friendship, fix category friend removing (circles and activity)
2015-06-26 10:54:49 +02:00
TheSpiritXIII
ac2263b3e8
Save circle settings after each modification
2015-06-26 10:54:00 +02:00
Daniel Hrabovcak
e0b9e81938
Minor circle widget base class cleanup
2015-06-26 10:54:00 +02:00
tux3
aeb9a7f62f
Fix some warnings
2015-06-08 11:46:38 +02:00
tux3
7513725a3d
Fix wrong assert
2015-06-06 22:11:54 +02:00
tux3
89e9b18cf3
Better checks before cleanupCall
2015-06-06 21:57:09 +02:00
tux3
d76fb459cf
Fix #1817
2015-06-06 21:09:32 +02:00
tux3
adad71e565
Merge branch 'encrypted_settings'
2015-06-06 20:18:00 +02:00
tux3
13bea16292
Add encrypting profile settings serializer
...
We now use a binary serialized format to save space and allow clean encryption of the user settings.
All the settings can (and should) be edited from the GUI so there is no loss of functionnality.
It can still read the old .ini format, and will seamlessly upgrade to the new format.
Fixes #1810
2015-06-06 20:15:50 +02:00
tux3
6d8bcbb9cd
Workaround for #1817
2015-06-06 17:04:56 +02:00
Zetok Zalbavar
67e9aeec63
Fix incorrect copyright headers
...
The qTox Project is not associated with the Tox Project in any way, with the
exception of "qTox" using the Tox Projet's "toxcore" collection of libraries.
In particular, the Tox Projet does not own copyright over the qTox Project's
"qTox" collection of software, source code, and assets.
The qTox Project's assets are under the sole copyright of the qTox
contributors, and no partiular rights are granted to the Tox Project.
2015-06-06 14:51:28 +01:00
tux3
bb999456da
Remove some unused defines
2015-06-06 01:59:28 +02:00
tux3
20f254651d
Reorganize files
2015-06-06 01:44:47 +02:00
tux3
3656b1e5eb
Improve avatar caching reliability
2015-06-05 23:41:14 +02:00
tux3
0fd489fbba
Properly kill all calls in ~Core
2015-06-05 18:53:27 +02:00
tux3
1ded562d9d
Clean Settings interface
2015-06-05 16:24:47 +02:00
tux3
e5ddd9d0cf
Consider empty encrypted history as nonexistent
2015-06-04 21:34:13 +02:00
tux3
2dbf2e54b1
Implement restarting toxcore
2015-06-04 21:34:13 +02:00
tux3
5f94f33117
Use profile password for all encryption
2015-06-04 21:34:13 +02:00
tux3
4e2983817f
Fix crash in ~Core
2015-06-04 21:34:13 +02:00
tux3
42a7efb053
Implement the -p option
2015-06-04 21:34:13 +02:00
tux3
21db31c215
Implement profile deletion
2015-06-04 21:34:13 +02:00
tux3
f7546a731f
Fix profile saving on exit
2015-06-04 21:34:13 +02:00
tux3
abf65a5060
Remove deprecated profile management functions
2015-06-04 21:34:12 +02:00
tux3
840fd7dc40
Cleanly create new profiles
2015-06-04 21:34:12 +02:00
tux3
032c561e62
Make Nexus own and start the LoginScreen
...
And start implementing some of the required methods to make Core, LoginScreen and Nexus use Profile
2015-06-04 21:34:12 +02:00
tux3
c180fa15de
Fix nullptr dereference on A/V timeout
2015-06-03 19:33:17 +02:00
tux3
d53b426750
Replace OpenCV with FFmpeg
2015-06-03 02:10:52 +02:00
tux3
b3ce364d5c
Merge branch 'pr1758'
2015-06-01 16:56:47 +02:00
PKEv
0791c64efd
Correct_after_cpp_check
...
style and typos
2015-05-30 23:44:56 +03:00
tux3
6409b273a4
Re-apply toxcore tox_new compat patch
2015-05-29 17:29:25 +02:00
Ansa89
22d1ab34f9
Also call 'tox_add_tcp_relay()'
2015-05-29 14:54:26 +02:00
tux3
2db617bc6f
Recover if tox fails to start
2015-05-25 22:37:19 +02:00
Сухарик
fe7dc995d6
use toxcore error codes
2015-05-25 23:09:09 +03:00
tux3
c3e70d6c59
Revert "Updated for latest toxcore api"
...
This reverts commit 7c8334bca9
.
2015-05-25 20:23:06 +02:00
Daniel Hrabovcak
051a88a7e8
For range loops
2015-05-25 12:38:52 -04:00
Daniel Hrabovcak
992e648f64
Fix compile issues
2015-05-25 12:32:34 -04:00
Daniel Hrabovcak
399f2c9fef
Merge https://github.com/tux3/qTox
2015-05-25 12:20:05 -04:00
Daniel Hrabovcak
bd2f8b5db5
Add al delete to group leave
2015-05-25 12:19:56 -04:00
Daniel Hrabovcak
fb707fe1f1
Group audio not being reset
2015-05-25 11:58:54 -04:00
saneki
7c8334bca9
Updated for latest toxcore api
2015-05-25 08:08:47 -05:00
Zetok Zalbavar
1403ee970b
Improve error message when profile is alrady used
...
I.e. don't imply that profile belongs to same user, since it is possible
that multiple users are using qTox.
2015-05-25 09:39:47 +01:00
Zetok Zalbavar
227c061ea1
Code consistency fixes → 's/ToxID/ToxId/'
...
Since consistency in code is most important, 'ToxId' is used
for code, whereas 'Tox ID' anywhere outside of code.
Also fixed wrong comments in core.h:
* qTox gets only public key of a grouchat peer, not their
Tox ID
* qTox tries to return full address (Tox ID) or public key
2015-05-23 20:15:41 +01:00
tux3
9fdf382d7b
Correctly send avatar hashs as file_idS
2015-05-19 12:34:38 +02:00
marcel
f96db5a761
replaced ToxID struct with ToxId class.
2015-05-17 22:55:50 +02:00
marcel
66dc368662
added isActiveProfile function and fixed a typo
2015-05-17 22:48:24 +02:00
marcel
2ffabb19ec
Renamed function isMine to isActiveProfile.
...
As an user can have multiple profiles where each profile has its own
Tox ID the name isMine is not very accurate.
2015-05-17 22:26:56 +02:00
marcel
a41765a58d
added documentation
2015-05-17 21:54:21 +02:00
marcel
08e6004361
added separate class for ToxId
2015-05-17 21:23:52 +02:00
tux3
1bdb84825d
Remove the unused struct DhtServer
2015-05-16 13:25:52 +02:00
tux3
15cc64069f
Fix #1634
2015-05-12 18:39:38 +02:00
tux3
76cbaf18f1
Fix incorrect copyright headers
...
The qTox Project is not associated with the Tox Project in any ways, with the exception of "qTox" using the Tox Projet's "toxcore" collection of libraries.
In particular, the Tox Projet does not own copyright over the qTox Project's "qTox" collection of software, source code, and assets.
The qTox Project's assets are under the sole copyright of the qTox contributors, and no partiular rights are granted to the Tox Project.
2015-05-12 04:12:53 +02:00
tux3
600401a606
Fix vol/mic toggle buttons
...
They were suffering from double-connection syndrom, and the way muting worked was now conflicting with how the output sound level setting works
Fixes #1442
2015-05-12 02:45:04 +02:00
tux3
4a40269698
Implement and enable the audio sliders
...
It was about time
2015-05-12 01:27:32 +02:00
tux3
7cb98b90c7
Faster file transfers (up to 160ms/s)
...
By reducing the maximum interval between two tox_iterate calls during file transfers to 10ms. This results in reasonnable amounts of extra CPU% used. If the only file transfers are avatars, CoreFile allows sleeping for up to 50ms. If there are currently no FT, up to 1000ms.
We now take the minimum sleeping interval asked by toxcore, toxav, and CoreFile
2015-05-11 20:41:19 +02:00
tux3
ef688f6097
Remove pointless or potentially sensitive log messages
2015-05-11 16:06:12 +02:00
sudden6
1506a9a30e
Change log messages to fit new log format
2015-05-11 15:37:56 +02:00