By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 899
Collapse All | Expand All

(-)a/kaffeine/src/player-parts/gstreamer-part/video.cpp (-2 / +2 lines)
Lines 232-238 Link Here
232
		case FOURBYTHREE: factor = 4.0 / 3.0; break;
232
		case FOURBYTHREE: factor = 4.0 / 3.0; break;
233
		case ANAMORPHIC: factor = 16.0 / 9.0; break;
233
		case ANAMORPHIC: factor = 16.0 / 9.0; break;
234
		case DVB:	factor = 2.11; break;
234
		case DVB:	factor = 2.11; break;
235
		case STQUARE: factor = 1.0; break;
235
		case SQUARE: factor = 1.0; break;
236
	}
236
	}
237
237
238
	float frameAspect = (float)frame.width() / (float)frame.height();
238
	float frameAspect = (float)frame.width() / (float)frame.height();
Lines 291-297 Link Here
291
291
292
void VideoWindow::slotAspectRatioSquare()
292
void VideoWindow::slotAspectRatioSquare()
293
{
293
{
294
	m_aspectRatio = STQUARE;
294
	m_aspectRatio = SQUARE;
295
	TQSize frame = getFrameSize();
295
	TQSize frame = getFrameSize();
296
	correctByAspectRatio( frame );
296
	correctByAspectRatio( frame );
297
	emit signalNewFrameSize( frame );
297
	emit signalNewFrameSize( frame );
(-)a/kaffeine/src/player-parts/gstreamer-part/video.h (-1 / +1 lines)
Lines 47-53 Link Here
47
		FOURBYTHREE,
47
		FOURBYTHREE,
48
		ANAMORPHIC,
48
		ANAMORPHIC,
49
		DVB,
49
		DVB,
50
		STQUARE
50
		SQUARE
51
	};
51
	};
52
52
53
	void newState();
53
	void newState();
(-)a/kaffeine/src/player-parts/xine-part/deinterlacequality.h (-3 / +3 lines)
Lines 18-25 Link Here
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19
 */
19
 */
20
20
21
#ifndef DEINTERLACETQUALITY_H
21
#ifndef DEINTERLACEQUALITY_H
22
#define DEINTERLACETQUALITY_H
22
#define DEINTERLACEQUALITY_H
23
23
24
#include <kdialogbase.h>
24
#include <kdialogbase.h>
25
25
Lines 77-80 Link Here
77
  KPushButton* m_customConfigButton;
77
  KPushButton* m_customConfigButton;
78
};
78
};
79
79
80
#endif /* DEINTERLACETQUALITY_H */
80
#endif /* DEINTERLACEQUALITY_H */
(-)a/kaffeine/src/player-parts/xine-part/equalizer.h (-3 / +3 lines)
Lines 18-25 Link Here
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19
 */
19
 */
20
20
21
#ifndef ETQUALIZER_H
21
#ifndef EQUALIZER_H
22
#define ETQUALIZER_H
22
#define EQUALIZER_H
23
23
24
#include <kdialogbase.h>
24
#include <kdialogbase.h>
25
#include <kconfig.h>
25
#include <kconfig.h>
Lines 77-80 Link Here
77
  TQSlider* eq16kSlider;
77
  TQSlider* eq16kSlider;
78
};
78
};
79
79
80
#endif /* ETQUALIZER_H */
80
#endif /* EQUALIZER_H */
(-)a/kaffeine/src/player-parts/xine-part/kxinewidget.cpp (-1 / +1 lines)
Lines 3881-3887 Link Here
3881
	      break;
3881
	      break;
3882
	    default:
3882
	    default:
3883
	      warningOut(TQString("Screenshot: Unknown aspect ratio: %1 - using 4:3").arg(ratio));
3883
	      warningOut(TQString("Screenshot: Unknown aspect ratio: %1 - using 4:3").arg(ratio));
3884
	    case XINE_VO_ASPECT_STQUARE:
3884
	    case XINE_VO_ASPECT_SQUARE:
3885
	      debugOut("Screenshot: got video aspect: 1:1");
3885
	      debugOut("Screenshot: got video aspect: 1:1");
3886
	      desired_ratio = image_ratio;
3886
	      desired_ratio = image_ratio;
3887
	      break;
3887
	      break;

Return to bug 899