[FFmpeg-devel] [PATCH] avfilter/hwupload_cuda: Add missing semicolon.

James Almer jamrial at gmail.com
Thu Feb 25 03:11:26 CET 2016


On 2/24/2016 11:05 PM, Matt Oliver wrote:
> This is a really simple patch as apparently when the cuda hwcontext filter
> was added a semicolon was forgotten.
> 
> For such simple patches as this is it worth even posting to the mailing
> list or just directly applying it straight away?

Trivial patches like this can be applied straight away. Especially when they
fix compilation failures (Which i assume is the case here).

> 
> ---
>  libavfilter/vf_hwupload_cuda.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavfilter/vf_hwupload_cuda.c b/libavfilter/vf_hwupload_cuda.c
> index 6f4176f..c22221c 100644
> --- a/libavfilter/vf_hwupload_cuda.c
> +++ b/libavfilter/vf_hwupload_cuda.c
> @@ -195,7 +195,7 @@ static const AVOption cudaupload_options[] = {
>      { NULL },
>  };
> 
> -AVFILTER_DEFINE_CLASS(cudaupload)
> +AVFILTER_DEFINE_CLASS(cudaupload);
> 
>  static const AVFilterPad cudaupload_inputs[] = {
>      {
> --
> 
> 
> 
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 



More information about the ffmpeg-devel mailing list