1 /* GStreamer
2  * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 
20 
21 #ifndef __GST_TAG_EDIT_PRIVATE_H__
22 #define __GST_TAG_EDIT_PRIVATE_H__
23 
24 #include <gst/tag/tag.h>
25 
26 G_BEGIN_DECLS
27 
28 
29 typedef struct _GstTagEntryMatch GstTagEntryMatch;
30 struct _GstTagEntryMatch {
31   const gchar * gstreamer_tag;
32   const gchar * original_tag;
33 };
34 
35 
36 GType gst_vorbis_tag_get_type (void);
37 
38 gint __exif_tag_image_orientation_to_exif_value (const gchar * str);
39 const gchar * __exif_tag_image_orientation_from_exif_value (gint value);
40 
41 gint __exif_tag_capturing_exposure_program_to_exif_value (const gchar * str);
42 const gchar * __exif_tag_capturing_exposure_program_from_exif_value (gint value);
43 
44 gint __exif_tag_capturing_exposure_mode_to_exif_value (const gchar * str);
45 const gchar * __exif_tag_capturing_exposure_mode_from_exif_value (gint value);
46 
47 gint __exif_tag_capturing_scene_capture_type_to_exif_value (const gchar * str);
48 const gchar * __exif_tag_capturing_scene_capture_type_from_exif_value (gint value);
49 
50 gint __exif_tag_capturing_gain_adjustment_to_exif_value (const gchar * str);
51 const gchar * __exif_tag_capturing_gain_adjustment_from_exif_value (gint value);
52 
53 gint __exif_tag_capturing_white_balance_to_exif_value (const gchar * str);
54 const gchar * __exif_tag_capturing_white_balance_from_exif_value (gint value);
55 
56 gint __exif_tag_capturing_contrast_to_exif_value (const gchar * str);
57 const gchar * __exif_tag_capturing_contrast_from_exif_value (gint value);
58 
59 gint __exif_tag_capturing_saturation_to_exif_value (const gchar * str);
60 const gchar * __exif_tag_capturing_saturation_from_exif_value (gint value);
61 
62 gint __exif_tag_capturing_sharpness_to_exif_value (const gchar * str);
63 const gchar * __exif_tag_capturing_sharpness_from_exif_value (gint value);
64 
65 gint __exif_tag_capturing_metering_mode_to_exif_value (const gchar * str);
66 const gchar * __exif_tag_capturing_metering_mode_from_exif_value (gint value);
67 
68 gint __exif_tag_capturing_source_to_exif_value (const gchar * str);
69 const gchar * __exif_tag_capturing_source_from_exif_value (gint value);
70 
71 #define ensure_exif_tags gst_tag_register_musicbrainz_tags
72 
73 G_END_DECLS
74 
75 #endif /* __GST_TAG_EDIT_PRIVATE_H__ */
76