comparison Plugins/Input/wma/libffwma/avcodec.h @ 1398:1ddaf20ab50e trunk

[svn] AltiVec support for WMA, by Luca "lu_zero" Barbato from Gentoo.
author chainsaw
date Thu, 13 Jul 2006 16:01:57 -0700
parents b13e87374f73
children
comparison
equal deleted inserted replaced
1397:86242883ddc7 1398:1ddaf20ab50e
1759 1759
1760 /*char *av_strdup(const char *s);*/ 1760 /*char *av_strdup(const char *s);*/
1761 void __av_freep(void **ptr); 1761 void __av_freep(void **ptr);
1762 #define av_freep(p) __av_freep((void **)(p)) 1762 #define av_freep(p) __av_freep((void **)(p))
1763 void *av_fast_realloc(void *ptr, int *size, unsigned int min_size); 1763 void *av_fast_realloc(void *ptr, int *size, unsigned int min_size);
1764 void *av_malloc(unsigned int size);
1765 void *av_mallocz(unsigned int size);
1766 void *av_realloc(void *ptr, unsigned int size);
1767 void av_free(void *ptr);
1764 /* for static data only */ 1768 /* for static data only */
1765 /* call av_free_static to release all staticaly allocated tables */ 1769 /* call av_free_static to release all staticaly allocated tables */
1766 void av_free_static(void); 1770 void av_free_static(void);
1767 void *__av_mallocz_static(void** location, unsigned int size); 1771 void *__av_mallocz_static(void** location, unsigned int size);
1768 #define av_mallocz_static(p, s) __av_mallocz_static((void **)(p), s) 1772 #define av_mallocz_static(p, s) __av_mallocz_static((void **)(p), s)