Changeset 4167 for pjproject/trunk/pjmedia/include/pjmedia/vid_port.h
- Timestamp:
- Jun 15, 2012 8:13:43 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia/vid_port.h
r3893 r4167 79 79 80 80 /** 81 * Create a video port with the specified parameter. 81 * Create a video port with the specified parameter. Video port may open 82 * the video stream with different parameter than the requested values in 83 * the \a prm.vidparam argument. Application can check the the values in 84 * the \a prm.vidparam argument to see if they have changed. 82 85 * 83 86 * @param pool Pool to allocate memory from. 84 * @param prm The video port parameter. 87 * @param prm On input, it specifies the video port parameters 88 * to be used. On output, prm.vidparam will be set to 89 * the actual video device parameters used to open the 90 * stream. 85 91 * @param p_vp Pointer to receive the result. 86 92 * … … 89 95 */ 90 96 PJ_DECL(pj_status_t) pjmedia_vid_port_create(pj_pool_t *pool, 91 constpjmedia_vid_port_param *prm,97 pjmedia_vid_port_param *prm, 92 98 pjmedia_vid_port **p_vp); 93 99
Note: See TracChangeset
for help on using the changeset viewer.