[FFmpeg-soc] [soc]: r2262 - alacenc/alacenc.c
Benjamin Larsson
banan at ludd.ltu.se
Fri May 30 12:49:47 CEST 2008
jai_menon wrote:
> Author: jai_menon
> Date: Fri May 30 12:06:38 2008
> New Revision: 2262
>
> Log:
> initial commit: basic encoder framework, supports alac verbatim mode
>
Hi, please add a checkout script also. So that we lazy people can test
the code also.
[...]
> +/**
> + * put_sbits
> + * @param pb PutBitContext pointer
> + * @param bits Number of bits to be output
> + * @param val Data Bits
> + */
> +static void put_sbits(PutBitContext *pb, int bits, int32_t val)
> +{
> + put_bits(pb, bits, val & ((1<<bits)-1));
> +}
This should be moved to bitstream.h me thinks.
Besides that good work.
MvH
Benjamin Larsson
More information about the FFmpeg-soc
mailing list