Clarify responsibility for freeing a buffer when using vdpau.

Originally committed as revision 20376 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Carl Eugen Hoyos 2009-10-27 08:30:50 +00:00
parent b70bc02279
commit 6d7d410f8b

View File

@ -75,9 +75,11 @@ struct vdpau_render_state {
VdpPictureInfoVC1 vc1;
} info;
/** Describe size/location of the compressed video data. */
/** Describe size/location of the compressed video data.
Set to 0 when freeing bitstream_buffers. */
int bitstream_buffers_allocated;
int bitstream_buffers_used;
/** The user is responsible for freeing this buffer using av_freep(). */
VdpBitstreamBuffer *bitstream_buffers;
};