On Sun, Mar 06, 2016 at 11:03:54PM +0000, Mark Thompson wrote:
> ---
>  libavfilter/Makefile        |   2 +
>  libavfilter/allfilters.c    |   2 +
>  libavfilter/avfilter.c      |   2 +
>  libavfilter/avfilter.h      |   9 ++
>  libavfilter/vf_hwdownload.c | 215 +++++++++++++++++++++++++++++++++++++
>  libavfilter/vf_hwupload.c   | 255 
> ++++++++++++++++++++++++++++++++++++++++++++
>  6 files changed, 485 insertions(+)
>  create mode 100644 libavfilter/vf_hwdownload.c
>  create mode 100644 libavfilter/vf_hwupload.c

You should bump version and update changelog eventually.

> --- /dev/null
> +++ b/libavfilter/vf_hwdownload.c
> @@ -0,0 +1,215 @@
> +static int hwdownload_filter_frame(AVFilterLink *link, AVFrame *input)
> +{
> +  fail:

nit: Place goto labels on the first column.


> --- /dev/null
> +++ b/libavfilter/vf_hwupload.c
> @@ -0,0 +1,255 @@
> +static int hwupload_query_formats(AVFilterContext *avctx)
> +{
> +  fail:

same

> +static int hwupload_config_output(AVFilterLink *outlink)
> +{
> +  fail:

same

> +static int hwupload_filter_frame(AVFilterLink *link, AVFrame *input)
> +{
> +  fail:

same

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

Reply via email to