diff --git a/libavformat/riff.c b/libavformat/riff.c
index c18fea5bca0fc0b735cc9b28b2e433d8b4d9ea1c..87176c255f71c7a7264b8f9b61f162dceb929913 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -392,6 +392,7 @@ const AVMetadataConv ff_riff_info_conv[] = {
     { "INAM", "title"      },
     { "IPRD", "album"      },
     { "IPRT", "track"      },
+    { "ITRK", "track"      },
     { "ISFT", "encoder"    },
     { "ITCH", "encoded_by" },
     { 0 },
diff --git a/libavformat/riffenc.c b/libavformat/riffenc.c
index 98e97c05ed7fb18e8db271bb341e235111f8a25a..681a9302128640a7069e795850b73f1f549a356a 100644
--- a/libavformat/riffenc.c
+++ b/libavformat/riffenc.c
@@ -257,7 +257,7 @@ void ff_riff_write_info_tag(AVIOContext *pb, const char *tag, const char *str)
 static const char riff_tags[][5] = {
     "IARL", "IART", "ICMS", "ICMT", "ICOP", "ICRD", "ICRP", "IDIM", "IDPI",
     "IENG", "IGNR", "IKEY", "ILGT", "ILNG", "IMED", "INAM", "IPLT", "IPRD",
-    "IPRT", "ISBJ", "ISFT", "ISHP", "ISRC", "ISRF", "ITCH",
+    "IPRT", "ITRK", "ISBJ", "ISFT", "ISHP", "ISRC", "ISRF", "ITCH",
     { 0 }
 };