Changeset 498


Ignore:
Timestamp:
Jun 12, 2006 10:13:31 AM (18 years ago)
Author:
bennylp
Message:

Added mutex protection and option not to delete upstream/downstream port in master_port.c

Location:
pjproject/trunk/pjmedia
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/master_port.h

    r404 r498  
    5353 * @param u_port        Upstream port. 
    5454 * @param d_port        Downstream port. 
    55  * @param options       Options flags. 
     55 * @param options       Options flags, bitmask from #pjmedia_master_port_flag. 
    5656 * @param p_m           Pointer to receive the master port instance. 
    5757 * 
     
    6565 
    6666 
    67  
    6867/** 
    6968 * Start the media flow. 
     
    7473 */ 
    7574PJ_DECL(pj_status_t) pjmedia_master_port_start(pjmedia_master_port *m); 
    76  
    7775 
    7876 
     
    8886 
    8987/** 
     88 * Change the upstream port. Note that application is responsible to destroy 
     89 * current upstream port (the one that is going to be replaced with the 
     90 * new port). 
     91 * 
     92 * @param m             The master port. 
     93 * @param port          Port to be used for upstream port. 
     94 * 
     95 * @return              PJ_SUCCESS on success. 
     96 */ 
     97PJ_DECL(pj_status_t) pjmedia_master_port_set_uport(pjmedia_master_port *m, 
     98                                                   pjmedia_port *port); 
     99 
     100 
     101/** 
     102 * Get the upstream port. 
     103 * 
     104 * @param m             The master port. 
     105 * 
     106 * @return              The upstream port. 
     107 */ 
     108PJ_DECL(pjmedia_port*) pjmedia_master_port_get_uport(pjmedia_master_port*m); 
     109 
     110 
     111/** 
     112 * Change the downstream port. Note that application is responsible to destroy 
     113 * current downstream port (the one that is going to be replaced with the 
     114 * new port). 
     115 * 
     116 * @param m             The master port. 
     117 * @param port          Port to be used for downstream port. 
     118 * 
     119 * @return              PJ_SUCCESS on success. 
     120 */ 
     121PJ_DECL(pj_status_t) pjmedia_master_port_set_dport(pjmedia_master_port *m, 
     122                                                   pjmedia_port *port); 
     123 
     124 
     125/** 
     126 * Get the downstream port. 
     127 * 
     128 * @param m             The master port. 
     129 * 
     130 * @return              The downstream port. 
     131 */ 
     132PJ_DECL(pjmedia_port*) pjmedia_master_port_get_dport(pjmedia_master_port*m); 
     133 
     134 
     135/** 
    90136 * Destroy the master port, and optionally destroy the upstream and  
    91137 * downstream ports. 
    92138 * 
    93139 * @param m             The master port. 
     140 * @param destroy_ports If non-zero, the function will destroy both 
     141 *                      upstream and downstream ports too. 
    94142 * 
    95143 * @return              PJ_SUCCESS on success. 
    96144 */ 
    97 PJ_DECL(pj_status_t) pjmedia_master_port_destroy(pjmedia_master_port *m); 
     145PJ_DECL(pj_status_t) pjmedia_master_port_destroy(pjmedia_master_port *m, 
     146                                                 pj_bool_t destroy_ports); 
    98147 
    99148 
  • pjproject/trunk/pjmedia/src/pjmedia/clock_thread.c

    r404 r498  
    2020#include <pjmedia/errno.h> 
    2121#include <pj/assert.h> 
     22#include <pj/lock.h> 
    2223#include <pj/os.h> 
    2324#include <pj/pool.h> 
     
    4243    pj_bool_t                running; 
    4344    pj_bool_t                quitting; 
     45    pj_lock_t               *lock; 
    4446}; 
    4547 
     
    8385    clock->quitting = PJ_FALSE; 
    8486     
     87    /* I don't think we need a mutex, so we'll use null. */ 
     88    status = pj_lock_create_null_mutex(pool, "clock", &clock->lock); 
     89    if (status != PJ_SUCCESS) 
     90        return status; 
     91 
    8592    status = pj_thread_create(pool, "clock", &clock_thread, clock, 
    8693                              0, 0, &clock->thread); 
    87     if (status != PJ_SUCCESS) 
    88         return status; 
     94    if (status != PJ_SUCCESS) { 
     95        pj_lock_destroy(clock->lock); 
     96        return status; 
     97    } 
    8998 
    9099 
     
    105114    PJ_ASSERT_RETURN(clock != NULL, PJ_EINVAL); 
    106115 
     116    if (clock->running) 
     117        return PJ_SUCCESS; 
     118 
    107119    status = pj_get_timestamp(&now); 
    108120    if (status != PJ_SUCCESS) 
    109121        return status; 
    110122 
     123    pj_lock_acquire(clock->lock); 
    111124    clock->next_tick.u64 = now.u64 + clock->interval.u64; 
    112125    clock->running = PJ_TRUE; 
     126    pj_lock_release(clock->lock); 
    113127 
    114128    return status; 
     
    206220            continue; 
    207221 
     222        pj_lock_acquire(clock->lock); 
     223 
    208224        /* Call callback, if any */ 
    209225        if (clock->cb) 
     
    216232        clock->next_tick.u64 += clock->interval.u64; 
    217233 
    218  
     234        pj_lock_release(clock->lock); 
    219235    } 
    220236 
     
    239255    } 
    240256 
     257    if (clock->lock) { 
     258        pj_lock_destroy(clock->lock); 
     259        clock->lock = NULL; 
     260    } 
     261 
    241262    return PJ_SUCCESS; 
    242263} 
    243264 
    244265 
    245  
    246  
    247  
  • pjproject/trunk/pjmedia/src/pjmedia/master_port.c

    r411 r498  
    2121#include <pjmedia/errno.h> 
    2222#include <pj/assert.h> 
     23#include <pj/lock.h> 
    2324#include <pj/pool.h> 
    2425#include <pj/string.h> 
     
    3334    unsigned         buff_size; 
    3435    void            *buff; 
     36    pj_lock_t       *lock; 
    3537}; 
    3638 
     
    9193        return PJ_ENOMEM; 
    9294 
     95    /* Create lock object */ 
     96    status = pj_lock_create_simple_mutex(pool, "mport", &m->lock); 
     97    if (status != PJ_SUCCESS) 
     98        return status; 
    9399 
    94100    /* Create media clock */ 
    95101    status = pjmedia_clock_create(pool, clock_rate, samples_per_frame, 0, 
    96102                                  &clock_callback, m, &m->clock); 
    97     if (status != PJ_SUCCESS) 
     103    if (status != PJ_SUCCESS) { 
     104        pj_lock_destroy(m->lock); 
    98105        return status; 
    99  
     106    } 
    100107 
    101108    /* Done */ 
     
    116123    return pjmedia_clock_start(m->clock); 
    117124} 
    118  
    119125 
    120126 
     
    139145    pj_status_t status; 
    140146 
     147     
     148    /* Lock access to ports. */ 
     149    pj_lock_acquire(m->lock); 
    141150 
    142151    /* Get frame from upstream port and pass it to downstream port */ 
     
    163172 
    164173    status = pjmedia_port_put_frame(m->u_port, &frame); 
     174 
     175    /* Release lock */ 
     176    pj_lock_release(m->lock); 
     177} 
     178 
     179 
     180/* 
     181 * Change the upstream port. 
     182 */ 
     183PJ_DEF(pj_status_t) pjmedia_master_port_set_uport(pjmedia_master_port *m, 
     184                                                     pjmedia_port *port) 
     185{ 
     186    PJ_ASSERT_RETURN(m && port, PJ_EINVAL); 
     187 
     188    /* If we have downstream port, make sure they have matching samples per 
     189     * frame. 
     190     */ 
     191    if (m->d_port) { 
     192        PJ_ASSERT_RETURN( 
     193            port->info.clock_rate/port->info.samples_per_frame== 
     194            m->d_port->info.clock_rate/m->d_port->info.samples_per_frame, 
     195            PJMEDIA_ENCSAMPLESPFRAME 
     196        ); 
     197    } 
     198 
     199    pj_lock_acquire(m->lock); 
     200 
     201    m->u_port = port; 
     202 
     203    pj_lock_release(m->lock); 
     204 
     205    return PJ_SUCCESS; 
     206} 
     207 
     208 
     209/* 
     210 * Get the upstream port. 
     211 */ 
     212PJ_DEF(pjmedia_port*) pjmedia_master_port_get_uport(pjmedia_master_port*m) 
     213{ 
     214    PJ_ASSERT_RETURN(m, NULL); 
     215    return m->u_port; 
     216} 
     217 
     218 
     219/* 
     220 * Change the downstream port. 
     221 */ 
     222PJ_DEF(pj_status_t) pjmedia_master_port_set_dport(pjmedia_master_port *m, 
     223                                                  pjmedia_port *port) 
     224{ 
     225    PJ_ASSERT_RETURN(m && port, PJ_EINVAL); 
     226 
     227    /* If we have upstream port, make sure they have matching samples per 
     228     * frame. 
     229     */ 
     230    if (m->u_port) { 
     231        PJ_ASSERT_RETURN( 
     232            port->info.clock_rate/port->info.samples_per_frame== 
     233            m->u_port->info.clock_rate/m->u_port->info.samples_per_frame, 
     234            PJMEDIA_ENCSAMPLESPFRAME 
     235        ); 
     236    } 
     237 
     238    pj_lock_acquire(m->lock); 
     239 
     240    m->d_port = port; 
     241 
     242    pj_lock_release(m->lock); 
     243 
     244    return PJ_SUCCESS; 
     245} 
     246 
     247 
     248/* 
     249 * Get the downstream port. 
     250 */ 
     251PJ_DEF(pjmedia_port*) pjmedia_master_port_get_dport(pjmedia_master_port*m) 
     252{ 
     253    PJ_ASSERT_RETURN(m, NULL); 
     254    return m->d_port; 
    165255} 
    166256 
     
    170260 * d_port ports. 
    171261 */ 
    172 PJ_DEF(pj_status_t) pjmedia_master_port_destroy(pjmedia_master_port *m) 
     262PJ_DEF(pj_status_t) pjmedia_master_port_destroy(pjmedia_master_port *m, 
     263                                                pj_bool_t destroy_ports) 
    173264{ 
    174265    PJ_ASSERT_RETURN(m, PJ_EINVAL); 
     
    179270    } 
    180271 
    181     if (m->u_port) { 
     272    if (m->u_port && destroy_ports) { 
    182273        pjmedia_port_destroy(m->u_port); 
    183274        m->u_port = NULL; 
    184275    } 
    185276 
    186     if (m->d_port) { 
     277    if (m->d_port && destroy_ports) { 
    187278        pjmedia_port_destroy(m->d_port); 
    188279        m->d_port = NULL; 
    189280    } 
    190281 
    191     return PJ_SUCCESS; 
    192 } 
    193  
    194  
     282    if (m->lock) { 
     283        pj_lock_destroy(m->lock); 
     284        m->lock = NULL; 
     285    } 
     286 
     287    return PJ_SUCCESS; 
     288} 
     289 
     290 
Note: See TracChangeset for help on using the changeset viewer.