summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/internal.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 5363c0c355..b6b8fbf56f 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -24,7 +24,6 @@
#include <stdint.h>
#include "libavcodec/avcodec.h"
-#include "libavcodec/bsf.h"
#include "libavcodec/packet_internal.h"
#include "avformat.h"
@@ -212,7 +211,7 @@ typedef struct FFStream {
* - encoding: Set by muxer using ff_stream_add_bitstream_filter
* - decoding: unused
*/
- AVBSFContext *bsfc;
+ struct AVBSFContext *bsfc;
/**
* Whether or not check_bitstream should still be run on each packet
@@ -232,7 +231,7 @@ typedef struct FFStream {
* inited=1/bsf=NULL signals that extracting is not possible (codec not
* supported) */
struct {
- AVBSFContext *bsf;
+ struct AVBSFContext *bsf;
int inited;
} extract_extradata;