mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
aiffdec:Rewrite get_meta()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
423986fc09
commit
a565c7b7f2
@ -68,19 +68,20 @@ static int get_tag(AVIOContext *pb, uint32_t * tag)
|
||||
static void get_meta(AVFormatContext *s, const char *key, int size)
|
||||
{
|
||||
uint8_t *str = av_malloc(size+1);
|
||||
int res;
|
||||
|
||||
if (!str) {
|
||||
avio_skip(s->pb, size);
|
||||
return;
|
||||
}
|
||||
if (str) {
|
||||
int res = avio_read(s->pb, str, size);
|
||||
if (res < 0){
|
||||
av_free(str);
|
||||
return;
|
||||
}
|
||||
size += (size&1)-res;
|
||||
str[res] = 0;
|
||||
av_metadata_set2(&s->metadata, key, str, AV_METADATA_DONT_STRDUP_VAL);
|
||||
}else
|
||||
size+= size&1;
|
||||
|
||||
res = avio_read(s->pb, str, size);
|
||||
if (res < 0)
|
||||
return;
|
||||
|
||||
str[res] = 0;
|
||||
av_metadata_set2(&s->metadata, key, str, AV_METADATA_DONT_STRDUP_VAL);
|
||||
avio_skip(s->pb, size);
|
||||
}
|
||||
|
||||
/* Returns the number of sound data frames or negative on error */
|
||||
|
Loading…
Reference in New Issue
Block a user