Changeset 1163 for branches/PlayerFramework/CommonMediaPlayer/Media Players/DVD Framework/CMPDVDPlayerController.m
- Timestamp:
- 02/23/10 16:48:16 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/PlayerFramework/CommonMediaPlayer/Media Players/DVD Framework/CMPDVDPlayerController.m
r1151 r1163 83 83 { 84 84 // [layer setOpaque:NO]; 85 NSLog(@"Layer is %@ with %d children", layer, [[layer sublayers] count]);85 //NSLog(@"Layer is %@ with %d children", layer, [[layer sublayers] count]); 86 86 id superlayer = [layer superlayer]; 87 87 // if(count < 6) 88 88 // [layer setOpacity:opacity]; 89 89 [layer setBackgroundColor:clear]; 90 NSLog(@"Set opacity of %d layer", count);90 //NSLog(@"Set opacity of %d layer", count); 91 91 layer = superlayer; 92 92 count++; … … 243 243 return; 244 244 CGSGetWindowBounds(cid, dvdWindow, &bounds); 245 NSLog(@"Bounds is %fx%f - %fx%f", bounds.origin.x, bounds.origin.y, bounds.size.width, bounds.size.height);245 //NSLog(@"Bounds is %fx%f - %fx%f", bounds.origin.x, bounds.origin.y, bounds.size.width, bounds.size.height); 246 246 // CGLGetCurrentContext() 247 247 char *bitmap = malloc(bounds.size.width *bounds.size.height * 4); … … 485 485 - (BOOL)brEventAction:(BREvent *)event 486 486 { 487 NSLog(@"Got event %@", event);487 //NSLog(@"Got event %@", event); 488 488 BREventRemoteAction action = [CMPATVVersion remoteActionForEvent:event]; 489 489 if(![player playing]) … … 495 495 BOOL inMenu = [player inMenu]; 496 496 CMPDVDState state = [player state]; 497 NSLog(@"State is %d and doing %d", state, action);497 //NSLog(@"State is %d and doing %d", state, action); 498 498 BOOL playingInSomeForm = (state == CMPDVDStatePlaying || state == CMPDVDStateScanningForward || state == CMPDVDStateScanningBackward || state == CMPDVDStatePlayingSlowForward || state == CMPDVDStatePlayingSlowBackward); 499 499 BOOL supressStateDisplay = inMenu;
