diff mbox

[FFmpeg-devel] hwcontext_opencl: Use correct function to enumerate devices

Message ID 3962a3fb-af87-6b26-16f9-f8c85baa11ca@jkqxz.net
State Accepted
Commit 21608bc30303b221db8f3e2fb0952e7e7f2bd270
Headers show

Commit Message

Mark Thompson Nov. 28, 2018, 12:16 a.m. UTC
Also assert that all required functions are present.
---
On 26/11/2018 08:57, Song, Ruiling wrote:
>> -----Original Message-----
>> From: ffmpeg-devel [mailto:ffmpeg-devel-bounces@ffmpeg.org] On Behalf Of
>> Mark Thompson
>> Sent: Monday, November 26, 2018 6:08 AM
>> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
>> Subject: [FFmpeg-devel] [PATCH] hwcontext_opencl: Use correct function to
>> enumerate devices
>>
>> ---
>>  libavutil/hwcontext_opencl.c | 6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/libavutil/hwcontext_opencl.c b/libavutil/hwcontext_opencl.c
>> index e6cef74269..6a26354c87 100644
>> --- a/libavutil/hwcontext_opencl.c
>> +++ b/libavutil/hwcontext_opencl.c
>> @@ -542,9 +542,9 @@ static int
>> opencl_device_create_internal(AVHWDeviceContext *hwdev,
>>                  continue;
>>          }
>>
>> -        err = opencl_enumerate_devices(hwdev, platforms[p], platform_name,
>> -                                       &nb_devices, &devices,
>> -                                       selector->context);
>> +        err = selector->enumerate_devices(hwdev, platforms[p], platform_name,
>> +                                          &nb_devices, &devices,
>> +                                          selector->context);
> I think it is better to check enumerate_devices  against null pointer before calling it, although it should works well currently.

The two enumerate functions should always be set when entering the function, since they are always required.  (Unlike the filter, where "do nothing" is a reasonable case.)

How about an assert at the start of the function to check that, like this?

- Mark


 libavutil/hwcontext_opencl.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Comments

Ruiling Song Nov. 28, 2018, 12:50 a.m. UTC | #1
> -----Original Message-----

> From: ffmpeg-devel [mailto:ffmpeg-devel-bounces@ffmpeg.org] On Behalf Of

> Mark Thompson

> Sent: Wednesday, November 28, 2018 8:17 AM

> To: ffmpeg-devel@ffmpeg.org

> Subject: [FFmpeg-devel] [PATCH] hwcontext_opencl: Use correct function to

> enumerate devices

> 

> Also assert that all required functions are present.

> ---

> On 26/11/2018 08:57, Song, Ruiling wrote:

> >> -----Original Message-----

> >> From: ffmpeg-devel [mailto:ffmpeg-devel-bounces@ffmpeg.org] On Behalf

> Of

> >> Mark Thompson

> >> Sent: Monday, November 26, 2018 6:08 AM

> >> To: FFmpeg development discussions and patches <ffmpeg-

> devel@ffmpeg.org>

> >> Subject: [FFmpeg-devel] [PATCH] hwcontext_opencl: Use correct function to

> >> enumerate devices

> >>

> >> ---

> >>  libavutil/hwcontext_opencl.c | 6 +++---

> >>  1 file changed, 3 insertions(+), 3 deletions(-)

> >>

> >> diff --git a/libavutil/hwcontext_opencl.c b/libavutil/hwcontext_opencl.c

> >> index e6cef74269..6a26354c87 100644

> >> --- a/libavutil/hwcontext_opencl.c

> >> +++ b/libavutil/hwcontext_opencl.c

> >> @@ -542,9 +542,9 @@ static int

> >> opencl_device_create_internal(AVHWDeviceContext *hwdev,

> >>                  continue;

> >>          }

> >>

> >> -        err = opencl_enumerate_devices(hwdev, platforms[p], platform_name,

> >> -                                       &nb_devices, &devices,

> >> -                                       selector->context);

> >> +        err = selector->enumerate_devices(hwdev, platforms[p],

> platform_name,

> >> +                                          &nb_devices, &devices,

> >> +                                          selector->context);

> > I think it is better to check enumerate_devices  against null pointer before

> calling it, although it should works well currently.

> 

> The two enumerate functions should always be set when entering the function,

> since they are always required.  (Unlike the filter, where "do nothing" is a

> reasonable case.)

> 

> How about an assert at the start of the function to check that, like this?

Yes, that's good. It is just helpful when somebody add new platform support but happened to forget to give a meaningful function pointer.

Ruiling
> 

> - Mark

> 

> 

>  libavutil/hwcontext_opencl.c | 9 ++++++---

>  1 file changed, 6 insertions(+), 3 deletions(-)

> 

> diff --git a/libavutil/hwcontext_opencl.c b/libavutil/hwcontext_opencl.c

> index be71c8323e..d3df6221c4 100644

> --- a/libavutil/hwcontext_opencl.c

