diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-03-17 07:49:36 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-03-17 07:49:36 +0000 |
commit | 6eec969d5481c2554725d9c8fd30f252aaf31959 (patch) | |
tree | 88b758b918522b16436f926d2295507456c83797 | |
parent | e88c9dac07f71c981cba5fa6bfa2d0c977aa7c5a (diff) | |
download | ffmpeg-6eec969d5481c2554725d9c8fd30f252aaf31959.tar.gz |
document two variables in Indeo5 decoding context
Originally committed as revision 22579 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/indeo5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/indeo5.c b/libavcodec/indeo5.c index 82f1881872..383bcf9ea2 100644 --- a/libavcodec/indeo5.c +++ b/libavcodec/indeo5.c @@ -57,8 +57,8 @@ typedef struct { IVIPlaneDesc planes[3]; ///< color planes const uint8_t *frame_data; ///< input frame data pointer int buf_switch; ///< used to switch between three buffers - int dst_buf; - int ref_buf; + int dst_buf; ///< buffer index for the currently decoded frame + int ref_buf; ///< inter frame reference buffer index uint32_t frame_size; ///< frame size in bytes int frame_type; int prev_frame_type; ///< frame type of the previous frame |