diff options
author | Zane van Iperen <zane@zanevaniperen.com> | 2021-10-11 21:21:35 +1000 |
---|---|---|
committer | Zane van Iperen <zane@zanevaniperen.com> | 2021-10-15 23:40:15 +1000 |
commit | 9a2b9aafba7a38087769e4a4b9248ca51d0bc494 (patch) | |
tree | a0c8bd8585e79831f316283f70c4ecfc673d39de /libavformat/argo_asf.c | |
parent | 20fa838da5a1cce23cb571781fc7fae4b18146ae (diff) | |
download | ffmpeg-9a2b9aafba7a38087769e4a4b9248ca51d0bc494.tar.gz |
avformat/argo_asf: pass name through as metadata
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavformat/argo_asf.c')
-rw-r--r-- | libavformat/argo_asf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/argo_asf.c b/libavformat/argo_asf.c index acf30839b9..740680ece1 100644 --- a/libavformat/argo_asf.c +++ b/libavformat/argo_asf.c @@ -209,6 +209,8 @@ static int argo_asf_read_header(AVFormatContext *s) ff_argo_asf_parse_chunk_header(&asf->ckhdr, buf); + av_dict_set(&s->metadata, "title", asf->fhdr.name, 0); + return ff_argo_asf_fill_stream(s, st, &asf->fhdr, &asf->ckhdr); } |