Commit 1a34103f authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

mmf.c: Use LIBAVFORMAT_IDENT when writing Yamaha SMAF version information.

parent 39d18754
......@@ -68,6 +68,9 @@ static int mmf_write_header(AVFormatContext *s)
AVIOContext *pb = s->pb;
int64_t pos;
int rate;
const char *version = s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT ?
"VN:Lavf," :
"VN:"LIBAVFORMAT_IDENT",";
rate = mmf_rate_code(s->streams[0]->codec->sample_rate);
if(rate < 0) {
......@@ -85,7 +88,7 @@ static int mmf_write_header(AVFormatContext *s)
avio_w8(pb, 0); /* counts */
end_tag_be(pb, pos);
pos = ff_start_tag(pb, "OPDA");
avio_write(pb, "VN:libavcodec,", sizeof("VN:libavcodec,") -1); /* metadata ("ST:songtitle,VN:version,...") */
avio_write(pb, version, strlen(version)); /* metadata ("ST:songtitle,VN:version,...") */
end_tag_be(pb, pos);
avio_write(pb, "ATR\x00", 4);
......
......@@ -31,7 +31,7 @@
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 59
#define LIBAVFORMAT_VERSION_MICRO 104
#define LIBAVFORMAT_VERSION_MICRO 105
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
......
786815c553a0bd2cb066f27a911f1b1f *./tests/data/lavf/lavf.mmf
22617 ./tests/data/lavf/lavf.mmf
b165af6f2e5c6c1de733e9d3848bcebb *./tests/data/lavf/lavf.mmf
22611 ./tests/data/lavf/lavf.mmf
./tests/data/lavf/lavf.mmf CRC=0x03633476
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment