On 12/06/2019 13:16, Alejandro Solozabal wrote:
> Print the right library name, which is trying to open, on the log message.
> 
> Signed-off-by: Alejandro Solozabal <[email protected]>
> ---
>  libavcodec/omx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/omx.c b/libavcodec/omx.c
> index 466e0be9fe..a1e5a46a54 100644
> --- a/libavcodec/omx.c
> +++ b/libavcodec/omx.c
> @@ -100,7 +100,7 @@ static av_cold int omx_try_load(OMXContext *s, void 
> *logctx,
>      if (libname2) {
>          s->lib2 = dlopen(libname2, RTLD_NOW | RTLD_GLOBAL);
>          if (!s->lib2) {
> -            av_log(logctx, AV_LOG_WARNING, "%s not found\n", libname);
> +            av_log(logctx, AV_LOG_WARNING, "%s not found\n", libname2);
>              return AVERROR_ENCODER_NOT_FOUND;
>          }
>          s->host_init = dlsym(s->lib2, "bcm_host_init");
> 

Yep, applied.

Thanks!

- Mark
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to