diff mbox

[FFmpeg-devel,14/14] avformat/aiffdec: Remove superfluous headers

Message ID 20191025180746.13725-14-andreas.rheinhardt@gmail.com
State New
Headers show

Commit Message

Andreas Rheinhardt Oct. 25, 2019, 6:07 p.m. UTC
aiffdec.c calls ff_mov_read_chan() whose declaration was in isom.h until
c4dba58f; from that commit onwards, isom.h was not needed anymore, yet
it hasn't been removed.
libavutil/mathematics.h has been included in 3383a53e for ldexp(), but
this function and the whole header isn't used any more since 70af8a5e.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavformat/aiffdec.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox

Patch

diff --git a/libavformat/aiffdec.c b/libavformat/aiffdec.c
index a42987c15f..ab422e5b8d 100644
--- a/libavformat/aiffdec.c
+++ b/libavformat/aiffdec.c
@@ -20,13 +20,11 @@ 
  */
 
 #include "libavutil/intreadwrite.h"
-#include "libavutil/mathematics.h"
 #include "libavutil/dict.h"
 #include "avformat.h"
 #include "internal.h"
 #include "pcm.h"
 #include "aiff.h"
-#include "isom.h"
 #include "id3v2.h"
 #include "mov_chan.h"
 #include "replaygain.h"