Ignore:
Timestamp:
Nov 22, 2019 6:18:55 AM (4 years ago)
Author:
ming
Message:

Fixed #2253: Support for VP8 and VP9 video codec

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia-codec/config.h

    r6101 r6110  
    581581#   define PJMEDIA_CODEC_OPENH264_LOG_LEVEL  WELS_LOG_ERROR 
    582582#endif 
     583 
     584/** 
     585 * Enable VPX VP8 codec. 
     586 * 
     587 * Default: 1 
     588 */ 
     589#ifndef PJMEDIA_HAS_VPX_CODEC_VP8 
     590#   define PJMEDIA_HAS_VPX_CODEC_VP8            1 
     591#endif 
     592 
     593/** 
     594 * Enable VPX VP9 codec. 
     595 * 
     596 * Default: 0 (disabled) 
     597 */ 
     598#ifndef PJMEDIA_HAS_VPX_CODEC_VP9 
     599#   define PJMEDIA_HAS_VPX_CODEC_VP9            0 
     600#endif 
     601 
    583602/** 
    584603 * @} 
Note: See TracChangeset for help on using the changeset viewer.