~ubuntu-branches/ubuntu/intrepid/gstreamer0.10-ffmpeg/intrepid

« back to all changes in this revision

Viewing changes to gst-libs/ext/ffmpeg/libavformat/sol.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-12-13 23:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20061213231028-9vl0epppqnwbq78i
Tags: upstream-0.10.2
Import upstream version 0.10.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 */
23
23
 
24
24
#include "avformat.h"
25
 
#include "avi.h"
 
25
#include "allformats.h"
 
26
#include "riff.h"
26
27
#include "bswap.h"
27
28
 
28
29
/* if we don't know the size in advance */
145
146
    return 0;
146
147
}
147
148
 
148
 
static AVInputFormat sol_iformat = {
 
149
AVInputFormat sol_demuxer = {
149
150
    "sol",
150
151
    "Sierra SOL Format",
151
152
    0,
155
156
    sol_read_close,
156
157
    pcm_read_seek,
157
158
};
158
 
 
159
 
int sol_init(void)
160
 
{
161
 
    av_register_input_format(&sol_iformat);
162
 
    return 0;
163
 
}