Ignore:
Timestamp:
Feb 8, 2006 10:43:39 PM (18 years ago)
Author:
bennylp
Message:

Finished new pjmedia rewrite

File:
1 edited

Legend:

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

    r140 r159  
    260260 
    261261 
     262/************************************************************ 
     263 * CODEC 
     264 ***********************************************************/ 
     265/** 
     266 * @hideinitializer 
     267 * Unsupported codec. 
     268 */ 
     269#define PJMEDIA_CODEC_EUNSUP        (PJMEDIA_ERRNO_START+80)    /* 220080 */ 
     270 
     271 
     272/************************************************************ 
     273 * MEDIA 
     274 ***********************************************************/ 
     275/** 
     276 * @hideinitializer 
     277 * Invalid remote IP address (in SDP). 
     278 */ 
     279#define PJMEDIA_EINVALIDIP          (PJMEDIA_ERRNO_START+100)    /* 220100 */ 
     280/** 
     281 * @hideinitializer 
     282 * Asymetric codec is not supported. 
     283 */ 
     284#define PJMEDIA_EASYMCODEC          (PJMEDIA_ERRNO_START+101)    /* 220101 */ 
     285/** 
     286 * @hideinitializer 
     287 * Invalid payload type. 
     288 */ 
     289#define PJMEDIA_EINVALIDPT          (PJMEDIA_ERRNO_START+102)    /* 220102 */ 
     290/** 
     291 * @hideinitializer 
     292 * Missing rtpmap. 
     293 */ 
     294#define PJMEDIA_EMISSINGRTPMAP      (PJMEDIA_ERRNO_START+103)    /* 220103 */ 
     295 
     296 
     297 
    262298PJ_END_DECL 
    263299 
Note: See TracChangeset for help on using the changeset viewer.