~ubuntu-branches/ubuntu/hardy/ffmpeg/hardy

« back to all changes in this revision

Viewing changes to libavformat/idcin.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-23 14:35:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060823143552-8fxnur5b9gesr03m
Tags: 3:0.cvs20060823-0ubuntu1
* Sync with Debian:
  + Add the epoch again

Show diffs side-by-side

added added

removed removed

Lines of Context:
288
288
    return 0;
289
289
}
290
290
 
291
 
static AVInputFormat idcin_iformat = {
 
291
AVInputFormat idcin_demuxer = {
292
292
    "idcin",
293
293
    "Id CIN format",
294
294
    sizeof(IdcinDemuxContext),
297
297
    idcin_read_packet,
298
298
    idcin_read_close,
299
299
};
300
 
 
301
 
int idcin_init(void)
302
 
{
303
 
    av_register_input_format(&idcin_iformat);
304
 
    return 0;
305
 
}