diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-07-27 15:21:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-07-27 15:21:29 +0000 |
commit | ec906fcdd79cf472868430f0f703bef29cbff713 (patch) | |
tree | 11ee20932e64f1fbfcc930a1bdfa6ca65e7afed3 | |
parent | 76c56376ca2b8c009eda8ddba30a5e2a282e8540 (diff) | |
download | ffmpeg-ec906fcdd79cf472868430f0f703bef29cbff713.tar.gz |
Fix 2 doxy comments that referred to the wrong variable.
Originally committed as revision 24547 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index aab95ee198..78a0dd353a 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -509,7 +509,7 @@ typedef struct AVStream { int64_t duration; #if LIBAVFORMAT_VERSION_INT < (53<<16) - char language[4]; /** ISO 639-2/B 3-letter language code (empty string if undefined) */ + char language[4]; /**< ISO 639-2/B 3-letter language code (empty string if undefined) */ #endif /* av_read_frame() support */ @@ -701,7 +701,7 @@ typedef struct AVFormatContext { #endif /* av_seek_frame() support */ - int64_t data_offset; /** offset of the first packet */ + int64_t data_offset; /**< offset of the first packet */ int index_built; int mux_rate; |