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

« back to all changes in this revision

Viewing changes to libavformat/4xm.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:
318
318
    return 0;
319
319
}
320
320
 
321
 
static AVInputFormat fourxm_iformat = {
 
321
AVInputFormat fourxm_demuxer = {
322
322
    "4xm",
323
323
    "4X Technologies format",
324
324
    sizeof(FourxmDemuxContext),
327
327
    fourxm_read_packet,
328
328
    fourxm_read_close,
329
329
};
330
 
 
331
 
int fourxm_init(void)
332
 
{
333
 
    av_register_input_format(&fourxm_iformat);
334
 
    return 0;
335
 
}