comparison gxf.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents 95054d76b7e6
children d18cc9a1fd02
comparison
equal deleted inserted replaced
1166:e89500dd9064 1167:d89d7ef290da
239 return ret; 239 return ret;
240 } 240 }
241 return AVERROR_IO; 241 return AVERROR_IO;
242 } 242 }
243 243
244 static AVInputFormat gxf_iformat = { 244 static AVInputFormat gxf_demuxer = {
245 "gxf", 245 "gxf",
246 "GXF format", 246 "GXF format",
247 0, 247 0,
248 gxf_probe, 248 gxf_probe,
249 gxf_header, 249 gxf_header,
251 NULL, 251 NULL,
252 NULL, 252 NULL,
253 }; 253 };
254 254
255 int gxf_init(void) { 255 int gxf_init(void) {
256 av_register_input_format(&gxf_iformat); 256 av_register_input_format(&gxf_demuxer);
257 return 0; 257 return 0;
258 } 258 }
259 259