summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/xinevideowidget.h
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2/xinevideowidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/xinevideowidget.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/noncore/multimedia/opieplayer2/xinevideowidget.h b/noncore/multimedia/opieplayer2/xinevideowidget.h
index 5656194..7d9a6d2 100644
--- a/noncore/multimedia/opieplayer2/xinevideowidget.h
+++ b/noncore/multimedia/opieplayer2/xinevideowidget.h
@@ -45,23 +45,20 @@ public:
45 void setImage( QImage* image ); 45 void setImage( QImage* image );
46 void setImage( uchar* image, int yoffsetXLine, int xoffsetXBytes, 46 void setImage( uchar* image, int yoffsetXLine, int xoffsetXBytes,
47 int width, int height, int linestep, int bytes, int bpp); 47 int width, int height, int linestep, int bytes, int bpp);
48 int width() const; 48 int width() const;
49 int height() const; 49 int height() const;
50 void clear() ; 50 void clear() ;
51protected: 51protected:
52 void paintEvent( QPaintEvent* p ); 52 void paintEvent( QPaintEvent* p );
53private: 53private:
54 QRect m_lastframe; 54 QRect m_lastframe;
55 QRect m_thisframe; 55 QRect m_thisframe;
56 56
57 int m_wid;
58 int m_height;
59 int m_yOff, m_xOff;
60 uchar* m_buff; 57 uchar* m_buff;
61 int m_Width, m_Height, linestep; 58 int m_bytes_per_line_fb;
62 int m_bytes; 59 int m_bytes_per_line_frame;
63 int m_bytes_per_pixel; 60 int m_bytes_per_pixel;
64 QImage* m_image; 61 QImage* m_image;
65 62
66}; 63};
67 64