Code: Select all
...
05-05 12:36:58.442: WARN/vlc(21468): [0x2b0494] main audio output warning: PTS is out of range (-9695), dropping buffer
05-05 12:36:58.442: WARN/vlc(21468): [0x2b0494] main audio output warning: PTS is out of range (-27589), dropping buffer
05-05 12:36:58.492: WARN/vlc(21468): [0x2b0494] main audio output warning: input PTS is out of range (3589), trashing
05-05 12:36:58.512: WARN/vlc(21468): [0x2b0494] main audio output warning: input PTS is out of range (1106), trashing
05-05 12:36:58.542: WARN/vlc(21468): [0x2b0494] main audio output warning: input PTS is out of range (15499), trashing
05-05 12:36:58.562: WARN/vlc(21468): [0x2b0494] main audio output warning: input PTS is out of range (12864), trashing
05-05 12:36:58.572: WARN/vlc(21468): [0x2b0494] main audio output warning: input PTS is out of range (7970), trashing
05-05 12:36:58.602: WARN/vlc(21468): [0x2b0494] main audio output warning: input PTS is out of range (9332), trashing
05-05 12:36:58.622: WARN/vlc(21468): [0x2b0494] main audio output warning: input PTS is out of range (9321), trashing
...
lots and lots of it...
If I filter out amr in the logcat I can see that vlc-android did find the amr decorder (samr) :
Code: Select all
...
05-05 12:36:58.031: DEBUG/vlc(21468): [0x2aad2c] main input debug: Creating an input for 'test.amr'
05-05 12:36:58.061: DEBUG/vlc(21468): [0x2aad2c] main input debug: `file:///mnt/sdcard/test.amr' gives access `file' demux `' path `/mnt/sdcard/test.amr'
05-05 12:36:58.061: DEBUG/vlc(21468): [0x2aad2c] main input debug: creating demux: access='file' demux='' location='/mnt/sdcard/test.amr' file='/mnt/sdcard/test.amr'
05-05 12:36:58.061: DEBUG/vlc(21468): [0x2aad2c] main input debug: creating access 'file' location='/mnt/sdcard/test.amr', path='/mnt/sdcard/test.amr'
05-05 12:36:58.061: DEBUG/vlc(21468): [0x2af994] filesystem access debug: opening file `/mnt/sdcard/test.amr'
05-05 12:36:58.081: DEBUG/vlc(21468): [0x2aad2c] main input debug: creating demux: access='file' demux='' location='/mnt/sdcard/test.amr' file='/mnt/sdcard/test.amr'
05-05 12:36:58.081: DEBUG/vlc(21468): [0x2afd34] avformat demux debug: trying url: /mnt/sdcard/test.amr
05-05 12:36:58.081: DEBUG/vlc(21468): [0x2afd34] avformat demux debug: detected format: amr
05-05 12:36:58.382: DEBUG/vlc(21468): [0x2afd34] avformat demux debug: adding es: audio codec = samr
05-05 12:36:58.382: DEBUG/vlc(21468): [0x2afd34] avformat demux debug: - format = amr (3GPP AMR file format)
05-05 12:36:58.392: DEBUG/vlc(21468): [0x2aad2c] main input debug: `file:///mnt/sdcard/test.amr' successfully opened
...
I am basically using the stocked vlc-android code unchanged.
Any pointer? I am at a lost. Any help is appreciated ! Thank you
Grace