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
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc