comparison avformat.h @ 4443:2761281687e3 libavformat

Remove @deprecated notice from AVFrac, it is not deprecated anymore.
author stefano
date Wed, 11 Feb 2009 00:19:05 +0000
parents 58451dddc381
children ed1ff5b9e0d5
comparison
equal deleted inserted replaced
4442:85f1c6887bef 4443:2761281687e3
209 /* fractional numbers for exact pts handling */ 209 /* fractional numbers for exact pts handling */
210 210
211 /** 211 /**
212 * The exact value of the fractional number is: 'val + num / den'. 212 * The exact value of the fractional number is: 'val + num / den'.
213 * num is assumed to be 0 <= num < den. 213 * num is assumed to be 0 <= num < den.
214 * @deprecated Use AVRational instead.
215 */ 214 */
216 typedef struct AVFrac { 215 typedef struct AVFrac {
217 int64_t val, num, den; 216 int64_t val, num, den;
218 } AVFrac; 217 } AVFrac;
219 218