Commit 6cc15679 authored by James Almer's avatar James Almer

avcodec/dvaudio: add missing header include

Should fix make checkheaders
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent b34c9d1b
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
#ifndef AVCODEC_DVAUDIO_H #ifndef AVCODEC_DVAUDIO_H
#define AVCODEC_DVAUDIO_H #define AVCODEC_DVAUDIO_H
#include <stdint.h>
static inline int dv_get_audio_sample_count(const uint8_t *buffer, int dsf) static inline int dv_get_audio_sample_count(const uint8_t *buffer, int dsf)
{ {
int samples = buffer[0] & 0x3f; /* samples in this frame - min samples */ int samples = buffer[0] & 0x3f; /* samples in this frame - min samples */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment