On Wed, Jul 11, 2012 at 11:54:28AM +0200, Luca Barbato wrote: > > --- a/libavutil/mem.h > +++ b/libavutil/mem.h > @@ -79,6 +79,22 @@ > > /** > + * Helper function to allocate a block of size * nmemb bytes with > + * using av_malloc()
s/using//, end in a period > + * @param nmemb Number of elements > + * @param size Size of the single element lowercase; these are not complete sentences; vertical align > @@ -113,6 +129,23 @@ void av_free(void *ptr); > > /** > + * Helper function to allocate a block of size * nmemb bytes with > + * using av_mallocz() > + * @param nmemb Number of elements > + * @param size Size of the single element > + * @return Pointer to the allocated block, NULL if the block cannot > + * be allocated. > + * @see av_mallocz() > + * @see av_malloc_array() same Diego _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
