Commit caabe1b4 authored by Alejandro Solozabal's avatar Alejandro Solozabal Committed by Mark Thompson

avcodec/omx: Correct av_log() log message

Print the right library name, which is trying to open, on the log message.
Signed-off-by: 's avatarAlejandro Solozabal <a.solozabal@hotmail.com>
parent f70c3974
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment