Hi, > could anyone please tell me, how I have to configure my AVCodecContext if I > want to encode my video with x264 interlaced? > > A simple > > ctx->flags |= CODEC_FLAG_INTERLACED_DCT; > > does not work. (I got this from the libx264.c - file). > > Any ideas?
try additionally: ctx->flags |= CODEC_FLAG_INTERLACED_ME; If this doesn't help, you could dig further into libx264.c. In ran once into the same problem and took all info needed to solve it from that file (look out for the parameter mapping and the interlaced keyword). Regards Andre _______________________________________________ libav-user mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/libav-user
