On Wed, 26 Nov 2014, Vittorio Giovara wrote:

From: Dave Rice <[email protected]>

---
libavformat/mov.c | 26 ++++++++++++++++++++++----
1 file changed, 22 insertions(+), 4 deletions(-)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index b2fd08d..b6d9d6b 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -329,21 +329,39 @@ static int mov_read_udta_string(MOVContext *c, 
AVIOContext *pb, MOVAtom atom)
    case MKTAG( 't', 'v', 's', 'n'): key = "season_number";
        parse = mov_metadata_int8_bypass_padding;                   break;
    case MKTAG(0xa9, 'A', 'R', 'T'): key = "artist";                break;
+    case MKTAG(0xa9, 'P', 'R', 'D'): key = "producer";              break;
    case MKTAG(0xa9, 'a', 'l', 'b'): key = "album";                 break;
-    case MKTAG(0xa9, 'a', 'u', 't'): key = "artist";                break;
+    case MKTAG(0xa9, 'a', 'u', 't'): key = "author";                break;

Yet another change disguised under the veil of "expand". No.

Separate adding new keys and changing the existing ones, so the later case can be discussed properly.

// Martin
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to