diff options
author | Alexandra Hájková <alexandra@khirnov.net> | 2016-04-23 16:44:11 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-05-04 15:14:14 +0200 |
commit | 5c31eaa9998b2185e0aa04d11adff128498dc14a (patch) | |
tree | 385171fd523ac163ce4ea4db7a360803fac37dbb /libavformat/tta.c | |
parent | c11c693accaad65d3f4afa44c27f2338a2e3bf8f (diff) | |
download | ffmpeg-5c31eaa9998b2185e0aa04d11adff128498dc14a.tar.gz |
Remove unnecessary get_bits.h #includes and add missing headers where needed.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavformat/tta.c')
-rw-r--r-- | libavformat/tta.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/tta.c b/libavformat/tta.c index be22527eab..091b502567 100644 --- a/libavformat/tta.c +++ b/libavformat/tta.c @@ -19,11 +19,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libavcodec/get_bits.h" +#include "libavutil/dict.h" +#include "libavutil/intreadwrite.h" + #include "avformat.h" #include "internal.h" #include "id3v1.h" -#include "libavutil/dict.h" typedef struct TTAContext { int totalframes, currentframe; |