summaryrefslogtreecommitdiff
path: root/libavcodec/dvbsub_parser.c
diff options
context:
space:
mode:
authorClément Bœsch <clement@stupeflix.com>2016-06-29 11:14:57 +0200
committerClément Bœsch <clement@stupeflix.com>2016-06-29 11:16:01 +0200
commit9b35242370be013074de4c48ac9156bd9e88d6d6 (patch)
treec05da9e854653187d6f2d4ca7a2f9cd25be25d75 /libavcodec/dvbsub_parser.c
parent1994a73a6ba424c03080f02e6b98ef96b7079c47 (diff)
parentb7f98659f21dce438c33b512e25fd64b8d07c347 (diff)
Merge commit 'b7f98659f21dce438c33b512e25fd64b8d07c347'
* commit 'b7f98659f21dce438c33b512e25fd64b8d07c347': Remove unnecessary get_bits.h #includes Merged-by: Clément Bœsch <clement@stupeflix.com>
Diffstat (limited to 'libavcodec/dvbsub_parser.c')
-rw-r--r--libavcodec/dvbsub_parser.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/libavcodec/dvbsub_parser.c b/libavcodec/dvbsub_parser.c
index af467f7b64..ccb63c35cd 100644
--- a/libavcodec/dvbsub_parser.c
+++ b/libavcodec/dvbsub_parser.c
@@ -18,8 +18,13 @@
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
+#include <inttypes.h>
+#include <string.h>
+
+#include "libavutil/intreadwrite.h"
+
#include "avcodec.h"
-#include "get_bits.h"
#include "internal.h"
/* Parser (mostly) copied from dvdsub.c */