diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 21:28:57 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 07:45:58 +0200 |
commit | a085cfa65414ff4346d8367cfb54d50d4925396f (patch) | |
tree | cc6c802f6f5e3fd40d447bf3d442834be839c1f5 /libavformat/mpc.c | |
parent | aef16886dde59d41bdeef8dfe78cd7d9055bf50e (diff) | |
download | ffmpeg-a085cfa65414ff4346d8367cfb54d50d4925396f.tar.gz |
avformat/utils: Move ff_get_extradata to demux_utils.c
It is only used by demuxers (although it is hypothetically
possible that some day e.g. a protocol might need it, but
that is unlikely given that they don't deal with AVCodecParameters).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/mpc.c')
-rw-r--r-- | libavformat/mpc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mpc.c b/libavformat/mpc.c index f36768b5ff..ef16237ab6 100644 --- a/libavformat/mpc.c +++ b/libavformat/mpc.c @@ -22,6 +22,7 @@ #include "libavutil/channel_layout.h" #include "avformat.h" +#include "demux.h" #include "internal.h" #include "apetag.h" #include "id3v1.h" |