diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-01-03 17:58:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-01-03 17:58:25 +0000 |
commit | 2e94fb5d460171e91eb0919d6dee56bbd7228d8e (patch) | |
tree | 5e81841bc42d289b9584fc98ab81e1302975611a | |
parent | db4fac64db305e14f04d87f639b3fc851266b38c (diff) | |
download | ffmpeg-2e94fb5d460171e91eb0919d6dee56bbd7228d8e.tar.gz |
Future doxy for a few fields of AVSubtitleRect.
Originally committed as revision 16413 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 8a8228193d..3269561365 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2394,11 +2394,11 @@ enum AVSubtitleType { }; typedef struct AVSubtitleRect { - uint16_t x; - uint16_t y; - uint16_t w; - uint16_t h; - uint16_t nb_colors; + uint16_t x; ///< top left corner of pict, undefined when pict is not set + uint16_t y; ///< top left corner of pict, undefined when pict is not set + uint16_t w; ///< width of pict, undefined when pict is not set + uint16_t h; ///< height of pict, undefined when pict is not set + uint16_t nb_colors; ///< number of colors in pict, undefined when pict is not set int linesize; uint32_t *rgba_palette; uint8_t *bitmap; |