]> git.sesse.net Git - ffmpeg/blob - libavformat/oggparseogm.c
set stream time_base properly
[ffmpeg] / 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         int tag;
52         st->codec->codec_type = CODEC_TYPE_VIDEO;
53         p += 8;
54         tag = le2me_32(unaligned32(p));
55         st->codec->codec_id = codec_get_bmp_id(tag);
56         st->codec->codec_tag = tag;
57     } else {
58         int cid;
59         st->codec->codec_type = CODEC_TYPE_AUDIO;
60         p += 8;
61         p[4] = 0;
62         cid = strtol(p, NULL, 16);
63         st->codec->codec_id = codec_get_wav_id(cid);
64     }
65
66     p += 4;
67     p += 4;                     /* useless size field */
68
69     time_unit = le2me_64(unaligned64(p));
70     p += 8;
71     spu = le2me_64(unaligned64(p));
72     p += 8;
73     default_len = le2me_32(unaligned32(p));
74     p += 4;
75
76     p += 8;                     /* buffersize + bits_per_sample */
77
78     if(st->codec->codec_type == CODEC_TYPE_VIDEO){
79         st->codec->width = le2me_32(unaligned32(p));
80         p += 4;
81         st->codec->height = le2me_32(unaligned32(p));
82         st->codec->time_base.den = spu * 10000000;
83         st->codec->time_base.num = time_unit;
84         st->time_base = st->codec->time_base;
85     } else {
86         st->codec->channels = le2me_16(unaligned16(p));
87         p += 2;
88         p += 2;                 /* block_align */
89         st->codec->bit_rate = le2me_32(unaligned32(p)) * 8;
90         st->codec->sample_rate = spu * 10000000 / time_unit;
91         st->time_base.num = 1;
92         st->time_base.den = st->codec->sample_rate;
93     }
94
95     return 1;
96 }
97
98 static int
99 ogm_dshow_header(AVFormatContext *s, int idx)
100 {
101     ogg_t *ogg = s->priv_data;
102     ogg_stream_t *os = ogg->streams + idx;
103     AVStream *st = s->streams[idx];
104     uint8_t *p = os->buf + os->pstart;
105     uint32_t t;
106
107     if(!(*p & 1))
108         return 0;
109     if(*p != 1)
110         return 1;
111
112     t = le2me_32(unaligned32(p + 96));
113
114     if(t == 0x05589f80){
115         st->codec->codec_type = CODEC_TYPE_VIDEO;
116         st->codec->codec_id = codec_get_bmp_id(le2me_32(unaligned32(p + 68)));
117         st->codec->time_base.den = 10000000;
118         st->codec->time_base.num = le2me_64(unaligned64(p + 164));
119         st->codec->width = le2me_32(unaligned32(p + 176));
120         st->codec->height = le2me_32(unaligned32(p + 180));
121     } else if(t == 0x05589f81){
122         st->codec->codec_type = CODEC_TYPE_AUDIO;
123         st->codec->codec_id = codec_get_wav_id(le2me_16(unaligned16(p+124)));
124         st->codec->channels = le2me_16(unaligned16(p + 126));
125         st->codec->sample_rate = le2me_32(unaligned32(p + 128));
126         st->codec->bit_rate = le2me_32(unaligned32(p + 132)) * 8;
127     }
128
129     return 1;
130 }
131
132 static int
133 ogm_packet(AVFormatContext *s, int idx)
134 {
135     ogg_t *ogg = s->priv_data;
136     ogg_stream_t *os = ogg->streams + idx;
137     uint8_t *p = os->buf + os->pstart;
138     int lb;
139
140     lb = ((*p & 2) << 1) | ((*p >> 6) & 3);
141     os->pstart += lb + 1;
142     os->psize -= lb + 1;
143
144     return 0;
145 }
146
147 ogg_codec_t ogm_video_codec = {
148     .magic = "\001video",
149     .magicsize = 6,
150     .header = ogm_header,
151     .packet = ogm_packet
152 };
153
154 ogg_codec_t ogm_audio_codec = {
155     .magic = "\001audio",
156     .magicsize = 6,
157     .header = ogm_header,
158     .packet = ogm_packet
159 };
160
161 ogg_codec_t ogm_old_codec = {
162     .magic = "\001Direct Show Samples embedded in Ogg",
163     .magicsize = 35,
164     .header = ogm_dshow_header,
165     .packet = ogm_packet
166 };