]> git.sesse.net Git - ffmpeg/commitdiff
ffplay: use format title metadata to set window caption.
authorClément Bœsch <ubitux@gmail.com>
Tue, 16 Apr 2013 18:07:03 +0000 (20:07 +0200)
committerClément Bœsch <ubitux@gmail.com>
Wed, 17 Apr 2013 09:08:49 +0000 (11:08 +0200)
ffplay.c

index 85e80a84e1bc4c90b44fd0757301019a74b88024..067c86520bd5292bcfb8499cba109ee678c6cf0d 100644 (file)
--- a/ffplay.c
+++ b/ffplay.c
@@ -2725,6 +2725,9 @@ static int read_thread(void *arg)
 
     is->max_frame_duration = (ic->iformat->flags & AVFMT_TS_DISCONT) ? 10.0 : 3600.0;
 
+    if (!window_title && (t = av_dict_get(ic->metadata, "title", NULL, 0)))
+        window_title = av_asprintf("%s - %s", t->value, input_filename);
+
     /* if seeking requested, we execute it */
     if (start_time != AV_NOPTS_VALUE) {
         int64_t timestamp;