X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=wma_afh.c;h=f1edacf07aa56b2d26e54e54641c1fd3d6bc1f11;hp=65795fd8b8e4ac66cc1e3cf1cba8e18d68800636;hb=4ce5e90617837e558a35e411ae66eaf16a9e73f8;hpb=d15d8509bcb56d6a40f2709c28cc6c9cc1f6739a diff --git a/wma_afh.c b/wma_afh.c index 65795fd8..f1edacf0 100644 --- a/wma_afh.c +++ b/wma_afh.c @@ -1,19 +1,12 @@ /* - * Copyright (C) 2009-2014 Andre Noll + * Copyright (C) 2009 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ /** \file wma_afh.c The audio format handler for WMA files. */ -#include -#include #include -#include -#include -#include -#include -#include #include #include "para.h" @@ -107,7 +100,7 @@ static char *get_str16(const char *in, int len) return out; } -static const char comment_header[] = { +static const char content_description_header[] = { 0x33, 0x26, 0xb2, 0x75, 0x8E, 0x66, 0xCF, 0x11, 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c }; @@ -134,10 +127,10 @@ static void read_asf_tags(const char *buf, int buf_size, struct taginfo *ti) const char *p, *end = buf + buf_size, *q; uint16_t len1, len2, len3, len4; - p = search_pattern(comment_header, sizeof(comment_header), - buf, buf_size); + p = search_pattern(content_description_header, + sizeof(content_description_header), buf, buf_size); if (!p || p + 34 >= end) { - PARA_NOTICE_LOG("comment header not found\n"); + PARA_NOTICE_LOG("content description header not found\n"); goto next; } p += 24;