Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-22 16:50:00 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-10-22 16:50:06 +0400
commitf9cf14c8da2a6af4ee8524ca950f644a0b081866 (patch)
treeb87fd82ec4c91d3be18780896fd3b4a1778408e9 /libavcodec/avcodec.h
parente3a91c51f7136c1bfd96f71b177b693e08427880 (diff)
parent6173a8fe5d2c0dd490b102101ae5e283d41dfe87 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: riff: remove a write-only variable lavc: extend frame_size doxy. alacdec: set bits_per_raw_sample Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 3936d5e1c0..8ee08148b5 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2249,7 +2249,13 @@ typedef struct AVCodecContext {
/* The following data should not be initialized. */
/**
- * Samples per packet, initialized when calling 'init'.
+ * Number of samples per channel in an audio frame.
+ *
+ * - encoding: set by libavcodec in avcodec_open2(). Each submitted frame
+ * except the last must contain exactly frame_size samples per channel.
+ * May be 0 when the codec has CODEC_CAP_VARIABLE_FRAME_SIZE set, then the
+ * frame size is not restricted.
+ * - decoding: may be set by some decoders to indicate constant frame size
*/
int frame_size;