>
> It should be handled as an error if resource_formats[0] is PIPE_FORMAT_NONE.
>
> Better write this as:
>
> if (resource_formats[i] == PIPE_FORMAT_NONE) {
>     if (i == 0)
>         gotot error;
>     continue;
> }
> ...
>

I dont think it can be zero.
In the beginning of vl_video_buffer.c formats and return values are defined and 
resource_formats[0] is guranteed to not
be PIPE_FORMAT_NONE. The only other return value is null which caught 
immediately after requesting resource_formats
(line 59, in si_uvd.c).
So maybe
assert(resource_formats[0] == PIPE_FORMAT_NONE)
for debugging purposes?
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to