summaryrefslogtreecommitdiff
path: root/src/libaudtag/audtag.cc
blob: 1eef8ca5e7766e0f7d312c32601f530e3ec2c971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * audtag.c
 * Copyright 2009-2011 Paula Stanciu and John Lindgren
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions, and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions, and the following disclaimer in the documentation
 *    provided with the distribution.
 *
 * This software is provided "as is" and without any warranty, express or
 * implied. In no event shall the authors be liable for any damages arising from
 * the use of this software.
 */

#include <libaudcore/runtime.h>

#include "audtag.h"
#include "tag_module.h"

/* The tuple's file-related attributes are already set */

namespace audtag {

EXPORT bool read_tag (VFSFile & file, Tuple & tuple, Index<char> * image)
{
    TagModule * module = find_tag_module (file, TagType::None);

    if (! module)
    {
        AUDINFO ("read_tag() not supported for %s\n", file.filename ());
        return false;
    }

    return module->read_tag (file, tuple, image);
}

EXPORT bool write_tuple (VFSFile & file, const Tuple & tuple, TagType new_type)
{
    TagModule * module = find_tag_module (file, new_type);

    if (! module)
    {
        AUDINFO ("write_tag() not supported for %s\n", file.filename ());
        return false;
    }

    return module->write_tag (file, tuple);
}

}