提交 dfd65663 编写于 作者: M Marton Balint

avformat/avio: fix avio_feof documentation

It has been this way too long to change behaviour, so let's change the docs
instead.
Signed-off-by: NMarton Balint <cus@passwd.hu>
上级 c1cbeb87
...@@ -236,7 +236,7 @@ typedef struct AVIOContext { ...@@ -236,7 +236,7 @@ typedef struct AVIOContext {
int (*write_packet)(void *opaque, uint8_t *buf, int buf_size); int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
int64_t (*seek)(void *opaque, int64_t offset, int whence); int64_t (*seek)(void *opaque, int64_t offset, int whence);
int64_t pos; /**< position in the file of the current buffer */ int64_t pos; /**< position in the file of the current buffer */
int eof_reached; /**< true if eof reached */ int eof_reached; /**< true if was unable to read due to error or eof */
int write_flag; /**< true if open for writing */ int write_flag; /**< true if open for writing */
int max_packet_size; int max_packet_size;
unsigned long checksum; unsigned long checksum;
...@@ -566,8 +566,8 @@ static av_always_inline int64_t avio_tell(AVIOContext *s) ...@@ -566,8 +566,8 @@ static av_always_inline int64_t avio_tell(AVIOContext *s)
int64_t avio_size(AVIOContext *s); int64_t avio_size(AVIOContext *s);
/** /**
* feof() equivalent for AVIOContext. * Similar to feof() but also returns nonzero on read errors.
* @return non zero if and only if end of file * @return non zero if and only if at end of file or a read error happened when reading.
*/ */
int avio_feof(AVIOContext *s); int avio_feof(AVIOContext *s);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册