lavfi/asyncts: Fix compilation with GCC 4.7

Compilation failed since commit 42d621d131
Error messages:
libavfilter/af_asyncts.c:249:5: error: initializer element is not
computable at load time
libavfilter/af_asyncts.c:249:5: error: (near initialization for
‘avfilter_af_asyncts.priv_size’)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Thomas Weber 2012-08-20 22:54:03 +02:00 committed by Michael Niedermayer
parent f4aeb48516
commit 1c585dddbb
1 changed files with 1 additions and 1 deletions

View File

@ -246,5 +246,5 @@ AVFilter avfilter_af_asyncts = {
.config_props = config_props,
.request_frame = request_frame },
{ NULL }},
.priv_size = &asyncts_class,
.priv_class = &asyncts_class,
};