comparison avcodec.h @ 11528:b0e1c40e9d07 libavcodec

Add doxygen docs for av_xiphlacing Patch by Josh Allmann (joshua allmann gmail com)
author mstorsjo
date Mon, 22 Mar 2010 14:57:50 +0000
parents 7bfe7456e372
children 22ab9663ca4e
comparison
equal deleted inserted replaced
11527:9bd282dec604 11528:b0e1c40e9d07
3782 * Pad image. 3782 * Pad image.
3783 */ 3783 */
3784 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, enum PixelFormat pix_fmt, 3784 int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, enum PixelFormat pix_fmt,
3785 int padtop, int padbottom, int padleft, int padright, int *color); 3785 int padtop, int padbottom, int padleft, int padright, int *color);
3786 3786
3787 /**
3788 * Encodes extradata length to a buffer. Used by xiph codecs.
3789 *
3790 * @param s buffer to write to; must be at least (v/255+1) bytes long
3791 * @param v size of extradata in bytes
3792 * @return number of bytes written to the buffer.
3793 */
3787 unsigned int av_xiphlacing(unsigned char *s, unsigned int v); 3794 unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
3788 3795
3789 /** 3796 /**
3790 * Parses str and put in width_ptr and height_ptr the detected values. 3797 * Parses str and put in width_ptr and height_ptr the detected values.
3791 * 3798 *