Ignore:
Timestamp:
Apr 10, 2014 10:01:07 AM (10 years ago)
Author:
bennylp
Message:

Re #1758: Initial implementation of OpenH264 wrapper. Supports:

  • library detection via autoconf
  • CBP
  • packetization modes: 0, 1
  • key frame request and indication
  • obey remote's fmtp

Also added video codec test in samples (similar to the one in pjmedia test though).
And there are some fixes here and there too (e.g. in vid_codec_util.c).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/vid_codec_util.c

    r4593 r4815  
    632632 
    633633    /* Calculate maximum size (in macroblocks) */ 
    634     max_fs = fmtp->max_mbps * fps->denum / fps->num; 
     634    max_fs = fmtp->max_mbps * the_fps.denum / the_fps.num; 
    635635    max_fs = PJ_MIN(max_fs, fmtp->max_fs); 
    636636 
Note: See TracChangeset for help on using the changeset viewer.