On Thu, Sep 04, 2014 at 04:11:21PM +0300, Rémi Denis-Courmont wrote:
> --- a/libavcodec/vdpau.c
> +++ b/libavcodec/vdpau.c
> @@ -79,6 +83,23 @@ int ff_vdpau_common_init(AVCodecContext *avctx, 
> VdpDecoderProfile profile,
>  
> +    surface_query_caps = ff_vdpau_get_proc_address(avctx,
> +                                 
> VDP_FUNC_ID_VIDEO_SURFACE_QUERY_CAPABILITIES);

If you want to keep line length within limits:

   surface_query_caps =
       ff_vdpau_get_proc_address(avctx,
                                 VDP_FUNC_ID_VIDEO_SURFACE_QUERY_CAPABILITIES);

same below

> +    if (status != VDP_STATUS_OK || supported != VDP_TRUE || max_level < level
> +     || max_width < avctx->width || max_height < avctx->height)

Move || to the end of the line.

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

Reply via email to