comparison libx264.c @ 6717:5df0c730234d libavcodec

Add some long names to AVCodec declarations. patch by Stefano Sabatini, stefano.sabatini-lala poste it
author diego
date Tue, 29 Apr 2008 07:24:44 +0000
parents 48759bfbd073
children e1302edb0f69
comparison
equal deleted inserted replaced
6716:aa09311685b2 6717:5df0c730234d
294 .priv_data_size = sizeof(X264Context), 294 .priv_data_size = sizeof(X264Context),
295 .init = X264_init, 295 .init = X264_init,
296 .encode = X264_frame, 296 .encode = X264_frame,
297 .close = X264_close, 297 .close = X264_close,
298 .capabilities = CODEC_CAP_DELAY, 298 .capabilities = CODEC_CAP_DELAY,
299 .pix_fmts = (enum PixelFormat[]) { PIX_FMT_YUV420P, -1 } 299 .pix_fmts = (enum PixelFormat[]) { PIX_FMT_YUV420P, -1 },
300 .long_name = "libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
300 }; 301 };