- Timestamp:
- Dec 28, 2016 3:40:07 AM (8 years ago)
- Location:
- pjproject/branches/projects/uwp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/uwp
- Property svn:mergeinfo changed
/pjproject/trunk (added) merged: 5209,5212-5234,5237-5253,5255,5257-5292,5294-5297,5299-5332,5334-5394,5396-5438,5440-5469,5471-5496,5498-5510
- Property svn:mergeinfo changed
-
pjproject/branches/projects/uwp/pjmedia/include/pjmedia-codec/config.h
r4331 r5513 421 421 422 422 /** 423 * Enable OPUS codec. 424 * 425 * Default: 0 426 */ 427 #ifndef PJMEDIA_HAS_OPUS_CODEC 428 # define PJMEDIA_HAS_OPUS_CODEC 0 429 #endif 430 431 /** 432 * OPUS codec sample rate. 433 * 434 * Default: 48000 435 */ 436 #ifndef PJMEDIA_CODEC_OPUS_DEFAULT_SAMPLE_RATE 437 # define PJMEDIA_CODEC_OPUS_DEFAULT_SAMPLE_RATE 48000 438 #endif 439 440 /** 441 * OPUS codec default maximum average bit rate. 442 * 443 * Default: 0 (leave it to default value specified by Opus, which will 444 * take into account factors such as media content (speech/music), sample 445 * rate, channel count, etc). 446 */ 447 #ifndef PJMEDIA_CODEC_OPUS_DEFAULT_BIT_RATE 448 # define PJMEDIA_CODEC_OPUS_DEFAULT_BIT_RATE 0 449 #endif 450 451 452 /** 453 * OPUS default encoding complexity, which is an integer from 454 * 0 to 10, where 0 is the lowest complexity and 10 is the highest. 455 * 456 * Default: 5 457 */ 458 #ifndef PJMEDIA_CODEC_OPUS_DEFAULT_COMPLEXITY 459 # define PJMEDIA_CODEC_OPUS_DEFAULT_COMPLEXITY 5 460 #endif 461 462 463 /** 464 * OPUS default CBR (constant bit rate) setting 465 * 466 * Default: PJ_FALSE (which means Opus will use VBR (variable bit rate)) 467 */ 468 #ifndef PJMEDIA_CODEC_OPUS_DEFAULT_CBR 469 # define PJMEDIA_CODEC_OPUS_DEFAULT_CBR PJ_FALSE 470 #endif 471 472 /** 423 473 * Specify if FFMPEG codecs are available. 424 474 * 425 * Default: PJMEDIA_HAS_LIBAV CODEC475 * Default: PJMEDIA_HAS_LIBAVFORMAT 426 476 */ 427 477 #ifndef PJMEDIA_HAS_FFMPEG_CODEC 428 # define PJMEDIA_HAS_FFMPEG_CODEC PJMEDIA_HAS_LIBAV CODEC478 # define PJMEDIA_HAS_FFMPEG_CODEC PJMEDIA_HAS_LIBAVFORMAT 429 479 #endif 430 480
Note: See TracChangeset
for help on using the changeset viewer.