mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 20:01:53 +00:00
PFX is not defined here.
This commit is contained in:
parent
720a38f3f8
commit
77f5d2e0f1
@ -426,7 +426,7 @@ content_decoder_c::initialize(KaxTrackEntry &ktentry) {
|
|||||||
|
|
||||||
if (0 == enc.comp_algo) {
|
if (0 == enc.comp_algo) {
|
||||||
#if !defined(HAVE_ZLIB_H)
|
#if !defined(HAVE_ZLIB_H)
|
||||||
mxwarn(PFX "Track %d was compressed with zlib but mkvmerge has not "
|
mxwarn("Track %d was compressed with zlib but mkvmerge has not "
|
||||||
"been compiled with support for zlib compression.\n", tid);
|
"been compiled with support for zlib compression.\n", tid);
|
||||||
ok = false;
|
ok = false;
|
||||||
break;
|
break;
|
||||||
@ -436,7 +436,7 @@ content_decoder_c::initialize(KaxTrackEntry &ktentry) {
|
|||||||
#endif
|
#endif
|
||||||
} else if (1 == enc.comp_algo) {
|
} else if (1 == enc.comp_algo) {
|
||||||
#if !defined(HAVE_BZLIB_H)
|
#if !defined(HAVE_BZLIB_H)
|
||||||
mxwarn(PFX "Track %d was compressed with bzlib but mkvmerge has not "
|
mxwarn("Track %d was compressed with bzlib but mkvmerge has not "
|
||||||
"been compiled with support for bzlib compression.\n", tid);
|
"been compiled with support for bzlib compression.\n", tid);
|
||||||
ok = false;
|
ok = false;
|
||||||
break;
|
break;
|
||||||
@ -446,7 +446,7 @@ content_decoder_c::initialize(KaxTrackEntry &ktentry) {
|
|||||||
#endif
|
#endif
|
||||||
} else if (enc.comp_algo == 2) {
|
} else if (enc.comp_algo == 2) {
|
||||||
#if !defined(HAVE_LZO1X_H)
|
#if !defined(HAVE_LZO1X_H)
|
||||||
mxwarn(PFX "Track %d was compressed with lzo1x but mkvmerge has not "
|
mxwarn("Track %d was compressed with lzo1x but mkvmerge has not "
|
||||||
"been compiled with support for lzo1x compression.\n", tid);
|
"been compiled with support for lzo1x compression.\n", tid);
|
||||||
ok = false;
|
ok = false;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user