mirror of https://github.com/odrling/Aegisub
Dummy video provider was always creating 640x480 frames, now creates in the right resolution
Originally committed to SVN as r994.
This commit is contained in:
parent
28504a5c9b
commit
f292339808
|
@ -59,7 +59,7 @@ void DummyVideoProvider::Create(double _fps, int frames, int _width, int _height
|
||||||
width = _width;
|
width = _width;
|
||||||
height = _height;
|
height = _height;
|
||||||
|
|
||||||
frame = AegiVideoFrame(640,480,FORMAT_RGB32);
|
frame = AegiVideoFrame(width,height,FORMAT_RGB32);
|
||||||
unsigned char *dst = frame.data[0];
|
unsigned char *dst = frame.data[0];
|
||||||
unsigned char r = colour.Red(), g = colour.Green(), b = colour.Blue();
|
unsigned char r = colour.Red(), g = colour.Green(), b = colour.Blue();
|
||||||
for (int i=frame.pitch[0]*frame.h/frame.GetBpp();--i>=0;) {
|
for (int i=frame.pitch[0]*frame.h/frame.GetBpp();--i>=0;) {
|
||||||
|
|
Loading…
Reference in New Issue