projects
/
platform
/
upstream
/
gst-plugins-base.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b229b8f
)
exiftag: set value=1 if we found the token
author
Stefan Kost
<ensonic@users.sf.net>
Wed, 25 May 2011 10:59:57 +0000
(13:59 +0300)
committer
Stefan Kost
<ensonic@users.sf.net>
Wed, 25 May 2011 10:59:57 +0000
(13:59 +0300)
Otherwise we never write the tag. This would also be consistent with the code in
deserialize_scene_type().
gst-libs/gst/tag/gstexiftag.c
patch
|
blob
|
history
diff --git
a/gst-libs/gst/tag/gstexiftag.c
b/gst-libs/gst/tag/gstexiftag.c
index c97901c6b0b5904f6a1d6c4e802e1700005e4c31..9d941da9092ad35faecccb2e81427619c711325b 100644
(file)
--- a/
gst-libs/gst/tag/gstexiftag.c
+++ b/
gst-libs/gst/tag/gstexiftag.c
@@
-2608,7
+2608,7
@@
serialize_scene_type (GstExifWriter * writer, const GstTagList * taglist,
if (gst_tag_list_peek_string_index (taglist, GST_TAG_CAPTURING_SOURCE, 0,
&str)) {
if (strcmp (str, "dsc") == 0) {
- value =
0
;
+ value =
1
;
}
}