summaryrefslogtreecommitdiff
path: root/libavcodec/internal.h
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2020-04-25 23:48:21 +0200
committerMarton Balint <cus@passwd.hu>2020-05-02 19:14:08 +0200
commitc96904f525afcaba756a5ce8511a3ee1aa9fd2d7 (patch)
tree3c42d1479417ba3dce581a4286536e999a299492 /libavcodec/internal.h
parenta75924ec88c107b3ee1acb8522724eca2bdb1d38 (diff)
avcodec/decode: use a single list bsf for codec decode bsfs
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r--libavcodec/internal.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 721fd017d4..df82789cdc 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -113,11 +113,6 @@ typedef struct DecodeSimpleContext {
AVFrame *out_frame;
} DecodeSimpleContext;
-typedef struct DecodeFilterContext {
- AVBSFContext **bsfs;
- int nb_bsfs;
-} DecodeFilterContext;
-
typedef struct AVCodecInternal {
/**
* Whether the parent AVCodecContext is a copy of the context which had
@@ -140,7 +135,7 @@ typedef struct AVCodecInternal {
void *thread_ctx;
DecodeSimpleContext ds;
- DecodeFilterContext filter;
+ AVBSFContext *bsf;
/**
* Properties (timestamps+side data) extracted from the last packet passed