comparison avcodec.h @ 9574:e83504a0f279 libavcodec

Remove redundant chatter from avcodec_encode_audio()
author michael
date Mon, 27 Apr 2009 12:39:30 +0000
parents c939417a3a39
children cb2eaa883d4f
comparison
equal deleted inserted replaced
9573:c939417a3a39 9574:e83504a0f279
3186 int *data_size_ptr, 3186 int *data_size_ptr,
3187 uint8_t *buf, int buf_size); 3187 uint8_t *buf, int buf_size);
3188 3188
3189 /** 3189 /**
3190 * Encodes an audio frame from \p samples into \p buf. 3190 * Encodes an audio frame from \p samples into \p buf.
3191 * The avcodec_encode_audio() function encodes an audio frame from the input
3192 * buffer \p samples. To encode it, it makes use of the audio codec which was
3193 * coupled with \p avctx using avcodec_open(). The resulting encoded frame is
3194 * stored in output buffer \p buf.
3195 * 3191 *
3196 * @note The output buffer should be at least \c FF_MIN_BUFFER_SIZE bytes large. 3192 * @note The output buffer should be at least \c FF_MIN_BUFFER_SIZE bytes large.
3197 * However, for PCM audio the user will know how much space is needed 3193 * However, for PCM audio the user will know how much space is needed
3198 * because it depends on the value passed in \p buf_size as described 3194 * because it depends on the value passed in \p buf_size as described
3199 * below. In that case a lower value can be used. 3195 * below. In that case a lower value can be used.