From f7813a5324be39d13ab536c245d15dfc602a7849 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 29 Dec 2013 12:19:38 +0000 Subject: basic type mechanism working --- ffmpeg/libavcodec/chomp_bsf.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ffmpeg/libavcodec/chomp_bsf.c') 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, }; -- cgit v1.2.3