]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
trancode: omx - the string variables are not constants, fixes #4639
authorJaroslav Kysela <perex@perex.cz>
Sat, 30 Sep 2017 17:33:58 +0000 (19:33 +0200)
committerJaroslav Kysela <perex@perex.cz>
Sat, 30 Sep 2017 17:34:01 +0000 (19:34 +0200)
src/transcoding/codec/codecs/libs/omx.c

index 111ba382acba6939525a7af23b0d44927ba669f8..916fcddbbd8fd90f73d4036fc3fe71fc8a3e28df 100644 (file)
@@ -25,8 +25,8 @@
 
 typedef struct {
     TVHVideoCodecProfile;
-    const char *libname;
-    const char *libprefix;
+    char *libname;
+    char *libprefix;
     int zerocopy;
 } tvh_codec_profile_omx_t;