comparison avcodec.h @ 11563:5111783be6ad libavcodec

Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY. Patch by Jean-Daniel Dupas, devlists shadowlab org
author cehoyos
date Wed, 31 Mar 2010 12:29:58 +0000
parents dcf8221ed29f
children 2baae9246958
comparison
equal deleted inserted replaced
11562:66f3d2ff88b7 11563:5111783be6ad
3443 * @param avctx the codec context 3443 * @param avctx the codec context
3444 * @param[out] picture The AVFrame in which the decoded video frame will be stored. 3444 * @param[out] picture The AVFrame in which the decoded video frame will be stored.
3445 * @param[in] avpkt The input AVpacket containing the input buffer. 3445 * @param[in] avpkt The input AVpacket containing the input buffer.
3446 * You can create such packet with av_init_packet() and by then setting 3446 * You can create such packet with av_init_packet() and by then setting
3447 * data and size, some decoders might in addition need other fields like 3447 * data and size, some decoders might in addition need other fields like
3448 * flags&PKT_FLAG_KEY. All decoders are designed to use the least 3448 * flags&AV_PKT_FLAG_KEY. All decoders are designed to use the least
3449 * fields possible. 3449 * fields possible.
3450 * @param[in,out] got_picture_ptr Zero if no frame could be decompressed, otherwise, it is nonzero. 3450 * @param[in,out] got_picture_ptr Zero if no frame could be decompressed, otherwise, it is nonzero.
3451 * @return On error a negative value is returned, otherwise the number of bytes 3451 * @return On error a negative value is returned, otherwise the number of bytes
3452 * used or zero if no frame could be decompressed. 3452 * used or zero if no frame could be decompressed.
3453 */ 3453 */