comparison libx264.c @ 5103:1deb3e53da27 libavcodec

Consistent naming and lib prefixes for x264, xvid and mp3lame within the code.
author diego
date Wed, 06 Jun 2007 08:51:41 +0000
parents c3f2379b80db
children 744e91a36a23
comparison
equal deleted inserted replaced
5102:4323e587708d 5103:1deb3e53da27
285 } 285 }
286 286
287 return 0; 287 return 0;
288 } 288 }
289 289
290 AVCodec x264_encoder = { 290 AVCodec libx264_encoder = {
291 .name = "h264", 291 .name = "libx264",
292 .type = CODEC_TYPE_VIDEO, 292 .type = CODEC_TYPE_VIDEO,
293 .id = CODEC_ID_H264, 293 .id = CODEC_ID_H264,
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,