diff options
Diffstat (limited to 'ffmpeg/libavcodec/chomp_bsf.c')
| -rw-r--r-- | ffmpeg/libavcodec/chomp_bsf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ffmpeg/libavcodec/chomp_bsf.c b/ffmpeg/libavcodec/chomp_bsf.c index eaefaaa..2b93fa9 100644 --- a/ffmpeg/libavcodec/chomp_bsf.c +++ b/ffmpeg/libavcodec/chomp_bsf.c @@ -41,7 +41,6 @@ static int chomp_filter(AVBitStreamFilterContext *bsfc, * This filter removes a string of NULL bytes from the end of a packet. */ AVBitStreamFilter ff_chomp_bsf = { - "chomp", - 0, - chomp_filter, + .name = "chomp", + .filter = chomp_filter, }; |
