On Fri, Sep 27, 2013 at 03:26:10PM +0200, Anton Khirnov wrote:
> ---
>  libavformat/Makefile     |    1 +
>  libavformat/allformats.c |    1 +
>  libavformat/hevcdec.c    |   64 
> ++++++++++++++++++++++++++++++++++++++++++++++
>  3 files changed, 66 insertions(+)
>  create mode 100644 libavformat/hevcdec.c

Changelog, docs, version bump?

> --- /dev/null
> +++ b/libavformat/hevcdec.c
> @@ -0,0 +1,64 @@
> +
> +#include "avformat.h"
> +#include "rawdec.h"
> +
> +#include "libavcodec/hevc.h"

I think we agreed to order this

#include "libavcodec/hevc.h"
#include "avformat.h"
#include "rawdec.h"

in the header cleanup patchset discussion.

> +            switch (type) {
> +            case NAL_VPS:        vps++;  break;
> +            case NAL_SPS:        sps++;  break;
> +            case NAL_PPS:        pps++;  break;
> +            case NAL_BLA_N_LP:
> +            case NAL_BLA_W_LP:
> +            case NAL_BLA_W_RADL:
> +            case NAL_CRA_NUT:
> +            case NAL_IDR_N_LP:
> +            case NAL_IDR_W_RADL: irap++; break;

Please break the lines.

Diego
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to