]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/oggparseogm.c
ogm demuxing
[frescor/ffmpeg.git] / libavformat / oggparseogm.c
1 /**
2     Copyright (C) 2005  Michael Ahlberg, Måns Rullgård
3
4     Permission is hereby granted, free of charge, to any person
5     obtaining a copy of this software and associated documentation
6     files (the "Software"), to deal in the Software without
7     restriction, including without limitation the rights to use, copy,
8     modify, merge, publish, distribute, sublicense, and/or sell copies
9     of the Software, and to permit persons to whom the Software is
10     furnished to do so, subject to the following conditions:
11
12     The above copyright notice and this permission notice shall be
13     included in all copies or substantial portions of the Software.
14
15     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22     DEALINGS IN THE SOFTWARE.
23 **/
24
25 #include <stdlib.h>
26 #include "avformat.h"
27 #include "bitstream.h"
28 #include "bswap.h"
29 #include "ogg2.h"
30 #include "avi.h"
31
32 static int
33 ogm_header(AVFormatContext *s, int idx)
34 {
35     ogg_t *ogg = s->priv_data;
36     ogg_stream_t *os = ogg->streams + idx;
37     AVStream *st = s->streams[idx];
38     uint8_t *p = os->buf + os->pstart;
39     uint64_t time_unit;
40     uint64_t spu;
41     uint32_t default_len;
42
43     if(!(*p & 1))
44         return 0;
45     if(*p != 1)
46         return 1;
47
48     p++;
49
50     if(*p == 'v'){
51         st->codec->codec_type = CODEC_TYPE_VIDEO;
52         p += 8;
53         st->codec->codec_id = codec_get_bmp_id(le2me_32(unaligned32(p)));
54     } else {
55         int cid;
56         st->codec->codec_type = CODEC_TYPE_AUDIO;
57         p += 8;
58         p[4] = 0;
59         cid = strtol(p, NULL, 16);
60         st->codec->codec_id = codec_get_wav_id(cid);
61     }
62
63     p += 4;
64     p += 4;                     /* useless size field */
65
66     time_unit = le2me_64(unaligned64(p));
67     p += 8;
68     spu = le2me_64(unaligned64(p));
69     p += 8;
70     default_len = le2me_32(unaligned32(p));
71     p += 4;
72
73     p += 8;                     /* buffersize + bits_per_sample */
74
75     if(st->codec->codec_type == CODEC_TYPE_VIDEO){
76         st->codec->width = le2me_32(unaligned32(p));
77         p += 4;
78         st->codec->height = le2me_32(unaligned32(p));
79         st->codec->time_base.den = spu * 10000000;
80         st->codec->time_base.num = time_unit;
81         st->time_base = st->codec->time_base;
82     } else {
83         st->codec->channels = le2me_16(unaligned16(p));
84         p += 2;
85         p += 2;                 /* block_align */
86         st->codec->bit_rate = le2me_32(unaligned32(p)) * 8;
87         st->codec->sample_rate = spu * 10000000 / time_unit;
88     }
89
90     return 1;
91 }
92
93 static int
94 ogm_dshow_header(AVFormatContext *s, int idx)
95 {
96     ogg_t *ogg = s->priv_data;
97     ogg_stream_t *os = ogg->streams + idx;
98     AVStream *st = s->streams[idx];
99     uint8_t *p = os->buf + os->pstart;
100     uint32_t t;
101
102     if(!(*p & 1))
103         return 0;
104     if(*p != 1)
105         return 1;
106
107     t = le2me_32(unaligned32(p + 96));
108
109     if(t == 0x05589f80){
110         st->codec->codec_type = CODEC_TYPE_VIDEO;
111         st->codec->codec_id = codec_get_bmp_id(le2me_32(unaligned32(p + 68)));
112         st->codec->time_base.den = 10000000;
113         st->codec->time_base.num = le2me_64(unaligned64(p + 164));
114         st->codec->width = le2me_32(unaligned32(p + 176));
115         st->codec->height = le2me_32(unaligned32(p + 180));
116     } else if(t == 0x05589f81){
117         st->codec->codec_type = CODEC_TYPE_AUDIO;
118         st->codec->codec_id = codec_get_wav_id(le2me_16(unaligned16(p+124)));
119         st->codec->channels = le2me_16(unaligned16(p + 126));
120         st->codec->sample_rate = le2me_32(unaligned32(p + 128));
121         st->codec->bit_rate = le2me_32(unaligned32(p + 132)) * 8;
122     }
123
124     return 1;
125 }
126
127 static int
128 ogm_packet(AVFormatContext *s, int idx)
129 {
130     ogg_t *ogg = s->priv_data;
131     ogg_stream_t *os = ogg->streams + idx;
132     uint8_t *p = os->buf + os->pstart;
133     int lb;
134
135     lb = ((*p & 2) << 1) | ((*p >> 6) & 3);
136     os->pstart += lb + 1;
137     os->psize -= lb + 1;
138
139     return 0;
140 }
141
142 ogg_codec_t ogm_video_codec = {
143     .magic = "\001video",
144     .magicsize = 6,
145     .header = ogm_header,
146     .packet = ogm_packet
147 };
148
149 ogg_codec_t ogm_audio_codec = {
150     .magic = "\001audio",
151     .magicsize = 6,
152     .header = ogm_header,
153     .packet = ogm_packet
154 };
155
156 ogg_codec_t ogm_old_codec = {
157     .magic = "\001Direct Show Samples embedded in Ogg",
158     .magicsize = 35,
159     .header = ogm_dshow_header,
160     .packet = ogm_packet
161 };