Signed-off-by: Andreas Rheinhardt <[email protected]>
---
libavformat/mxfenc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index 3bfe2a5c1a..72edaa9e30 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -752,7 +752,7 @@ static void store_version(AVFormatContext *s){
avio_wb16(pb, 0); // release
}
-#define PLATFROM_IDENT "Lavf " AV_STRINGIFY((OS_NAME))
+#define PLATFORM_IDENT "Lavf " AV_STRINGIFY((OS_NAME))
static void mxf_write_identification(AVFormatContext *s)
{
MXFContext *mxf = s->priv_data;
@@ -762,7 +762,7 @@ static void mxf_write_identification(AVFormatContext *s)
AVDictionaryEntry *version_entry = av_dict_get(s->metadata,
"product_version", NULL, 0);
const char *company = com_entry ? com_entry->value : "FFmpeg";
const char *product = product_entry ? product_entry->value : s->oformat !=
&ff_mxf_opatom_muxer ? "OP1a Muxer" : "OPAtom Muxer";
- const char *platform = s->flags & AVFMT_FLAG_BITEXACT ? "Lavf" :
PLATFROM_IDENT;
+ const char *platform = s->flags & AVFMT_FLAG_BITEXACT ? "Lavf" :
PLATFORM_IDENT;
const char *version = version_entry ? version_entry->value :
s->flags & AVFMT_FLAG_BITEXACT ? "0.0.0" :
AV_STRINGIFY(LIBAVFORMAT_VERSION);
--
2.27.0
_______________________________________________
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".