~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/apc.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    avio_rl32(pb); /* _APC */
40
40
    avio_rl32(pb); /* 1.20 */
41
41
 
42
 
    st = av_new_stream(s, 0);
 
42
    st = avformat_new_stream(s, NULL);
43
43
    if (!st)
44
44
        return AVERROR(ENOMEM);
45
45
 
81
81
}
82
82
 
83
83
AVInputFormat ff_apc_demuxer = {
84
 
    "apc",
85
 
    NULL_IF_CONFIG_SMALL("CRYO APC format"),
86
 
    0,
87
 
    apc_probe,
88
 
    apc_read_header,
89
 
    apc_read_packet,
 
84
    .name           = "apc",
 
85
    .long_name      = NULL_IF_CONFIG_SMALL("CRYO APC format"),
 
86
    .read_probe     = apc_probe,
 
87
    .read_header    = apc_read_header,
 
88
    .read_packet    = apc_read_packet,
90
89
};