Hi. > > Hi, basically you have two interfaces: > > > > 1) directly setting the context before to perform avcodec_open(), > > e.g. with: > > ctx->flags |= CODEC_FLAG_LOOP_FILTER; > > > > 2) use the av_set_* interface (check libavcodec/opt.[ch]) before to > > perform avcodec_open(), e.g. with: > > av_set_string(ctx, "flags", "+loop", 1); > > > > Also check the libavcodec/utils.c file for all the possible options > > you can set.
Thanks, this works for H.264 - does it much nice looking. 1) Any idea how to apply the same filter to older MPEG4? 2) Is it possible to reduce the required CPU load for this filter? Thanks again. _______________________________________________ libav-user mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/libav-user
