Ignore:
Timestamp:
Feb 19, 2006 2:24:27 AM (18 years ago)
Author:
bennylp
Message:

Fixing Makefiles for the new pjmedia-codec and pjsip-simple libraries

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia-codec/gsm.c

    r176 r198  
    281281                               sizeof(pjmedia_codec)); 
    282282        PJ_ASSERT_RETURN(codec != NULL, PJ_ENOMEM); 
     283        codec->op = &gsm_op; 
     284        codec->factory = factory; 
    283285    } 
    284286 
     
    414416        return PJMEDIA_CODEC_EPCMTOOSHORT; 
    415417 
    416     gsm_encode(codec->codec_data, (const short*)input->buf,  
     418    gsm_encode(codec->codec_data, (short*)input->buf,  
    417419               (unsigned char*)output->buf); 
    418420 
     
    441443 
    442444    gsm_decode(codec->codec_data,  
    443                (const unsigned char*)input->buf,  
     445               (unsigned char*)input->buf,  
    444446               (short*)output->buf); 
    445447 
Note: See TracChangeset for help on using the changeset viewer.