> +++ b/libavutil/hwcontext_opencl.c

> @@ -500,6 +500,9 @@ static int

> opencl_device_create_internal(AVHWDeviceContext *hwdev,

>           *device_name_src   = NULL;

>      int err, found, p, d;

> 

> +    av_assert0(selector->enumerate_platforms &&

> +               selector->enumerate_devices);

> +

>      err = selector->enumerate_platforms(hwdev, &nb_platforms, &platforms,

>                                          selector->context);

>      if (err)

> @@ -531,9 +534,9 @@ static int

> opencl_device_create_internal(AVHWDeviceContext *hwdev,

>                  continue;

>          }

> 

> -        err = opencl_enumerate_devices(hwdev, platforms[p], platform_name,

> -                                       &nb_devices, &devices,

> -                                       selector->context);

> +        err = selector->enumerate_devices(hwdev, platforms[p], platform_name,

> +                                          &nb_devices, &devices,

> +                                          selector->context);

>          if (err < 0)

>              continue;

> 

> --

> 2.19.1

> _______________________________________________

> ffmpeg-devel mailing list

> ffmpeg-devel@ffmpeg.org

> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
Mark Thompson Dec. 3, 2018, 12:12 a.m. UTC | #2
On 28/11/2018 00:50, Song, Ruiling wrote:
>> -----Original Message-----
>> From: ffmpeg-devel [mailto:ffmpeg-devel-bounces@ffmpeg.org] On Behalf Of
>> Mark Thompson
>> Sent: Wednesday, November 28, 2018 8:17 AM
>> To: ffmpeg-devel@ffmpeg.org
>> Subject: [FFmpeg-devel] [PATCH] hwcontext_opencl: Use correct function to
>> enumerate devices
>>
>> Also assert that all required functions are present.
>> ---
>> On 26/11/2018 08:57, Song, Ruiling wrote:
>>>> -----Original Message-----
>>>> From: ffmpeg-devel [mailto:ffmpeg-devel-bounces@ffmpeg.org] On Behalf
>> Of
>>>> Mark Thompson
>>>> Sent: Monday, November 26, 2018 6:08 AM
>>>> To: FFmpeg development discussions and patches <ffmpeg-
>> devel@ffmpeg.org>
>>>> Subject: [FFmpeg-devel] [PATCH] hwcontext_opencl: Use correct function to
>>>> enumerate devices
>>>>
>>>> ---
>>>>  libavutil/hwcontext_opencl.c | 6 +++---
>>>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>>>
>>>> diff --git a/libavutil/hwcontext_opencl.c b/libavutil/hwcontext_opencl.c
>>>> index e6cef74269..6a26354c87 100644
>>>> --- a/libavutil/hwcontext_opencl.c
>>>> +++ b/libavutil/hwcontext_opencl.c
>>>> @@ -542,9 +542,9 @@ static int
>>>> opencl_device_create_internal(AVHWDeviceContext *hwdev,
>>>>                  continue;
>>>>          }
>>>>
>>>> -        err = opencl_enumerate_devices(hwdev, platforms[p], platform_name,
>>>> -                                       &nb_devices, &devices,
>>>> -                                       selector->context);
>>>> +        err = selector->enumerate_devices(hwdev, platforms[p],
>> platform_name,
>>>> +                                          &nb_devices, &devices,
>>>> +                                          selector->context);
>>> I think it is better to check enumerate_devices  against null pointer before
>> calling it, although it should works well currently.
>>
>> The two enumerate functions should always be set when entering the function,
>> since they are always required.  (Unlike the filter, where "do nothing" is a
>> reasonable case.)
>>
>> How about an assert at the start of the function to check that, like this?
> Yes, that's good. It is just helpful when somebody add new platform support but happened to forget to give a meaningful function pointer.

Yep, exactly so :)

Applied.

Thanks,

- Mark
diff mbox

Patch

diff --git a/libavutil/hwcontext_opencl.c b/libavutil/hwcontext_opencl.c
index be71c8323e..d3df6221c4 100644
--- a/libavutil/hwcontext_opencl.c
+++ b/libavutil/hwcontext_opencl.c
@@ -500,6 +500,9 @@  static int opencl_device_create_internal(AVHWDeviceContext *hwdev,
          *device_name_src   = NULL;
     int err, found, p, d;
 
+    av_assert0(selector->enumerate_platforms &&
+               selector->enumerate_devices);
+
     err = selector->enumerate_platforms(hwdev, &nb_platforms, &platforms,
                                         selector->context);
     if (err)
@@ -531,9 +534,9 @@  static int opencl_device_create_internal(AVHWDeviceContext *hwdev,
                 continue;
         }
 
-        err = opencl_enumerate_devices(hwdev, platforms[p], platform_name,
-                                       &nb_devices, &devices,
-                                       selector->context);
+        err = selector->enumerate_devices(hwdev, platforms[p], platform_name,
+                                          &nb_devices, &devices,
+                                          selector->context);
         if (err < 0)
             continue;