URI: 
       tPass global toxav struct to make calls - ratox - FIFO based tox client
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 29bd24ebb68210e2cd61b8b25f2516a88dd54377
   DIR parent 16b2d6e514d8cbf583d386e3612474cafc05f318
  HTML Author: z3bra <contactatz3bradotorg>
       Date:   Wed,  2 Nov 2016 12:18:29 +0100
       
       Pass global toxav struct to make calls
       
       Diffstat:
         M ratox.c                             |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/ratox.c b/ratox.c
       t@@ -329,7 +329,7 @@ again:
        }
        
        static uint32_t
       -interval(Tox *m, struct ToxAV*av)
       +interval(Tox *m, struct ToxAV *av)
        {
                return MIN(tox_iteration_interval(m), toxav_iteration_interval(av));
        }
       t@@ -543,7 +543,7 @@ sendfriendcalldata(struct friend *f)
                        nanosleep(&diff, NULL);
                }
                clock_gettime(CLOCK_MONOTONIC, &f->av.lastsent);
       -        if (!toxav_audio_send_frame(av, f->av.num, buf, pcm, AUDIOCHANNELS, AUDIOCHANNELS, NULL))
       +        if (!toxav_audio_send_frame(toxav, f->av.num, buf, pcm, AUDIOCHANNELS, AUDIOCHANNELS, NULL))
                        weprintf("Failed to send audio frame\n");
        }
        
       t@@ -1198,7 +1198,7 @@ toxinit(void)
                dataload();
                datasave();
        
       -        toxav = toxav_new(tox, MAXCALLS);
       +        toxav = toxav_new(tox, NULL);
                if (!toxav)
                        eprintf("Core : ToxAV > Initialization failed\n");