On Tue, Feb 07, 2012 at 01:39:22AM +0530, Aneesh Dogra wrote:
> 
> --- a/libavcodec/bytestream.h
> +++ b/libavcodec/bytestream.h
> @@ -39,6 +45,17 @@ static av_always_inline void bytestream_put_ 
> ##name(uint8_t **b, const type valu
>      write(*b, value);\
>      (*b) += bytes;\
>  }\
> +static av_always_inline void bytestream2_put_ ## name ## u(PutByteContext 
> *p, const type value)\
> +{\
> +    bytestream_put_ ## name(&p->buffer, value);\
> +}\
> +static av_always_inline void bytestream2_put_ ## name(PutByteContext *p, 
> const type value){\

Move the { to the next line.  You could maybe also align all those
backslashes...

Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to