blob: 843a4925ace5209a527c11a784009c63adcf1c16 [file] [log] [blame]
Edgard Lima6836fde2007-10-30 12:49:04 +00001/*
2 * GStreamer
3 * Copyright 2007 Edgard Lima <edgard.lima@indt.org.br>
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Alternatively, the contents of this file may be used under the
24 * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
25 * which case the following provisions apply instead of the ones
26 * mentioned above:
27 *
28 * This library is free software; you can redistribute it and/or
29 * modify it under the terms of the GNU Library General Public
30 * License as published by the Free Software Foundation; either
31 * version 2 of the License, or (at your option) any later version.
32 *
33 * This library is distributed in the hope that it will be useful,
34 * but WITHOUT ANY WARRANTY; without even the implied warranty of
35 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
36 * Library General Public License for more details.
37 *
38 * You should have received a copy of the GNU Library General Public
39 * License along with this library; if not, write to the
40 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
41 * Boston, MA 02111-1307, USA.
42 */
43
Stefan Kost80caa6b2009-03-20 15:10:22 +020044#ifndef __GST_METADATA_IPTC_H__
45#define __GST_METADATA_IPTC_H__
Edgard Lima6836fde2007-10-30 12:49:04 +000046
47#include <gst/gst.h>
48#include <gst/base/gstadapter.h>
Edgard Lima14da2ce2007-11-28 14:03:35 +000049#include "metadatatags.h"
Edgard Lima6836fde2007-10-30 12:49:04 +000050
51G_BEGIN_DECLS
52
Edgard Lima9e31b572008-01-25 17:45:28 +000053/*
Stefan Kost5540ec22009-03-20 15:18:05 +020054 * defines
55 */
56#define PHOTOSHOP_HEADER "Photoshop 3.0"
57
58
59/*
Edgard Lima9e31b572008-01-25 17:45:28 +000060 * external function prototypes
61 */
62
Edgard Lima6836fde2007-10-30 12:49:04 +000063extern void
Edgard Limaf17824d2007-11-02 16:50:42 +000064metadataparse_iptc_tag_list_add (GstTagList * taglist, GstTagMergeMode mode,
Edgard Lima14da2ce2007-11-28 14:03:35 +000065 GstAdapter * adapter, MetadataTagMapping mapping);
Edgard Lima58888982007-10-31 16:21:02 +000066
Edgard Limac1e6c762007-11-28 08:13:52 +000067extern void
Edgard Limad5ad4272007-11-30 18:30:12 +000068metadatamux_iptc_create_chunk_from_tag_list (guint8 ** buf, guint32 *size,
Edgard Limae415aee2007-12-03 16:14:01 +000069 const GstTagList * taglist);
Edgard Lima6836fde2007-10-30 12:49:04 +000070
71G_END_DECLS
Stefan Kost80caa6b2009-03-20 15:10:22 +020072#endif /* __GST_METADATA_IPTC_H__ */