Mercurial > mplayer.hg
annotate libmpdemux/demux_rtp_codec.cpp @ 22016:4479e6a1a140
Changing debug messages and renaming method names according to their
implementations.
author | voroshil |
---|---|
date | Sat, 27 Jan 2007 16:41:01 +0000 |
parents | a6b624360aef |
children | c9214f2c30c4 |
rev | line source |
---|---|
9250 | 1 ////////// Codec-specific routines used to interface between "MPlayer" |
16572
56a5f69e9b35
"LIVE.COM Streaming Media" is now called "LIVE555 Streaming Media".
rsf
parents:
11398
diff
changeset
|
2 ////////// and the "LIVE555 Streaming Media" libraries: |
9250 | 3 |
4 #include "demux_rtp_internal.h" | |
5 extern "C" { | |
21911
e86bb13ec44b
demux_rtp_codec.cpp:100: `INT_MAX' undeclared (first use this function)
diego
parents:
21871
diff
changeset
|
6 #include <limits.h> |
21983
a6b624360aef
better autodetection of framerate in case of h264; it works correctly with b-frames.
nicodvb
parents:
21911
diff
changeset
|
7 #include <math.h> |
9250 | 8 #include "stheader.h" |
9 } | |
10 | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
11 static void |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
12 needVideoFrameRate(demuxer_t* demuxer, MediaSubsession* subsession); // forward |
9250 | 13 static Boolean |
14 parseQTState_video(QuickTimeGenericRTPSource::QTState const& qtState, | |
15 unsigned& fourcc); // forward | |
16 static Boolean | |
17 parseQTState_audio(QuickTimeGenericRTPSource::QTState const& qtState, | |
18 unsigned& fourcc, unsigned& numChannels); // forward | |
19 | |
20 void rtpCodecInitialize_video(demuxer_t* demuxer, | |
21 MediaSubsession* subsession, | |
22 unsigned& flags) { | |
23 flags = 0; | |
24 // Create a dummy video stream header | |
25 // to make the main MPlayer code happy: | |
26 sh_video_t* sh_video = new_sh_video(demuxer,0); | |
27 BITMAPINFOHEADER* bih | |
28 = (BITMAPINFOHEADER*)calloc(1,sizeof(BITMAPINFOHEADER)); | |
29 bih->biSize = sizeof(BITMAPINFOHEADER); | |
30 sh_video->bih = bih; | |
31 demux_stream_t* d_video = demuxer->video; | |
32 d_video->sh = sh_video; sh_video->ds = d_video; | |
33 | |
34 // Map known video MIME types to the BITMAPINFOHEADER parameters | |
35 // that this program uses. (Note that not all types need all | |
36 // of the parameters to be set.) | |
10478
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
37 if (strcmp(subsession->codecName(), "MPV") == 0) { |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
38 flags |= RTPSTATE_IS_MPEG12_VIDEO; |
10478
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
39 } else if (strcmp(subsession->codecName(), "MP1S") == 0 || |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
40 strcmp(subsession->codecName(), "MP2T") == 0) { |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
41 flags |= RTPSTATE_IS_MPEG12_VIDEO|RTPSTATE_IS_MULTIPLEXED; |
9250 | 42 } else if (strcmp(subsession->codecName(), "H263") == 0 || |
43 strcmp(subsession->codecName(), "H263-1998") == 0) { | |
44 bih->biCompression = sh_video->format | |
45 = mmioFOURCC('H','2','6','3'); | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
46 needVideoFrameRate(demuxer, subsession); |
19415 | 47 } else if (strcmp(subsession->codecName(), "H264") == 0) { |
48 bih->biCompression = sh_video->format | |
49 = mmioFOURCC('H','2','6','4'); | |
50 needVideoFrameRate(demuxer, subsession); | |
9250 | 51 } else if (strcmp(subsession->codecName(), "H261") == 0) { |
52 bih->biCompression = sh_video->format | |
53 = mmioFOURCC('H','2','6','1'); | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
54 needVideoFrameRate(demuxer, subsession); |
9370
88bd19564b64
Motion-JPEG RTP streams can now be played. Some MPEG-4 ES video RTP
arpi
parents:
9250
diff
changeset
|
55 } else if (strcmp(subsession->codecName(), "JPEG") == 0) { |
88bd19564b64
Motion-JPEG RTP streams can now be played. Some MPEG-4 ES video RTP
arpi
parents:
9250
diff
changeset
|
56 bih->biCompression = sh_video->format |
88bd19564b64
Motion-JPEG RTP streams can now be played. Some MPEG-4 ES video RTP
arpi
parents:
9250
diff
changeset
|
57 = mmioFOURCC('M','J','P','G'); |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
58 needVideoFrameRate(demuxer, subsession); |
9370
88bd19564b64
Motion-JPEG RTP streams can now be played. Some MPEG-4 ES video RTP
arpi
parents:
9250
diff
changeset
|
59 } else if (strcmp(subsession->codecName(), "MP4V-ES") == 0) { |
88bd19564b64
Motion-JPEG RTP streams can now be played. Some MPEG-4 ES video RTP
arpi
parents:
9250
diff
changeset
|
60 bih->biCompression = sh_video->format |
88bd19564b64
Motion-JPEG RTP streams can now be played. Some MPEG-4 ES video RTP
arpi
parents:
9250
diff
changeset
|
61 = mmioFOURCC('m','p','4','v'); |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
62 // For the codec to work correctly, it may need a 'VOL Header' to be |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
63 // inserted at the front of the data stream. Construct this from the |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
64 // "config" MIME parameter, which was present (hopefully) in the |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
65 // session's SDP description: |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
66 unsigned configLen; |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
67 unsigned char* configData |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
68 = parseGeneralConfigStr(subsession->fmtp_config(), configLen); |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
69 insertRTPData(demuxer, demuxer->video, configData, configLen); |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
70 needVideoFrameRate(demuxer, subsession); |
9250 | 71 } else if (strcmp(subsession->codecName(), "X-QT") == 0 || |
72 strcmp(subsession->codecName(), "X-QUICKTIME") == 0) { | |
73 // QuickTime generic RTP format, as described in | |
74 // http://developer.apple.com/quicktime/icefloe/dispatch026.html | |
75 | |
76 // We can't initialize this stream until we've received the first packet | |
77 // that has QuickTime "sdAtom" information in the header. So, keep | |
78 // reading packets until we get one: | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
79 unsigned char* packetData; unsigned packetDataLen; float pts; |
9250 | 80 QuickTimeGenericRTPSource* qtRTPSource |
81 = (QuickTimeGenericRTPSource*)(subsession->rtpSource()); | |
82 unsigned fourcc; | |
83 do { | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
84 if (!awaitRTPPacket(demuxer, demuxer->video, |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
85 packetData, packetDataLen, pts)) { |
9250 | 86 return; |
87 } | |
88 } while (!parseQTState_video(qtRTPSource->qtState, fourcc)); | |
89 | |
90 bih->biCompression = sh_video->format = fourcc; | |
21871 | 91 bih->biWidth = qtRTPSource->qtState.width; |
92 bih->biHeight = qtRTPSource->qtState.height; | |
93 if (bih->biCompression == mmioFOURCC('a','v','c','1')) { | |
94 uint8_t *pos = (uint8_t*)qtRTPSource->qtState.sdAtom + 86; | |
95 uint8_t *endpos = (uint8_t*)qtRTPSource->qtState.sdAtom | |
96 + qtRTPSource->qtState.sdAtomSize; | |
97 while (pos+8 < endpos) { | |
98 unsigned atomLength = pos[0]<<24 | pos[1]<<16 | pos[2]<<8 | pos[3]; | |
99 if (atomLength == 0 || atomLength > endpos-pos) break; | |
100 if (memcmp(pos+4, "avcC", 4) == 0 && | |
101 atomLength > 8 && | |
102 atomLength <= INT_MAX-sizeof(BITMAPINFOHEADER)) { | |
103 bih->biSize = sizeof(BITMAPINFOHEADER)+atomLength-8; | |
104 sh_video->bih = bih = (BITMAPINFOHEADER*)realloc(bih, bih->biSize); | |
105 memcpy(bih+1, pos+8, atomLength-8); | |
106 break; | |
107 } | |
108 pos += atomLength; | |
109 } | |
110 needVideoFrameRate(demuxer, subsession); | |
111 } | |
9250 | 112 } else { |
113 fprintf(stderr, | |
114 "Unknown MPlayer format code for MIME type \"video/%s\"\n", | |
115 subsession->codecName()); | |
116 } | |
117 } | |
118 | |
119 void rtpCodecInitialize_audio(demuxer_t* demuxer, | |
120 MediaSubsession* subsession, | |
121 unsigned& flags) { | |
122 flags = 0; | |
123 // Create a dummy audio stream header | |
124 // to make the main MPlayer code happy: | |
125 sh_audio_t* sh_audio = new_sh_audio(demuxer,0); | |
126 WAVEFORMATEX* wf = (WAVEFORMATEX*)calloc(1,sizeof(WAVEFORMATEX)); | |
127 sh_audio->wf = wf; | |
128 demux_stream_t* d_audio = demuxer->audio; | |
129 d_audio->sh = sh_audio; sh_audio->ds = d_audio; | |
130 | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
131 wf->nChannels = subsession->numChannels(); |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
132 |
9250 | 133 // Map known audio MIME types to the WAVEFORMATEX parameters |
134 // that this program uses. (Note that not all types need all | |
135 // of the parameters to be set.) | |
136 wf->nSamplesPerSec | |
137 = subsession->rtpSource()->timestampFrequency(); // by default | |
138 if (strcmp(subsession->codecName(), "MPA") == 0 || | |
139 strcmp(subsession->codecName(), "MPA-ROBUST") == 0 || | |
140 strcmp(subsession->codecName(), "X-MP3-DRAFT-00") == 0) { | |
141 wf->wFormatTag = sh_audio->format = 0x55; | |
142 // Note: 0x55 is for layer III, but should work for I,II also | |
143 wf->nSamplesPerSec = 0; // sample rate is deduced from the data | |
144 } else if (strcmp(subsession->codecName(), "AC3") == 0) { | |
145 wf->wFormatTag = sh_audio->format = 0x2000; | |
146 wf->nSamplesPerSec = 0; // sample rate is deduced from the data | |
10478
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
147 } else if (strcmp(subsession->codecName(), "L16") == 0) { |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
148 wf->wFormatTag = sh_audio->format = 0x736f7774; // "twos" |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
149 wf->nBlockAlign = 1; |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
150 wf->wBitsPerSample = 16; |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
151 wf->cbSize = 0; |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
152 } else if (strcmp(subsession->codecName(), "L8") == 0) { |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
153 wf->wFormatTag = sh_audio->format = 0x20776172; // "raw " |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
154 wf->nBlockAlign = 1; |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
155 wf->wBitsPerSample = 8; |
b0d0aa726417
Added support for the "L16" and "L8" (raw PCM audio) RTP payload formats.
rsf
parents:
9910
diff
changeset
|
156 wf->cbSize = 0; |
9250 | 157 } else if (strcmp(subsession->codecName(), "PCMU") == 0) { |
158 wf->wFormatTag = sh_audio->format = 0x7; | |
159 wf->nAvgBytesPerSec = 8000; | |
160 wf->nBlockAlign = 1; | |
161 wf->wBitsPerSample = 8; | |
162 wf->cbSize = 0; | |
163 } else if (strcmp(subsession->codecName(), "PCMA") == 0) { | |
164 wf->wFormatTag = sh_audio->format = 0x6; | |
165 wf->nAvgBytesPerSec = 8000; | |
166 wf->nBlockAlign = 1; | |
167 wf->wBitsPerSample = 8; | |
168 wf->cbSize = 0; | |
169 } else if (strcmp(subsession->codecName(), "GSM") == 0) { | |
170 wf->wFormatTag = sh_audio->format = mmioFOURCC('a','g','s','m'); | |
171 wf->nAvgBytesPerSec = 1650; | |
172 wf->nBlockAlign = 33; | |
173 wf->wBitsPerSample = 16; | |
174 wf->cbSize = 0; | |
175 } else if (strcmp(subsession->codecName(), "QCELP") == 0) { | |
176 wf->wFormatTag = sh_audio->format = mmioFOURCC('Q','c','l','p'); | |
177 wf->nAvgBytesPerSec = 1750; | |
178 wf->nBlockAlign = 35; | |
179 wf->wBitsPerSample = 16; | |
180 wf->cbSize = 0; | |
181 } else if (strcmp(subsession->codecName(), "MP4A-LATM") == 0) { | |
182 wf->wFormatTag = sh_audio->format = mmioFOURCC('m','p','4','a'); | |
183 // For the codec to work correctly, it needs "AudioSpecificConfig" | |
184 // data, which is parsed from the "StreamMuxConfig" string that | |
185 // was present (hopefully) in the SDP description: | |
186 unsigned codecdata_len; | |
187 sh_audio->codecdata | |
188 = parseStreamMuxConfigStr(subsession->fmtp_config(), | |
189 codecdata_len); | |
190 sh_audio->codecdata_len = codecdata_len; | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
191 } else if (strcmp(subsession->codecName(), "MPEG4-GENERIC") == 0) { |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
192 wf->wFormatTag = sh_audio->format = mmioFOURCC('m','p','4','a'); |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
193 // For the codec to work correctly, it needs "AudioSpecificConfig" |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
194 // data, which was present (hopefully) in the SDP description: |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
195 unsigned codecdata_len; |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
196 sh_audio->codecdata |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
197 = parseGeneralConfigStr(subsession->fmtp_config(), |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
198 codecdata_len); |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
199 sh_audio->codecdata_len = codecdata_len; |
9250 | 200 } else if (strcmp(subsession->codecName(), "X-QT") == 0 || |
201 strcmp(subsession->codecName(), "X-QUICKTIME") == 0) { | |
202 // QuickTime generic RTP format, as described in | |
203 // http://developer.apple.com/quicktime/icefloe/dispatch026.html | |
204 | |
205 // We can't initialize this stream until we've received the first packet | |
206 // that has QuickTime "sdAtom" information in the header. So, keep | |
207 // reading packets until we get one: | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
208 unsigned char* packetData; unsigned packetDataLen; float pts; |
9250 | 209 QuickTimeGenericRTPSource* qtRTPSource |
210 = (QuickTimeGenericRTPSource*)(subsession->rtpSource()); | |
211 unsigned fourcc, numChannels; | |
212 do { | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
213 if (!awaitRTPPacket(demuxer, demuxer->audio, |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
214 packetData, packetDataLen, pts)) { |
9250 | 215 return; |
216 } | |
217 } while (!parseQTState_audio(qtRTPSource->qtState, fourcc, numChannels)); | |
218 | |
219 wf->wFormatTag = sh_audio->format = fourcc; | |
220 wf->nChannels = numChannels; | |
221 } else { | |
222 fprintf(stderr, | |
223 "Unknown MPlayer format code for MIME type \"audio/%s\"\n", | |
224 subsession->codecName()); | |
225 } | |
226 } | |
227 | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
228 static void needVideoFrameRate(demuxer_t* demuxer, |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
229 MediaSubsession* subsession) { |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
230 // For some codecs, MPlayer's decoding software can't (or refuses to :-) |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
231 // figure out the frame rate by itself, so (unless the user specifies |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
232 // it manually, using "-fps") we figure it out ourselves here, using the |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
233 // presentation timestamps in successive packets, |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
234 extern float force_fps; if (force_fps != 0.0) return; // user used "-fps" |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
235 |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
236 demux_stream_t* d_video = demuxer->video; |
9910 | 237 sh_video_t* sh_video = (sh_video_t*)(d_video->sh); |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
238 |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
239 // If we already know the subsession's video frame rate, use it: |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
240 int fps = (int)(subsession->videoFPS()); |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
241 if (fps != 0) { |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
242 sh_video->fps = fps; |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
243 return; |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
244 } |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
245 |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
246 // Keep looking at incoming frames until we see two with different, |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
247 // non-zero "pts" timestamps: |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
248 unsigned char* packetData; unsigned packetDataLen; |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
249 float lastPTS = 0.0, curPTS; |
11397
d0db11b74e82
Increased the threshold for how many incoming frames to look at while guessing
rsf
parents:
10478
diff
changeset
|
250 unsigned const maxNumFramesToWaitFor = 300; |
21983
a6b624360aef
better autodetection of framerate in case of h264; it works correctly with b-frames.
nicodvb
parents:
21911
diff
changeset
|
251 int lastfps = 0; |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
252 for (unsigned i = 0; i < maxNumFramesToWaitFor; ++i) { |
9910 | 253 if (!awaitRTPPacket(demuxer, d_video, packetData, packetDataLen, curPTS)) { |
254 break; | |
255 } | |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
256 |
21983
a6b624360aef
better autodetection of framerate in case of h264; it works correctly with b-frames.
nicodvb
parents:
21911
diff
changeset
|
257 if (curPTS != lastPTS && lastPTS != 0.0) { |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
258 // Use the difference between these two "pts"s to guess the frame rate. |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
259 // (should really check that there were no missing frames inbetween)##### |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
260 // Guess the frame rate as an integer. If it's not, use "-fps" instead. |
21983
a6b624360aef
better autodetection of framerate in case of h264; it works correctly with b-frames.
nicodvb
parents:
21911
diff
changeset
|
261 fps = (int)(1/fabs(curPTS-lastPTS) + 0.5); // rounding |
a6b624360aef
better autodetection of framerate in case of h264; it works correctly with b-frames.
nicodvb
parents:
21911
diff
changeset
|
262 if (fps == lastfps) { |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
263 fprintf(stderr, "demux_rtp: Guessed the video frame rate as %d frames-per-second.\n\t(If this is wrong, use the \"-fps <frame-rate>\" option instead.)\n", fps); |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
264 sh_video->fps = fps; |
21983
a6b624360aef
better autodetection of framerate in case of h264; it works correctly with b-frames.
nicodvb
parents:
21911
diff
changeset
|
265 sh_video->frametime=1.0f/fps; |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
266 return; |
21983
a6b624360aef
better autodetection of framerate in case of h264; it works correctly with b-frames.
nicodvb
parents:
21911
diff
changeset
|
267 } |
a6b624360aef
better autodetection of framerate in case of h264; it works correctly with b-frames.
nicodvb
parents:
21911
diff
changeset
|
268 if (fps>lastfps) lastfps = fps; |
9565
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
269 } |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
270 lastPTS = curPTS; |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
271 } |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
272 fprintf(stderr, "demux_rtp: Failed to guess the video frame rate\n"); |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
273 } |
e74916774667
Improved RTP packet buffering, by relying on the underlying OS's UDP
rsf
parents:
9370
diff
changeset
|
274 |
9250 | 275 static Boolean |
276 parseQTState_video(QuickTimeGenericRTPSource::QTState const& qtState, | |
277 unsigned& fourcc) { | |
278 // qtState's "sdAtom" field is supposed to contain a QuickTime video | |
279 // 'sample description' atom. This atom's name is the 'fourcc' that we want: | |
280 char const* sdAtom = qtState.sdAtom; | |
281 if (sdAtom == NULL || qtState.sdAtomSize < 2*4) return False; | |
282 | |
283 fourcc = *(unsigned*)(&sdAtom[4]); // put in host order | |
284 return True; | |
285 } | |
286 | |
287 static Boolean | |
288 parseQTState_audio(QuickTimeGenericRTPSource::QTState const& qtState, | |
289 unsigned& fourcc, unsigned& numChannels) { | |
290 // qtState's "sdAtom" field is supposed to contain a QuickTime audio | |
291 // 'sample description' atom. This atom's name is the 'fourcc' that we want. | |
292 // Also, the top half of the 5th word following the atom name should | |
293 // contain the number of channels ("numChannels") that we want: | |
294 char const* sdAtom = qtState.sdAtom; | |
295 if (sdAtom == NULL || qtState.sdAtomSize < 7*4) return False; | |
296 | |
297 fourcc = *(unsigned*)(&sdAtom[4]); // put in host order | |
298 | |
299 char const* word7Ptr = &sdAtom[6*4]; | |
300 numChannels = (word7Ptr[0]<<8)|(word7Ptr[1]); | |
301 return True; | |
302 } |