Clarify responsibility for freeing a buffer when using vdpau.

Originally committed as revision 20376 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Carl Eugen Hoyos 15 years ago
parent b70bc02279
commit 6d7d410f8b
  1. 4
      libavcodec/vdpau.h

@ -75,9 +75,11 @@ struct vdpau_render_state {
VdpPictureInfoVC1 vc1; VdpPictureInfoVC1 vc1;
} info; } 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_allocated;
int bitstream_buffers_used; int bitstream_buffers_used;
/** The user is responsible for freeing this buffer using av_freep(). */
VdpBitstreamBuffer *bitstream_buffers; VdpBitstreamBuffer *bitstream_buffers;
}; };

Loading…
Cancel
Save