From: Jaroslav Kysela Date: Sat, 30 Sep 2017 17:33:58 +0000 (+0200) Subject: trancode: omx - the string variables are not constants, fixes #4639 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5635134be7cecf39d4b68140351823551c75c12d;p=thirdparty%2Ftvheadend.git trancode: omx - the string variables are not constants, fixes #4639 --- diff --git a/src/transcoding/codec/codecs/libs/omx.c b/src/transcoding/codec/codecs/libs/omx.c index 111ba382a..916fcddbb 100644 --- a/src/transcoding/codec/codecs/libs/omx.c +++ b/src/transcoding/codec/codecs/libs/omx.c @@ -25,8 +25,8 @@ typedef struct { TVHVideoCodecProfile; - const char *libname; - const char *libprefix; + char *libname; + char *libprefix; int zerocopy; } tvh_codec_profile_omx_t;