diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-08-21 17:14:24 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-10-16 20:26:17 +0200 |
commit | 4abe3b049d987420eb891f74a35af2cebbf52144 (patch) | |
tree | 56d0c93953cd7003d9f0442787df4ef97c6d9ed3 /libavformat | |
parent | 6c31ba226968f12f898120dbb928dab34e03782b (diff) | |
download | ffmpeg-4abe3b049d987420eb891f74a35af2cebbf52144.tar.gz |
hevc: rename hevc.[ch] to hevcdec.[ch]
This is more consistent with the rest of libav and frees up the hevc.h
name for decoder-independent shared declarations.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/hevc.c | 2 | ||||
-rw-r--r-- | libavformat/hevcdec.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/hevc.c b/libavformat/hevc.c index c835f2243e..b3a3603c0e 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/hevcdec.h" #include "libavutil/intreadwrite.h" #include "avc.h" #include "avio.h" diff --git a/libavformat/hevcdec.c b/libavformat/hevcdec.c index 65a3cdfb3c..75b2cd3916 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/hevcdec.h" #include "avformat.h" #include "rawdec.h" |