Mercurial > mplayer.hg
annotate libmpcodecs/ad_mpg123.c @ 36372:c95bdc49af2e
ad_ffmpeg: fix commit fixing sample rate changes to actually work.
author | reimar |
---|---|
date | Wed, 16 Oct 2013 17:20:31 +0000 |
parents | de83009f96bd |
children | 85c8e2989c90 |
rev | line source |
---|---|
31524 | 1 /* |
2 * MPEG 1.0/2.0/2.5 audio layer I, II, III decoding with libmpg123 | |
3 * | |
36365 | 4 * Copyright (C) 2010-2013 Thomas Orgis <thomas@orgis.org> |
31524 | 5 * |
6 * MPlayer is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * MPlayer is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License along | |
17 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
19 */ | |
20 | |
21 #include <stdio.h> | |
22 #include <stdlib.h> | |
23 #include <unistd.h> | |
24 | |
25 #include "config.h" | |
34174
a93891202051
Add missing mp_msg.h #includes, remove some unnecessary ones.
diego
parents:
31981
diff
changeset
|
26 #include "mp_msg.h" |
31524 | 27 #include "ad_internal.h" |
31981
ae5a36acc995
Add the proper include instead of declaring the fakemono variable extern.
diego
parents:
31666
diff
changeset
|
28 #include "dec_audio.h" |
31524 | 29 |
30 static const ad_info_t info = { | |
31 "MPEG 1.0/2.0/2.5 layers I, II, III", | |
32 "mpg123", | |
33 "Thomas Orgis", | |
34 "mpg123.org", | |
35 "High-performance decoder using libmpg123." | |
36 }; | |
37 | |
38 LIBAD_EXTERN(mpg123) | |
39 | |
40 #include "libvo/fastmemcpy.h" | |
41 | |
34722 | 42 /* Reducing the ifdeffery to two main variants: |
43 * 1. most compatible to any libmpg123 version | |
44 * 2. fastest variant with recent libmpg123 (>=1.14) | |
45 * Running variant 2 on older libmpg123 versions may work in | |
46 * principle, but is not supported. | |
47 * So, please leave the check for MPG123_API_VERSION there, m-kay? | |
48 */ | |
31524 | 49 #include <mpg123.h> |
50 | |
34722 | 51 /* Enable faster mode of operation with newer libmpg123, avoiding |
52 * unnecessary memcpy() calls. */ | |
53 #if (defined MPG123_API_VERSION) && (MPG123_API_VERSION >= 33) | |
54 #define AD_MPG123_FRAMEWISE | |
55 #endif | |
31524 | 56 |
57 /* Switch for updating bitrate info of VBR files. Not essential. */ | |
58 #define AD_MPG123_MEAN_BITRATE | |
59 | |
60 struct ad_mpg123_context { | |
61 mpg123_handle *handle; | |
36365 | 62 char new_format; |
31524 | 63 #ifdef AD_MPG123_MEAN_BITRATE |
64 /* Running mean for bit rate, stream length estimation. */ | |
65 float mean_rate; | |
66 unsigned int mean_count; | |
67 /* Time delay for updates. */ | |
68 short delay; | |
69 #endif | |
70 /* If the stream is actually VBR. */ | |
71 char vbr; | |
72 }; | |
73 | |
74 /* This initializes libmpg123 and prepares the handle, including funky | |
75 * parameters. */ | |
76 static int preinit(sh_audio_t *sh) | |
77 { | |
78 int err, flag; | |
79 struct ad_mpg123_context *con; | |
80 /* Assumption: You always call preinit + init + uninit, on every file. | |
81 * But you stop at preinit in case it fails. | |
82 * If that is not true, one must ensure not to call mpg123_init / exit | |
83 * twice in a row. */ | |
84 if (mpg123_init() != MPG123_OK) | |
85 return 0; | |
86 | |
87 sh->context = malloc(sizeof(struct ad_mpg123_context)); | |
88 con = sh->context; | |
89 /* Auto-choice of optimized decoder (first argument NULL). */ | |
90 con->handle = mpg123_new(NULL, &err); | |
91 if (!con->handle) | |
92 goto bad_end; | |
93 | |
94 #ifdef CONFIG_FAKE_MONO | |
95 /* Guessing here: Default value triggers forced upmix of mono to stereo. */ | |
96 flag = fakemono == 0 ? MPG123_FORCE_STEREO : | |
97 fakemono == 1 ? MPG123_MONO_LEFT : | |
98 fakemono == 2 ? MPG123_MONO_RIGHT : 0; | |
99 if (mpg123_param(con->handle, MPG123_ADD_FLAGS, flag, 0.0) != MPG123_OK) | |
100 goto bad_end; | |
101 #endif | |
102 | |
103 /* Basic settings. | |
104 * Don't spill messages, enable better resync with non-seekable streams. | |
105 * Give both flags individually without error checking to keep going with | |
106 * old libmpg123. Generally, it is not fatal if the flags are not | |
107 * honored */ | |
108 mpg123_param(con->handle, MPG123_ADD_FLAGS, MPG123_QUIET, 0.0); | |
31666 | 109 /* Do not bail out on malformed streams at all. |
110 * MPlayer does not handle a decoder throwing the towel on crappy input. */ | |
111 mpg123_param(con->handle, MPG123_RESYNC_LIMIT, -1, 0.0); | |
31524 | 112 |
113 /* Open decisions: Configure libmpg123 to force encoding (or stay open about | |
114 * library builds that support only float or int32 output), (de)configure | |
115 * gapless decoding (won't work with seeking in MPlayer, though). | |
116 * Don't forget to eventually enable ReplayGain/RVA support, too. | |
117 * Let's try to run with the default for now. */ | |
118 | |
34722 | 119 /* That would produce floating point output. |
36365 | 120 * You can get 32 and 24 bit ints, even 8 bit via format matrix. |
121 * If wanting a specific encoding here, configure format matrix and | |
122 * make sure it is in set_format(). */ | |
34722 | 123 /* mpg123_param(con->handle, MPG123_ADD_FLAGS, MPG123_FORCE_FLOAT, 0.); */ |
124 | |
31524 | 125 /* Example for RVA choice (available since libmpg123 1.0.0): |
126 mpg123_param(con->handle, MPG123_RVA, MPG123_RVA_MIX, 0.0) */ | |
127 | |
34722 | 128 #ifdef AD_MPG123_FRAMEWISE |
129 /* Prevent funky automatic resampling. | |
130 * This way, we can be sure that one frame will never produce | |
131 * more than 1152 stereo samples. */ | |
132 mpg123_param(con->handle, MPG123_REMOVE_FLAGS, MPG123_AUTO_RESAMPLE, 0.); | |
133 #else | |
134 /* Older mpg123 is vulnerable to concatenated streams when gapless cutting | |
135 * is enabled (will only play the jingle of a badly constructed radio | |
136 * stream). The versions using framewise decoding are fine with that. */ | |
137 mpg123_param(con->handle, MPG123_REMOVE_FLAGS, MPG123_GAPLESS, 0.); | |
138 #endif | |
139 | |
31524 | 140 return 1; |
141 | |
142 bad_end: | |
143 if (!con->handle) | |
144 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "mpg123 preinit error: %s\n", | |
145 mpg123_plain_strerror(err)); | |
146 else | |
147 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "mpg123 preinit error: %s\n", | |
148 mpg123_strerror(con->handle)); | |
149 | |
150 if (con->handle) | |
151 mpg123_delete(con->handle); | |
152 mpg123_exit(); | |
153 free(sh->context); | |
154 sh->context = NULL; | |
155 return 0; | |
156 } | |
157 | |
158 /* Compute bitrate from frame size. */ | |
159 static int compute_bitrate(struct mpg123_frameinfo *i) | |
160 { | |
161 static const int samples_per_frame[4][4] = { | |
162 {-1, 384, 1152, 1152}, /* MPEG 1 */ | |
163 {-1, 384, 1152, 576}, /* MPEG 2 */ | |
164 {-1, 384, 1152, 576}, /* MPEG 2.5 */ | |
165 {-1, -1, -1, -1}, /* Unknown */ | |
166 }; | |
167 return (int) ((i->framesize + 4) * 8 * i->rate * 0.001 / | |
168 samples_per_frame[i->version][i->layer] + 0.5); | |
169 } | |
170 | |
171 /* Opted against the header printout from old mp3lib, too much | |
172 * irrelevant info. This is modelled after the mpg123 app's | |
173 * standard output line. | |
174 * If more verbosity is demanded, one can add more detail and | |
175 * also throw in ID3v2 info which libmpg123 collects anyway. */ | |
176 static void print_header_compact(struct mpg123_frameinfo *i) | |
177 { | |
178 static const char *smodes[5] = { | |
179 "stereo", "joint-stereo", "dual-channel", "mono", "invalid" | |
180 }; | |
181 static const char *layers[4] = { | |
182 "Unknown", "I", "II", "III" | |
183 }; | |
184 static const char *versions[4] = { | |
185 "1.0", "2.0", "2.5", "x.x" | |
186 }; | |
187 | |
188 mp_msg(MSGT_DECAUDIO, MSGL_V, "MPEG %s layer %s, ", | |
189 versions[i->version], layers[i->layer]); | |
190 switch (i->vbr) { | |
191 case MPG123_CBR: | |
192 if (i->bitrate) | |
193 mp_msg(MSGT_DECAUDIO, MSGL_V, "%d kbit/s", i->bitrate); | |
194 else | |
195 mp_msg(MSGT_DECAUDIO, MSGL_V, "%d kbit/s (free format)", | |
196 compute_bitrate(i)); | |
197 break; | |
198 case MPG123_VBR: | |
199 mp_msg(MSGT_DECAUDIO, MSGL_V, "VBR"); | |
200 break; | |
201 case MPG123_ABR: | |
202 mp_msg(MSGT_DECAUDIO, MSGL_V, "%d kbit/s ABR", i->abr_rate); | |
203 break; | |
204 default: | |
205 mp_msg(MSGT_DECAUDIO, MSGL_V, "???"); | |
206 } | |
207 mp_msg(MSGT_DECAUDIO, MSGL_V, ", %ld Hz %s\n", i->rate, | |
208 smodes[i->mode]); | |
209 } | |
210 | |
36365 | 211 /* libmpg123 has a new format ready; query and store, return return value |
212 of mpg123_getformat() */ | |
213 static int set_format(sh_audio_t *sh, struct ad_mpg123_context *con) | |
214 { | |
215 int ret; | |
216 long rate; | |
217 int channels; | |
218 int encoding; | |
219 ret = mpg123_getformat(con->handle, &rate, &channels, &encoding); | |
220 if(ret == MPG123_OK) { | |
221 sh->channels = channels; | |
222 sh->samplerate = rate; | |
223 /* Without external force, mpg123 will always choose signed encoding, | |
224 * and non-16-bit only on builds that don't support it. | |
225 * Be reminded that it doesn't matter to the MPEG file what encoding | |
226 * is produced from it. */ | |
227 switch (encoding) { | |
228 case MPG123_ENC_SIGNED_8: | |
229 sh->sample_format = AF_FORMAT_S8; | |
230 sh->samplesize = 1; | |
231 break; | |
232 case MPG123_ENC_SIGNED_16: | |
233 sh->sample_format = AF_FORMAT_S16_NE; | |
234 sh->samplesize = 2; | |
235 break; | |
236 /* To stay compatible with the oldest libmpg123 headers, do not rely | |
237 * on float and 32 bit encoding symbols being defined. | |
238 * Those formats came later */ | |
239 case 0x1180: /* MPG123_ENC_SIGNED_32 */ | |
240 sh->sample_format = AF_FORMAT_S32_NE; | |
241 sh->samplesize = 4; | |
242 break; | |
243 case 0x200: /* MPG123_ENC_FLOAT_32 */ | |
244 sh->sample_format = AF_FORMAT_FLOAT_NE; | |
245 sh->samplesize = 4; | |
246 break; | |
247 default: | |
248 /* This means we got a funny custom build of libmpg123 that only supports an unknown format. */ | |
249 mp_msg(MSGT_DECAUDIO, MSGL_ERR, | |
250 "Bad encoding from mpg123: %i.\n", encoding); | |
251 return MPG123_ERR; | |
252 } | |
253 #ifdef AD_MPG123_FRAMEWISE | |
254 /* Going to decode directly to MPlayer's memory. It is important | |
255 * to have MPG123_AUTO_RESAMPLE disabled for the buffer size | |
256 * being an all-time limit. */ | |
257 sh->audio_out_minsize = 1152 * 2 * sh->samplesize; | |
258 #endif | |
259 con->new_format = 0; | |
260 } | |
261 return ret; | |
262 } | |
263 | |
31524 | 264 /* This tries to extract a requested amount of decoded data. |
265 * Even when you request 0 bytes, it will feed enough input so that | |
266 * the decoder _could_ have delivered something. | |
267 * Returns byte count >= 0, -1 on error. | |
268 * | |
269 * Thoughts on exact pts keeping: | |
270 * We have to assume that MPEG frames are cut in pieces by packet boundaries. | |
271 * Also, it might be possible that the first packet does not contain enough | |
272 * data to ensure initial stream sync... or re-sync on erroneous streams. | |
273 * So we need something robust to relate the decoded byte count to the correct | |
274 * time stamp. This is tricky, though. From the outside, you cannot tell if, | |
275 * after having fed two packets until the first output arrives, one should | |
276 * start counting from the first packet's pts or the second packet's. | |
277 * So, let's just count from the last fed package's pts. If the packets are | |
278 * exactly cut to MPEG frames, this will cause one frame mismatch in the | |
279 * beginning (when mpg123 peeks ahead for the following header), but will | |
280 * be corrected with the third frame already. One might add special code to | |
281 * not increment the base pts past the first packet's after a resync before | |
282 * the first decoded bytes arrived. */ | |
283 static int decode_a_bit(sh_audio_t *sh, unsigned char *buf, int count) | |
284 { | |
285 int ret = MPG123_OK; | |
286 int got = 0; | |
287 struct ad_mpg123_context *con = sh->context; | |
288 | |
289 /* There will be one MPG123_NEW_FORMAT message on first open. | |
34722 | 290 * This will be handled in init(). */ |
31524 | 291 do { |
292 size_t got_now = 0; | |
36365 | 293 /* Fetch new format now, after old data has been used. */ |
294 if(con->new_format) | |
295 ret = set_format(sh, con); | |
31524 | 296 |
34722 | 297 /* Feed the decoder. This will only fire from the second round on. */ |
31524 | 298 if (ret == MPG123_NEED_MORE) { |
299 int incount; | |
300 double pts; | |
301 unsigned char *inbuf; | |
302 /* Feed more input data. */ | |
303 incount = ds_get_packet_pts(sh->ds, &inbuf, &pts); | |
304 if (incount <= 0) | |
305 break; /* Apparently that's it. EOF. */ | |
306 | |
307 /* Next bytes from that presentation time. */ | |
308 if (pts != MP_NOPTS_VALUE) { | |
309 sh->pts = pts; | |
310 sh->pts_bytes = 0; | |
311 } | |
34722 | 312 |
313 #ifdef AD_MPG123_FRAMEWISE | |
314 /* Have to use mpg123_feed() to avoid decoding here. */ | |
315 ret = mpg123_feed(con->handle, inbuf, incount); | |
31524 | 316 #else |
317 /* Do not use mpg123_feed(), added in later libmpg123 versions. */ | |
318 ret = mpg123_decode(con->handle, inbuf, incount, NULL, 0, NULL); | |
34722 | 319 #endif |
320 if (ret == MPG123_ERR) | |
321 break; | |
36365 | 322 |
323 /* Indication of format change is possible here (from mpg123_decode()). */ | |
324 if(ret == MPG123_NEW_FORMAT) { | |
325 con->new_format = 1; | |
326 if(got) | |
327 break; /* Do not switch format during a chunk. */ | |
328 | |
329 ret = set_format(sh, con); | |
330 } | |
31524 | 331 } |
34722 | 332 /* Theoretically, mpg123 could return MPG123_DONE, so be prepared. |
333 * Should not happen in our usage, but it is a valid return code. */ | |
31524 | 334 else if (ret == MPG123_ERR || ret == MPG123_DONE) |
335 break; | |
336 | |
34722 | 337 /* Try to decode a bit. This is the return value that counts |
338 * for the loop condition. */ | |
339 #ifdef AD_MPG123_FRAMEWISE | |
340 if (!buf) { /* fake call just for feeding to get format */ | |
36365 | 341 ret = set_format(sh, con); |
34722 | 342 } else { /* This is the decoding. One frame at a time. */ |
343 ret = mpg123_replace_buffer(con->handle, buf, count); | |
344 if (ret == MPG123_OK) | |
345 ret = mpg123_decode_frame(con->handle, NULL, NULL, &got_now); | |
346 } | |
347 #else | |
348 ret = mpg123_decode(con->handle, NULL, 0, buf + got, count - got, | |
349 &got_now); | |
350 #endif | |
351 | |
352 got += got_now; | |
353 sh->pts_bytes += got_now; | |
354 | |
36365 | 355 /* Indication of format change should happen here. */ |
356 if(ret == MPG123_NEW_FORMAT) { | |
357 con->new_format = 1; | |
358 if(got) | |
359 break; /* Do not switch format during a chunk. */ | |
360 | |
361 ret = set_format(sh, con); | |
362 } | |
363 | |
34722 | 364 #ifdef AD_MPG123_FRAMEWISE |
365 } while (ret == MPG123_NEED_MORE || (got == 0 && count != 0)); | |
366 #else | |
31524 | 367 } while (ret == MPG123_NEED_MORE || got < count); |
34722 | 368 #endif |
31524 | 369 |
370 if (ret == MPG123_ERR) { | |
371 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "mpg123 decoding failed: %s\n", | |
372 mpg123_strerror(con->handle)); | |
373 } | |
374 | |
375 return got; | |
376 } | |
377 | |
378 /* Close, reopen stream. Feed data until we know the format of the stream. | |
379 * 1 on success, 0 on error */ | |
380 static int reopen_stream(sh_audio_t *sh) | |
381 { | |
382 struct ad_mpg123_context *con = (struct ad_mpg123_context*) sh->context; | |
383 | |
384 mpg123_close(con->handle); | |
34722 | 385 /* No resetting of the context: |
386 * We do not want to loose the mean bitrate data. */ | |
31524 | 387 |
34722 | 388 /* Open and make sure we have fed enough data to get stream properties. */ |
389 if (MPG123_OK == mpg123_open_feed(con->handle) && | |
31524 | 390 /* Feed data until mpg123 is ready (has found stream beginning). */ |
36365 | 391 !decode_a_bit(sh, NULL, 0) && |
392 set_format(sh, con) == MPG123_OK) { /* format setting again just for return value */ | |
31524 | 393 return 1; |
394 } else { | |
395 mp_msg(MSGT_DECAUDIO, MSGL_ERR, | |
396 "mpg123 failed to reopen stream: %s\n", | |
397 mpg123_strerror(con->handle)); | |
398 return 0; | |
399 } | |
400 } | |
401 | |
402 /* Now we really start accessing some data and determining file format. | |
36365 | 403 * Format now is allowed to change on-the-fly. Here is the only point |
404 * that has MPlayer react to errors. We have to pray that exceptional | |
405 * erros in other places simply cannot occur. */ | |
31524 | 406 static int init(sh_audio_t *sh) |
407 { | |
408 mpg123_id3v2 *v2; | |
409 struct mpg123_frameinfo finfo; | |
410 struct ad_mpg123_context *con = sh->context; | |
411 | |
36365 | 412 con->new_format = 0; |
413 if (reopen_stream(sh) && | |
31524 | 414 /* Get MPEG header info. */ |
415 MPG123_OK == mpg123_info(con->handle, &finfo) && | |
416 /* Since we queried format, mpg123 should have read past ID3v2 tags. | |
417 * We need to decide if printing of UTF-8 encoded text info is wanted. */ | |
418 MPG123_OK == mpg123_id3(con->handle, NULL, &v2)) { | |
419 /* If we are here, we passed all hurdles. Yay! Extract the info. */ | |
420 print_header_compact(&finfo); | |
421 /* Do we want to print out the UTF-8 Id3v2 info? | |
422 if (v2) | |
423 print_id3v2(v2); */ | |
424 | |
425 /* Have kb/s, want B/s | |
426 * For VBR, the first frame will be a bad estimate. */ | |
427 sh->i_bps = (finfo.bitrate ? finfo.bitrate : compute_bitrate(&finfo)) | |
428 * 1000 / 8; | |
34722 | 429 #ifdef AD_MPG123_MEAN_BITRATE |
430 con->delay = 1; | |
431 con->mean_rate = 0.; | |
432 con->mean_count = 0; | |
433 #endif | |
31524 | 434 con->vbr = (finfo.vbr != MPG123_CBR); |
435 | |
436 return 1; | |
437 } else { | |
438 mp_msg(MSGT_DECAUDIO, MSGL_ERR, "mpg123 init error: %s\n", | |
439 mpg123_strerror(con->handle)); | |
440 return 0; | |
441 } | |
442 } | |
443 | |
444 static void uninit(sh_audio_t *sh) | |
445 { | |
446 struct ad_mpg123_context *con = (struct ad_mpg123_context*) sh->context; | |
447 | |
448 mpg123_close(con->handle); | |
449 mpg123_delete(con->handle); | |
450 free(sh->context); | |
451 sh->context = NULL; | |
452 mpg123_exit(); | |
453 } | |
454 | |
455 #ifdef AD_MPG123_MEAN_BITRATE | |
456 /* Update mean bitrate. This could be dropped if accurate time display | |
457 * on audio file playback is not desired. */ | |
458 static void update_info(sh_audio_t *sh) | |
459 { | |
460 struct ad_mpg123_context *con = sh->context; | |
461 if (con->vbr && --con->delay < 1) { | |
462 struct mpg123_frameinfo finfo; | |
463 if (MPG123_OK == mpg123_info(con->handle, &finfo)) { | |
464 if (++con->mean_count > ((unsigned int) -1) / 2) | |
465 con->mean_count = ((unsigned int) -1) / 4; | |
466 | |
467 /* Might not be numerically optimal, but works fine enough. */ | |
468 con->mean_rate = ((con->mean_count - 1) * con->mean_rate + | |
469 finfo.bitrate) / con->mean_count; | |
470 sh->i_bps = (int) (con->mean_rate * 1000 / 8); | |
471 | |
472 con->delay = 10; | |
473 } | |
474 } | |
475 } | |
476 #endif | |
477 | |
478 static int decode_audio(sh_audio_t *sh, unsigned char *buf, int minlen, | |
479 int maxlen) | |
480 { | |
481 int bytes; | |
482 | |
34722 | 483 bytes = decode_a_bit(sh, buf, maxlen); |
36365 | 484 /* This EOF is ignored, apparently, until input data is exhausted. */ |
31524 | 485 if (bytes == 0) |
486 return -1; /* EOF */ | |
487 | |
488 #ifdef AD_MPG123_MEAN_BITRATE | |
489 update_info(sh); | |
490 #endif | |
491 return bytes; | |
492 } | |
493 | |
494 static int control(sh_audio_t *sh, int cmd, void *arg, ...) | |
495 { | |
496 switch (cmd) { | |
497 case ADCTRL_RESYNC_STREAM: | |
498 /* Close/reopen the stream for mpg123 to make sure it doesn't | |
499 * think that it still knows the exact stream position. | |
500 * Otherwise, we would have funny effects from the gapless code. | |
501 * Oh, and it helps to minimize artifacts from jumping in the stream. */ | |
502 if (reopen_stream(sh)) { | |
503 #ifdef AD_MPG123_MEAN_BITRATE | |
504 update_info(sh); | |
505 #endif | |
506 return CONTROL_TRUE; | |
507 } else { | |
34797
079b53acda6d
Workaround bug in mpg123. In rare cases, after seeking mplayer stops audio playback and would repeat "No stream opened. (code 24)" until next seek.
iive
parents:
34722
diff
changeset
|
508 /* MPlayer ignores this case! It just keeps on decoding. |
079b53acda6d
Workaround bug in mpg123. In rare cases, after seeking mplayer stops audio playback and would repeat "No stream opened. (code 24)" until next seek.
iive
parents:
34722
diff
changeset
|
509 * So we have to make sure resync never fails ... */ |
31524 | 510 mp_msg(MSGT_DECAUDIO, MSGL_ERR, |
511 "mpg123 cannot reopen stream for resync.\n"); | |
512 return CONTROL_FALSE; | |
513 } | |
514 break; | |
515 } | |
516 return CONTROL_UNKNOWN; | |
517 } |