Mercurial > mplayer.hg
view libmpcodecs/ad_internal.h @ 17563:8084bcdb4898
Correct RGB vs. BGR confusion, the macros vec_mstrgb24 and vec_mstbgr24 each
do the opposite of what they say.
The vec_mstrgb24 and vec_mstbgr24 macros should be opposites and not perform
the same things.
patch by Alan Curry, pacman_at_world_dot_std_dot_com
author | diego |
---|---|
date | Thu, 09 Feb 2006 00:29:35 +0000 |
parents | 6ff3379a0862 |
children | 4faee1254928 |
line wrap: on
line source
#include "codec-cfg.h" #include "libaf/af_format.h" #include "stream.h" #include "demuxer.h" #include "stheader.h" #include "ad.h" static int init(sh_audio_t *sh); static int preinit(sh_audio_t *sh); static void uninit(sh_audio_t *sh); static int control(sh_audio_t *sh,int cmd,void* arg, ...); static int decode_audio(sh_audio_t *sh,unsigned char *buffer,int minlen,int maxlen); #define LIBAD_EXTERN(x) ad_functions_t mpcodecs_ad_##x = {\ &info,\ preinit,\ init,\ uninit,\ control,\ decode_audio\ };