comparison avcodec.h @ 12051:3798d134f330 libavcodec

Grammar fixes
author mru
date Fri, 02 Jul 2010 00:03:48 +0000
parents d5705b52b76e
children 126392340f69
comparison
equal deleted inserted replaced
12050:a3fe680377aa 12051:3798d134f330
46 #define AV_NOPTS_VALUE INT64_C(0x8000000000000000) 46 #define AV_NOPTS_VALUE INT64_C(0x8000000000000000)
47 #define AV_TIME_BASE 1000000 47 #define AV_TIME_BASE 1000000
48 #define AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE} 48 #define AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE}
49 49
50 /** 50 /**
51 * Identifie the syntax and semantics of the bitstream. 51 * Identify the syntax and semantics of the bitstream.
52 * The principle is roughly: 52 * The principle is roughly:
53 * Two decoders with the same ID can decode the same streams. 53 * Two decoders with the same ID can decode the same streams.
54 * Two encoders with the same ID can encode compatible streams. 54 * Two encoders with the same ID can encode compatible streams.
55 * There may be slight deviations from the principle due to implementation 55 * There may be slight deviations from the principle due to implementation
56 * details. 56 * details.
3531 const uint8_t *buf, int buf_size); 3531 const uint8_t *buf, int buf_size);
3532 #endif 3532 #endif
3533 3533
3534 /** 3534 /**
3535 * Decode a subtitle message. 3535 * Decode a subtitle message.
3536 * Return a negative value on error, otherwise returns the number of bytes used. 3536 * Return a negative value on error, otherwise return the number of bytes used.
3537 * If no subtitle could be decompressed, got_sub_ptr is zero. 3537 * If no subtitle could be decompressed, got_sub_ptr is zero.
3538 * Otherwise, the subtitle is stored in *sub. 3538 * Otherwise, the subtitle is stored in *sub.
3539 * 3539 *
3540 * @param avctx the codec context 3540 * @param avctx the codec context
3541 * @param[out] sub The AVSubtitle in which the decoded subtitle will be stored. 3541 * @param[out] sub The AVSubtitle in which the decoded subtitle will be stored.