Ignore:
Timestamp:
Mar 31, 2011 5:29:54 PM (13 years ago)
Author:
nanang
Message:

Re #1219:

  • Initial version of H264 implementation (codec & packetization).
  • Added vid_codec_util.h/c for video codec utilities (e.g: fmtp parser).
  • Updated video RTP packetizations to be configurable and have internal state (to be more resilient to packet lost, etc).
  • Fixed wrong SPF calculation in PJMEDIA_SPF2.
  • Updated vid_codec_test.c to also have RTP packetization test.
  • Updated sdp_neg.c to verify H.264 capability match.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/2.0-dev/pjmedia/include/pjmedia/vid_codec.h

    r3461 r3493  
    224224     * belong to the same picture will share the same RTP timestamp and also 
    225225     * there is marker bit in the RTP header that is usually reserved for 
    226      * end-of-picture flag. 
     226     * end-of-picture flag. Also note that in case of noticing packet lost, 
     227     * application should keep calling this function with payload pointer 
     228     * set to NULL, as the packetizer need to update its internal state. 
    227229     * 
    228230     * @param codec     The codec instance 
     
    242244                               pj_size_t   payload_len, 
    243245                               pj_uint8_t *bits, 
    244                                pj_size_t  *bits_len); 
     246                               pj_size_t   bits_len, 
     247                               unsigned   *bits_pos); 
    245248 
    246249    /**  
Note: See TracChangeset for help on using the changeset viewer.