Home | History | Annotate | Download | only in media

Lines Matching defs:pb

416         public IAppOpsCallbackWrapper(PlayerBase pb) {
417 mWeakPB = new WeakReference<PlayerBase>(pb);
424 final PlayerBase pb = mWeakPB.get();
425 if (pb != null) {
426 pb.updateAppOpsPlayAudio();
440 public IPlayerWrapper(PlayerBase pb) {
441 mWeakPB = new WeakReference<PlayerBase>(pb);
446 final PlayerBase pb = mWeakPB.get();
447 if (pb != null) {
448 pb.playerStart();
454 final PlayerBase pb = mWeakPB.get();
455 if (pb != null) {
456 pb.playerPause();
462 final PlayerBase pb = mWeakPB.get();
463 if (pb != null) {
464 pb.playerStop();
470 final PlayerBase pb = mWeakPB.get();
471 if (pb != null) {
472 pb.baseSetVolume(vol, vol);
478 final PlayerBase pb = mWeakPB.get();
479 if (pb != null) {
480 pb.baseSetPan(pan);
486 final PlayerBase pb = mWeakPB.get();
487 if (pb != null) {
488 pb.baseSetStartDelayMs(delayMs);
496 final PlayerBase pb = mWeakPB.get();
497 if (pb != null) {
498 pb.playerApplyVolumeShaper(configuration, operation);