Commit 8812a3c8 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

MP4: Recognize \xa9wrt

We don't do anything with it yet.
parent 3ebe37d2
......@@ -2768,6 +2768,7 @@ static const struct
{ FOURCC_0xa9url,MP4_ReadBox_0xa9xxx, MP4_FreeBox_0xa9xxx },
{ FOURCC_0xa9ope,MP4_ReadBox_0xa9xxx, MP4_FreeBox_0xa9xxx },
{ FOURCC_0xa9com,MP4_ReadBox_0xa9xxx, MP4_FreeBox_0xa9xxx },
{ FOURCC_0xa9wrt,MP4_ReadBox_0xa9xxx, MP4_FreeBox_0xa9xxx },
{ FOURCC_0xa9too,MP4_ReadBox_0xa9xxx, MP4_FreeBox_0xa9xxx },
{ FOURCC_chpl, MP4_ReadBox_chpl, MP4_FreeBox_chpl },
......
......@@ -937,6 +937,8 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
SET( vlc_meta_SetEncodedBy );
break;
case FOURCC_0xa9wrt: /* Writer */
case FOURCC_0xa9com: /* Composer */
case FOURCC_0xa9swr:
case FOURCC_0xa9inf: /* Information */
case FOURCC_0xa9dir: /* Director */
......@@ -949,8 +951,6 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
case FOURCC_0xa9prf: /* Performers */
case FOURCC_0xa9ope: /* Original Performer */
case FOURCC_0xa9src: /* Providers Source Content */
case FOURCC_0xa9wrt: /* Writer */
case FOURCC_0xa9com: /* Composer */
case FOURCC_WLOC: /* Window Location */
/* TODO one day, but they aren't really meaningfull */
break;
......
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