Ignore:
Timestamp:
Feb 24, 2011 7:47:55 AM (13 years ago)
Author:
nanang
Message:

Re #1182:

  • Added video stream interface in vid_stream.h, the video stream will be able to handle different video formats in encoding and decoding direction.
  • Renamed video device stream class identifiers from 'pjmedia_vid_stream*' to 'pjmedia_vid_dev_stream*' as 'pjmedia_vid_stream' is used by video stream interface.
  • Added ffmpeg video capability to be able to parse SDP format param for H263 and also decide video format for encoding direction based on remote preference and local format-capability setting.
  • Added some new APIs in jitter buffer for handling video stream: pjmedia_jbuf_put_frame3(), pjmedia_jbuf_get_frame3(), pjmedia_jbuf_peek_frame(), and pjmedia_jbuf_remove_frame().
  • Moved pjmedia_stream_info_from_sdp() from session to stream
File:
1 edited

Legend:

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

    r3402 r3420  
    980980 
    981981/** 
     982 * Maximum video frame size. 
     983 * Default: 16kB 
     984 */ 
     985#ifndef PJMEDIA_MAX_VIDEO_FRAME_SIZE                     
     986#  define PJMEDIA_MAX_VIDEO_FRAME_SIZE                  (1<<14) 
     987#endif 
     988 
     989 
     990/** 
    982991 * Specify the maximum duration (in ms) for resynchronization. When a media 
    983992 * is late to another media it is supposed to be synchronized to, it is 
Note: See TracChangeset for help on using the changeset viewer.