Commit 571d3fea authored by michael's avatar michael

tiny docs improvement which i apparebtly forgot to commit


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4394 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6cbf1dfb
...@@ -796,7 +796,10 @@ typedef struct AVCodecContext { ...@@ -796,7 +796,10 @@ typedef struct AVCodecContext {
enum SampleFormat sample_fmt; ///< sample format, currenly unused enum SampleFormat sample_fmt; ///< sample format, currenly unused
/* the following data should not be initialized */ /* the following data should not be initialized */
int frame_size; ///< in samples, initialized when calling 'init' /**
* samples per packet. initialized when calling 'init'
*/
int frame_size;
int frame_number; ///< audio or video frame number int frame_number; ///< audio or video frame number
int real_pict_num; ///< returns the real picture number of previous encoded frame int real_pict_num; ///< returns the real picture number of previous encoded frame
...@@ -1014,7 +1017,11 @@ typedef struct AVCodecContext { ...@@ -1014,7 +1017,11 @@ typedef struct AVCodecContext {
*/ */
int has_b_frames; int has_b_frames;
int block_align; ///< used by some WAV based audio codecs /**
* number of bytes per packet if constant and known or 0
* used by some WAV based audio codecs
*/
int block_align;
int parse_only; /* - decoding only: if true, only parsing is done int parse_only; /* - decoding only: if true, only parsing is done
(function avcodec_parse_frame()). The frame (function avcodec_parse_frame()). The frame
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment