- Timestamp:
- Jun 9, 2008 12:32:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/samples/encdec.c
r1870 r2000 52 52 "\n" 53 53 ; 54 55 #ifndef HAS_G729_CODEC56 # define HAS_G729_CODEC 057 #endif58 59 #if HAS_G729_CODEC60 #include <keystream_g729ab.h>61 #endif62 54 63 55 //#undef PJ_TRACE … … 182 174 } 183 175 184 /* Simulate jitter buffer bug */185 if (pci->pt==PJMEDIA_RTP_PT_G729 && frm_bit.size == 2) {186 TRACE_((THIS_FILE, "%d.%03d G729 SID frame masqueraded", T));187 frm_bit.size = 10;188 }189 190 176 /* Parse the bitstream (not really necessary for this case 191 177 * since we always decode 1 frame, but it's still good … … 264 250 CHECK( pjmedia_codec_speex_init(mept, 0, 5, 5) ); 265 251 #endif 266 #if HAS_G729_CODEC267 CHECK( keystream_g729ab_init(mept) );268 #endif269 252 #if PJMEDIA_HAS_G722_CODEC 270 253 CHECK( pjmedia_codec_g722_init(mept) );
Note: See TracChangeset
for help on using the changeset viewer.