diff options
author | Limin Wang <lance.lmwang@gmail.com> | 2020-04-21 23:35:23 +0800 |
---|---|---|
committer | Limin Wang <lance.lmwang@gmail.com> | 2020-05-06 23:02:00 +0800 |
commit | ba0d785fa52a4cc81f9121c4ade59cad9f557ac1 (patch) | |
tree | d9723e61ecdcc8def3e23595a30cda1b72eacc1c /libavformat/internal.h | |
parent | fa21df2bd42d95fe37b418dc4726d7fc26b1f27a (diff) | |
download | ffmpeg-ba0d785fa52a4cc81f9121c4ade59cad9f557ac1.tar.gz |
avformat/utils: move is_intra_only() to header and rename to ff_is_intra_only()
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index 45a4149c5a..831397087f 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -510,6 +510,8 @@ unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id); enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag); +int ff_is_intra_only(enum AVCodecID id); + /** * Select a PCM codec based on the given parameters. * |