On Sat, Dec 28, 2013 at 03:43:36PM +0100, Luca Barbato wrote:
> And reorder them while at it..
> ---
>  libavcodec/ffv1dec.c | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/libavcodec/ffv1dec.c b/libavcodec/ffv1dec.c
> index 65d34ad..d79000e 100644
> --- a/libavcodec/ffv1dec.c
> +++ b/libavcodec/ffv1dec.c
> @@ -25,18 +25,18 @@
>   * FF Video Codec 1 (a lossless codec) decoder
>   */
>  
> -#include "libavutil/pixdesc.h"
>  #include "libavutil/crc.h"
> -#include "libavutil/opt.h"
>  #include "libavutil/imgutils.h"
> +#include "libavutil/opt.h"
> +#include "libavutil/pixdesc.h"
> +
>  #include "avcodec.h"
> -#include "internal.h"
> +#include "ffv1.h"
>  #include "get_bits.h"
> -#include "put_bits.h"
> -#include "rangecoder.h"
>  #include "golomb.h"
> +#include "internal.h"
>  #include "mathops.h"
> -#include "ffv1.h"
> +#include "rangecoder.h"
>  
>  static inline av_flatten int get_symbol_inline(RangeCoder *c, uint8_t *state,
>                                                 int is_signed)
> -- 

Won't do - it's hard to tell what header was removed.
Make it two patches if you like reordering that much.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to