Ignore:
Timestamp:
Jun 5, 2008 10:50:40 AM (16 years ago)
Author:
nanang
Message:

Ticket #473:

  • fixed issue on Speex multiple frames (encoding: encoded bits concatenation & decoding: frames parsing)
  • updated pjmedia stream & codecs on encoding multiple frames
  • introduced bit_info in pjmedia_frame and jitter buffer
File:
1 edited

Legend:

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

    r974 r1983  
    299299struct pjmedia_frame 
    300300{ 
    301     pjmedia_frame_type   type;      /**< Frame type.                */ 
    302     void                *buf;       /**< Pointer to buffer.         */ 
    303     pj_size_t            size;      /**< Frame size in bytes.       */ 
    304     pj_timestamp         timestamp; /**< Frame timestamp.           */ 
     301    pjmedia_frame_type   type;      /**< Frame type.                        */ 
     302    void                *buf;       /**< Pointer to buffer.                 */ 
     303    pj_size_t            size;      /**< Frame size in bytes.               */ 
     304    pj_timestamp         timestamp; /**< Frame timestamp.                   */ 
     305    pj_uint32_t          bit_info;  /**< Bit info of the frame, sample case: 
     306                                         a frame may not exactly start and end 
     307                                         at the octet boundary, so this field  
     308                                         may be used for specifying start &  
     309                                         end bit offset.                    */ 
    305310}; 
    306311 
Note: See TracChangeset for help on using the changeset viewer.