Fix audio stream type

This commit is contained in:
Victor Shcherb 2012-09-12 22:26:44 +02:00
parent c627bbc27e
commit beef4ab9db
2 changed files with 1 additions and 2 deletions

View file

@ -54,7 +54,7 @@ public abstract class AbstractPrologCommandPlayer implements CommandPlayer {
private final int[] sortedVoiceVersions;
private AudioFocusHelper mAudioFocusHelper;
private int streamType;
protected int streamType;
protected AbstractPrologCommandPlayer(Context ctx, OsmandSettings settings, String voiceProvider, String configFile, int[] sortedVoiceVersions)
throws CommandPlayerException

View file

@ -31,7 +31,6 @@ public class MediaCommandPlayerImpl extends AbstractPrologCommandPlayer implemen
private MediaPlayer mediaPlayer;
// indicates that player is ready to play first file
private List<String> filesToPlay = Collections.synchronizedList(new ArrayList<String>());
private int streamType;
public MediaCommandPlayerImpl(Context ctx, OsmandSettings settings, String voiceProvider)