comparison libswscale/swscale.h @ 32314:ba0ba590dc81

Add documentation for the returned value of sws_init_context().
author stefano
date Tue, 28 Sep 2010 22:23:53 +0000
parents 3456af9feaa3
children 549b1ad3f777
comparison
equal deleted inserted replaced
32313:ad6178f15dd1 32314:ba0ba590dc81
150 */ 150 */
151 struct SwsContext *sws_alloc_context(void); 151 struct SwsContext *sws_alloc_context(void);
152 152
153 /** 153 /**
154 * Initializes the swscaler context sws_context. 154 * Initializes the swscaler context sws_context.
155 *
156 * @return zero or positive value on success, a negative value on
157 * error
155 */ 158 */
156 int sws_init_context(struct SwsContext *sws_context, SwsFilter *srcFilter, SwsFilter *dstFilter); 159 int sws_init_context(struct SwsContext *sws_context, SwsFilter *srcFilter, SwsFilter *dstFilter);
157 160
158 /** 161 /**
159 * Frees the swscaler context swsContext. 162 * Frees the swscaler context swsContext.