[FFmpeg-cvslog] r25508 - trunk/ffmpeg.c
stefano
subversion
Sat Oct 16 17:25:02 CEST 2010
Author: stefano
Date: Sat Oct 16 17:25:02 2010
New Revision: 25508
Log:
Use an AVMetadata struct for storing metadata, simplify.
Modified:
trunk/ffmpeg.c
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c Sat Oct 16 16:33:05 2010 (r25507)
+++ trunk/ffmpeg.c Sat Oct 16 17:25:02 2010 (r25508)
@@ -188,8 +188,7 @@ static int64_t start_time = 0;
static int64_t recording_timestamp = 0;
static int64_t input_ts_offset = 0;
static int file_overwrite = 0;
-static int metadata_count;
-static AVMetadataTag *metadata;
+static AVMetadata *metadata;
static int do_benchmark = 0;
static int do_hex_dump = 0;
static int do_pkt_dump = 0;
@@ -2866,10 +2865,7 @@ static int opt_metadata(const char *opt,
}
*mid++= 0;
- metadata_count++;
- metadata= av_realloc(metadata, sizeof(*metadata)*metadata_count);
- metadata[metadata_count-1].key = av_strdup(arg);
- metadata[metadata_count-1].value= av_strdup(mid);
+ av_metadata_set2(&metadata, arg, mid, 0);
return 0;
}
@@ -3676,6 +3672,7 @@ static void opt_output_file(const char *
int input_has_video, input_has_audio, input_has_subtitle;
AVFormatParameters params, *ap = ¶ms;
AVOutputFormat *file_oformat;
+ AVMetadataTag *tag = NULL;
if (!strcmp(filename, "-"))
filename = "pipe:";
@@ -3757,10 +3754,8 @@ static void opt_output_file(const char *
oc->timestamp = recording_timestamp;
- for(; metadata_count>0; metadata_count--){
- av_metadata_set2(&oc->metadata, metadata[metadata_count-1].key,
- metadata[metadata_count-1].value, 0);
- }
+ while ((tag = av_metadata_get(metadata, "", tag, AV_METADATA_IGNORE_SUFFIX)))
+ av_metadata_set2(&oc->metadata, tag->key, tag->value, 0);
}
output_files[nb_output_files++] = oc;
More information about the ffmpeg-cvslog
mailing list