diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-05-29 09:50:48 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-06-04 11:46:27 +0200 |
commit | e4601cc3390eec6ccbfc1139bdd102b4e801ae80 (patch) | |
tree | 3f31fad838457e80f3f922bc597ea85ab2c81319 /libavformat | |
parent | ba56a300a94bdf5520ac1324a8e7fbaeea430904 (diff) | |
download | ffmpeg-e4601cc3390eec6ccbfc1139bdd102b4e801ae80.tar.gz |
lavc/hevc*: move to hevc/ subdir
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/hevc.c | 2 | ||||
-rw-r--r-- | libavformat/hevcdec.c | 2 | ||||
-rw-r--r-- | libavformat/mov.c | 2 | ||||
-rw-r--r-- | libavformat/mpegtsenc.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/hevc.c b/libavformat/hevc.c index 395907807f..8ab0155f63 100644 --- a/libavformat/hevc.c +++ b/libavformat/hevc.c @@ -20,7 +20,7 @@ #include "libavcodec/get_bits.h" #include "libavcodec/golomb.h" -#include "libavcodec/hevc.h" +#include "libavcodec/hevc/hevc.h" #include "libavutil/intreadwrite.h" #include "libavutil/mem.h" #include "avc.h" diff --git a/libavformat/hevcdec.c b/libavformat/hevcdec.c index 255f03bc48..4fc4068cd5 100644 --- a/libavformat/hevcdec.c +++ b/libavformat/hevcdec.c @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libavcodec/hevc.h" +#include "libavcodec/hevc/hevc.h" #include "avformat.h" #include "rawdec.h" diff --git a/libavformat/mov.c b/libavformat/mov.c index 45eca74d1d..160e9626d7 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -52,7 +52,7 @@ #include "libavutil/uuid.h" #include "libavcodec/ac3tab.h" #include "libavcodec/flac.h" -#include "libavcodec/hevc.h" +#include "libavcodec/hevc/hevc.h" #include "libavcodec/mpegaudiodecheader.h" #include "libavcodec/mlp_parse.h" #include "avformat.h" diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 99ce3416f1..215783f324 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -32,7 +32,7 @@ #include "libavcodec/bytestream.h" #include "libavcodec/defs.h" #include "libavcodec/h264.h" -#include "libavcodec/hevc.h" +#include "libavcodec/hevc/hevc.h" #include "libavcodec/vvc.h" #include "libavcodec/startcode.h" |