Mercurial > libavformat.hg
annotate metadata.c @ 6234:0287312dda71 libavformat
rtpdec_asf: Propagate errors from the chained av_open_input_stream
This fixes the crash in issue 2070.
author | mstorsjo |
---|---|
date | Mon, 05 Jul 2010 16:46:00 +0000 |
parents | 5ec1f78c30fe |
children | 2d51ca7714c3 |
rev | line source |
---|---|
4150 | 1 /* |
2 * copyright (c) 2009 Michael Niedermayer | |
3 * | |
4 * This file is part of FFmpeg. | |
5 * | |
6 * FFmpeg is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU Lesser General Public | |
8 * License as published by the Free Software Foundation; either | |
9 * version 2.1 of the License, or (at your option) any later version. | |
10 * | |
11 * FFmpeg is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 * Lesser General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU Lesser General Public | |
17 * License along with FFmpeg; if not, write to the Free Software | |
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
19 */ | |
20 | |
4617 | 21 #include <strings.h> |
22 #include "avformat.h" | |
4150 | 23 #include "metadata.h" |
24 | |
4154
bd4d3fee45d0
rename AVMetaData to AVMetadata and meta_data to metadata
aurel
parents:
4150
diff
changeset
|
25 AVMetadataTag * |
4157 | 26 av_metadata_get(AVMetadata *m, const char *key, const AVMetadataTag *prev, int flags) |
4150 | 27 { |
28 unsigned int i, j; | |
29 | |
30 if(!m) | |
31 return NULL; | |
32 | |
33 if(prev) i= prev - m->elems + 1; | |
34 else i= 0; | |
35 | |
36 for(; i<m->count; i++){ | |
37 const char *s= m->elems[i].key; | |
4250
2fc899894f5e
replace AV_METADATA_IGNORE_CASE flag by a new AV_METADATA_MATCH_CASE flag
aurel
parents:
4180
diff
changeset
|
38 if(flags & AV_METADATA_MATCH_CASE) for(j=0; s[j] == key[j] && key[j]; j++); |
2fc899894f5e
replace AV_METADATA_IGNORE_CASE flag by a new AV_METADATA_MATCH_CASE flag
aurel
parents:
4180
diff
changeset
|
39 else for(j=0; toupper(s[j]) == toupper(key[j]) && key[j]; j++); |
4150 | 40 if(key[j]) |
41 continue; | |
42 if(s[j] && !(flags & AV_METADATA_IGNORE_SUFFIX)) | |
43 continue; | |
44 return &m->elems[i]; | |
45 } | |
46 return NULL; | |
47 } | |
48 | |
5445
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
49 int av_metadata_set2(AVMetadata **pm, const char *key, const char *value, int flags) |
4150 | 50 { |
4157 | 51 AVMetadata *m= *pm; |
4353
e4a1b568b313
modify the way to pass parameters to av_metadata_set()
aurel
parents:
4250
diff
changeset
|
52 AVMetadataTag *tag= av_metadata_get(m, key, NULL, AV_METADATA_MATCH_CASE); |
4150 | 53 |
54 if(!m) | |
55 m=*pm= av_mallocz(sizeof(*m)); | |
56 | |
57 if(tag){ | |
5938 | 58 if (flags & AV_METADATA_DONT_OVERWRITE) |
59 return 0; | |
4150 | 60 av_free(tag->value); |
61 av_free(tag->key); | |
62 *tag= m->elems[--m->count]; | |
63 }else{ | |
4154
bd4d3fee45d0
rename AVMetaData to AVMetadata and meta_data to metadata
aurel
parents:
4150
diff
changeset
|
64 AVMetadataTag *tmp= av_realloc(m->elems, (m->count+1) * sizeof(*m->elems)); |
4150 | 65 if(tmp){ |
66 m->elems= tmp; | |
67 }else | |
68 return AVERROR(ENOMEM); | |
69 } | |
4353
e4a1b568b313
modify the way to pass parameters to av_metadata_set()
aurel
parents:
4250
diff
changeset
|
70 if(value){ |
5445
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
71 if(flags & AV_METADATA_DONT_STRDUP_KEY){ |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
72 m->elems[m->count].key = key; |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
73 }else |
4353
e4a1b568b313
modify the way to pass parameters to av_metadata_set()
aurel
parents:
4250
diff
changeset
|
74 m->elems[m->count].key = av_strdup(key ); |
5445
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
75 if(flags & AV_METADATA_DONT_STRDUP_VAL){ |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
76 m->elems[m->count].value= value; |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
77 }else |
4353
e4a1b568b313
modify the way to pass parameters to av_metadata_set()
aurel
parents:
4250
diff
changeset
|
78 m->elems[m->count].value= av_strdup(value); |
e4a1b568b313
modify the way to pass parameters to av_metadata_set()
aurel
parents:
4250
diff
changeset
|
79 m->count++; |
4150 | 80 } |
4591 | 81 if(!m->count) { |
82 av_free(m->elems); | |
4150 | 83 av_freep(pm); |
4591 | 84 } |
4150 | 85 |
86 return 0; | |
87 } | |
4158
ea1e24175669
Add a metadata compatibility layer, so that when a user application set
aurel
parents:
4157
diff
changeset
|
88 |
5445
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
89 #if LIBAVFORMAT_VERSION_MAJOR == 52 |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
90 int av_metadata_set(AVMetadata **pm, const char *key, const char *value) |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
91 { |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
92 return av_metadata_set2(pm, key, value, 0); |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
93 } |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
94 #endif |
d1b5bb2bfe92
Add flags to prevent strdup() on arguments to av_metadata_set2().
michael
parents:
5308
diff
changeset
|
95 |
4161 | 96 void av_metadata_free(AVMetadata **pm) |
97 { | |
98 AVMetadata *m= *pm; | |
99 | |
100 if(m){ | |
101 while(m->count--){ | |
102 av_free(m->elems[m->count].key); | |
103 av_free(m->elems[m->count].value); | |
104 } | |
105 av_free(m->elems); | |
106 } | |
107 av_freep(pm); | |
108 } | |
4617 | 109 |
5661
6d530eb42996
Set lavf identification string globally in av_write_header(), rather
rbultje
parents:
5445
diff
changeset
|
110 void metadata_conv(AVMetadata **pm, const AVMetadataConv *d_conv, |
4617 | 111 const AVMetadataConv *s_conv) |
112 { | |
113 /* TODO: use binary search to look up the two conversion tables | |
114 if the tables are getting big enough that it would matter speed wise */ | |
4621
1874d71f6b19
simplify metadata conversion and fixes gcc-2.95 at the same time
aurel
parents:
4617
diff
changeset
|
115 const AVMetadataConv *sc, *dc; |
4617 | 116 AVMetadataTag *mtag = NULL; |
117 AVMetadata *dst = NULL; | |
4621
1874d71f6b19
simplify metadata conversion and fixes gcc-2.95 at the same time
aurel
parents:
4617
diff
changeset
|
118 const char *key; |
4617 | 119 |
6082
140e0b5fcea2
metadata: make conversion to the same format a noop.
mstorsjo
parents:
5982
diff
changeset
|
120 if (d_conv == s_conv) |
140e0b5fcea2
metadata: make conversion to the same format a noop.
mstorsjo
parents:
5982
diff
changeset
|
121 return; |
140e0b5fcea2
metadata: make conversion to the same format a noop.
mstorsjo
parents:
5982
diff
changeset
|
122 |
4617 | 123 while((mtag=av_metadata_get(*pm, "", mtag, AV_METADATA_IGNORE_SUFFIX))) { |
4621
1874d71f6b19
simplify metadata conversion and fixes gcc-2.95 at the same time
aurel
parents:
4617
diff
changeset
|
124 key = mtag->key; |
6083 | 125 if (s_conv) |
126 for (sc=s_conv; sc->native; sc++) | |
127 if (!strcasecmp(key, sc->native)) { | |
128 key = sc->generic; | |
129 break; | |
130 } | |
131 if (d_conv) | |
132 for (dc=d_conv; dc->native; dc++) | |
133 if (!strcasecmp(key, dc->generic)) { | |
134 key = dc->native; | |
135 break; | |
136 } | |
5982
f74198942337
Mark av_metadata_set() as deprecated, and use av_metadata_set2()
stefano
parents:
5938
diff
changeset
|
137 av_metadata_set2(&dst, key, mtag->value, 0); |
4617 | 138 } |
139 av_metadata_free(pm); | |
140 *pm = dst; | |
141 } | |
142 | |
143 void av_metadata_conv(AVFormatContext *ctx, const AVMetadataConv *d_conv, | |
144 const AVMetadataConv *s_conv) | |
145 { | |
146 int i; | |
147 metadata_conv(&ctx->metadata, d_conv, s_conv); | |
148 for (i=0; i<ctx->nb_streams ; i++) | |
149 metadata_conv(&ctx->streams [i]->metadata, d_conv, s_conv); | |
150 for (i=0; i<ctx->nb_chapters; i++) | |
151 metadata_conv(&ctx->chapters[i]->metadata, d_conv, s_conv); | |
152 for (i=0; i<ctx->nb_programs; i++) | |
153 metadata_conv(&ctx->programs[i]->metadata, d_conv, s_conv); | |
154 } |