diff options
author | Martin Storsjö <martin@martin.st> | 2022-03-11 16:22:01 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2022-03-13 00:24:06 +0200 |
commit | a4c4e6b9c03ff50ac5c57e5d1bd79d71e9acca8d (patch) | |
tree | faf7e7006f7628e481e9a508e9c1a2dfb8c24ce8 /libavformat/movenc.c | |
parent | df8163ae55a94b4e73bcfbdf210ea23b1eb2cafc (diff) | |
download | ffmpeg-a4c4e6b9c03ff50ac5c57e5d1bd79d71e9acca8d.tar.gz |
movenc: Use LIBAVFORMAT_IDENT instead of LIBAVCODEC_IDENT
The muxer seems to have had one seemingly accidental use of
LIBAVCODEC_IDENT, while LIBAVFORMAT_IDENT probably is the
relevant one (which is used multiple times in the same file).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 2a6cc1bc6a..ee1629de46 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -4108,7 +4108,7 @@ static int mov_write_uuidusmt_tag(AVIOContext *pb, AVFormatContext *s) avio_wb16(pb, 0x021C); /* data */ if (!(s->flags & AVFMT_FLAG_BITEXACT)) - mov_write_psp_udta_tag(pb, LIBAVCODEC_IDENT, "eng", 0x04); + mov_write_psp_udta_tag(pb, LIBAVFORMAT_IDENT, "eng", 0x04); mov_write_psp_udta_tag(pb, title->value, "eng", 0x01); mov_write_psp_udta_tag(pb, "2006/04/01 11:11:11", "und", 0x03); |