diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 20:53:12 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 07:42:22 +0200 |
commit | 92a43ad3842b8422dd0e88cfd66cf0f284e5015a (patch) | |
tree | 994bd0d8d5f3ca073603f603c93e3b30ce52a793 /libavformat/asf.c | |
parent | 3c3c13e67b72d9c4e0615e744ef2c1cdf8b2701e (diff) | |
download | ffmpeg-92a43ad3842b8422dd0e88cfd66cf0f284e5015a.tar.gz |
avformat/utils: Move ff_add_attached_pic to demux_utils.c
It is demuxer-only: It potentially adds an AVStream and it sets
AVStream.attached_pic.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r-- | libavformat/asf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index 1ac8b5f078..6e3854eceb 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -19,6 +19,7 @@ */ #include "asf.h" +#include "demux.h" #include "id3v2.h" #include "internal.h" |