diff options
author | Víctor Paesa <victorpaesa@googlemail.com> | 2010-07-11 14:56:32 +0000 |
---|---|---|
committer | Víctor Paesa <victorpaesa@googlemail.com> | 2010-07-11 14:56:32 +0000 |
commit | 31769dad7d182983e2943d519201c24e9cea6f3e (patch) | |
tree | 69b3a52928bc57f17aae2f531bb7e8489319a859 | |
parent | 231745781f16bbee6af0e11459087d9272cb0853 (diff) | |
download | ffmpeg-31769dad7d182983e2943d519201c24e9cea6f3e.tar.gz |
Clarify the avoidance of usage of these AVStream fields.
Originally committed as revision 24198 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avformat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index cb21dac5cb..7d7fce855d 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -498,7 +498,8 @@ typedef struct AVStream { AVMetadata *metadata; - /* av_read_frame() support */ + /* Intended mostly for av_read_frame() support. Not supposed to be used by */ + /* external applications; try to use something else if at all possible. */ const uint8_t *cur_ptr; int cur_len; AVPacket cur_pkt; |