2007-10-30 12:49:04 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright 2007 Edgard Lima <edgard.lima@indt.org.br>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the
|
|
|
|
* GNU Lesser General Public License Version 2.1 (the "LGPL"), in
|
|
|
|
* which case the following provisions apply instead of the ones
|
|
|
|
* mentioned above:
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2007-11-28 08:13:52 +00:00
|
|
|
#ifndef __METADATA_H__
|
|
|
|
#define __METADATA_H__
|
2007-10-30 12:49:04 +00:00
|
|
|
|
2008-01-25 17:45:28 +00:00
|
|
|
/*
|
|
|
|
* includes
|
|
|
|
*/
|
|
|
|
|
2007-10-30 12:49:04 +00:00
|
|
|
#include <gst/base/gstadapter.h>
|
2007-11-23 17:35:21 +00:00
|
|
|
#include "metadatatypes.h"
|
2007-10-30 12:49:04 +00:00
|
|
|
|
|
|
|
#include "metadataparsejpeg.h"
|
2007-11-30 12:53:13 +00:00
|
|
|
#include "metadatamuxjpeg.h"
|
2007-11-02 16:50:42 +00:00
|
|
|
#include "metadataparsepng.h"
|
2007-11-30 12:53:13 +00:00
|
|
|
#include "metadatamuxpng.h"
|
2007-10-30 12:49:04 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2008-01-25 17:45:28 +00:00
|
|
|
/*
|
|
|
|
* enum and types
|
|
|
|
*/
|
2007-12-13 17:19:54 +00:00
|
|
|
|
2008-01-25 17:45:28 +00:00
|
|
|
/* *INDENT-OFF* */
|
2007-12-19 09:50:47 +00:00
|
|
|
typedef enum _tag_MetaOptions
|
2007-11-02 16:50:42 +00:00
|
|
|
{
|
2007-12-17 12:37:36 +00:00
|
|
|
META_OPT_EXIF = (1 << 0),
|
|
|
|
META_OPT_IPTC = (1 << 1),
|
|
|
|
META_OPT_XMP = (1 << 2),
|
2007-12-19 09:50:47 +00:00
|
|
|
META_OPT_PARSE_ONLY = (1 << 3), /* only makes sense with META_OPT_DEMUX */
|
2008-01-25 17:45:28 +00:00
|
|
|
META_OPT_DEMUX = (1 << 4), /* to operates in demuxing mode */
|
|
|
|
META_OPT_MUX = (1 << 5), /* to operates in muxing mode */
|
2007-12-19 09:50:47 +00:00
|
|
|
META_OPT_ALL = (1 << 6) - 1
|
|
|
|
} MetaOptions;
|
2007-12-13 17:19:54 +00:00
|
|
|
/* *INDENT-ON* */
|
2007-10-30 12:49:04 +00:00
|
|
|
|
2007-11-28 08:13:52 +00:00
|
|
|
typedef enum _tag_MetaState
|
2007-11-02 16:50:42 +00:00
|
|
|
{
|
2007-10-30 12:49:04 +00:00
|
|
|
STATE_NULL,
|
|
|
|
STATE_READING,
|
|
|
|
STATE_DONE
|
2007-11-28 08:13:52 +00:00
|
|
|
} MetaState;
|
2007-10-30 12:49:04 +00:00
|
|
|
|
2007-11-02 16:50:42 +00:00
|
|
|
typedef enum _tag_ImageType
|
|
|
|
{
|
2007-10-30 12:49:04 +00:00
|
|
|
IMG_NONE,
|
|
|
|
IMG_JPEG,
|
|
|
|
IMG_PNG
|
|
|
|
} ImageType;
|
|
|
|
|
2007-11-28 08:13:52 +00:00
|
|
|
typedef struct _tag_MetaData
|
2007-11-02 16:50:42 +00:00
|
|
|
{
|
2007-11-28 08:13:52 +00:00
|
|
|
MetaState state;
|
2007-11-02 16:50:42 +00:00
|
|
|
ImageType img_type;
|
2007-12-04 16:42:25 +00:00
|
|
|
guint8 options;
|
2007-11-23 17:35:21 +00:00
|
|
|
guint32 offset_orig; /* offset since begining of stream */
|
2007-11-02 16:50:42 +00:00
|
|
|
union
|
|
|
|
{
|
2007-11-30 12:53:13 +00:00
|
|
|
JpegParseData jpeg_parse;
|
|
|
|
JpegMuxData jpeg_mux;
|
|
|
|
PngParseData png_parse;
|
|
|
|
PngMuxData png_mux;
|
2007-10-30 12:49:04 +00:00
|
|
|
} format_data;
|
2007-11-23 17:35:21 +00:00
|
|
|
GstAdapter * exif_adapter;
|
|
|
|
GstAdapter * iptc_adapter;
|
|
|
|
GstAdapter * xmp_adapter;
|
|
|
|
|
|
|
|
MetadataChunkArray strip_chunks;
|
|
|
|
MetadataChunkArray inject_chunks;
|
|
|
|
|
2007-11-28 08:13:52 +00:00
|
|
|
} MetaData;
|
2007-10-30 12:49:04 +00:00
|
|
|
|
2008-01-25 17:45:28 +00:00
|
|
|
/*
|
|
|
|
* defines and macros
|
|
|
|
*/
|
|
|
|
|
2007-12-21 09:45:56 +00:00
|
|
|
#define META_DATA_IMG_TYPE(p) (p)->img_type
|
2007-10-30 12:49:04 +00:00
|
|
|
|
2007-12-21 19:01:00 +00:00
|
|
|
#define META_DATA_STRIP_CHUNKS(p) (p)->strip_chunks
|
|
|
|
#define META_DATA_INJECT_CHUNKS(p) (p)->inject_chunks
|
|
|
|
|
2008-01-25 17:45:28 +00:00
|
|
|
/*
|
|
|
|
* external function prototypes
|
|
|
|
*/
|
|
|
|
|
2007-12-21 09:45:56 +00:00
|
|
|
extern void metadata_init (MetaData ** meta_data, const MetaOptions options);
|
2007-10-30 12:49:04 +00:00
|
|
|
|
2007-12-21 09:45:56 +00:00
|
|
|
extern void metadata_dispose (MetaData ** meta_data);
|
2007-12-13 17:19:54 +00:00
|
|
|
|
|
|
|
extern MetadataParsingReturn
|
2007-11-30 12:53:13 +00:00
|
|
|
metadata_parse (MetaData * meta_data, const guint8 * buf,
|
2008-01-25 17:45:28 +00:00
|
|
|
guint32 buf_size, guint32 * next_offset, guint32 * next_size);
|
2007-10-30 12:49:04 +00:00
|
|
|
|
|
|
|
|
2007-11-30 12:53:13 +00:00
|
|
|
extern void metadata_lazy_update (MetaData * meta_data);
|
|
|
|
|
2007-10-30 12:49:04 +00:00
|
|
|
G_END_DECLS
|
2007-11-28 08:13:52 +00:00
|
|
|
#endif /* __METADATA_H__ */
|