[Redbutton-devel] SF.net SVN: redbutton: [61] redbutton-browser/trunk/VideoClass.c
Brought to you by:
skilvington
|
From: <ski...@us...> - 2006-05-15 16:12:09
|
Revision: 61 Author: skilvington Date: 2006-05-15 09:12:00 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/redbutton/?rev=61&view=rev Log Message: ----------- get ScaleVideo size Modified Paths: -------------- redbutton-browser/trunk/VideoClass.c Modified: redbutton-browser/trunk/VideoClass.c =================================================================== --- redbutton-browser/trunk/VideoClass.c 2006-05-15 13:07:39 UTC (rev 60) +++ redbutton-browser/trunk/VideoClass.c 2006-05-15 16:12:00 UTC (rev 61) @@ -346,10 +346,16 @@ void VideoClass_ScaleVideo(VideoClass *t, ScaleVideo *params, OctetString *caller_gid) { + int x_scale; + int y_scale; + verbose("VideoClass: %s; ScaleVideo", ExternalReference_name(&t->rootClass.inst.ref)); + x_scale = GenericInteger_getInteger(¶ms->x_scale, caller_gid); + y_scale = GenericInteger_getInteger(¶ms->y_scale, caller_gid); + /* TODO */ -printf("TODO: VideoClass_ScaleVideo not yet implemented\n"); +printf("TODO: VideoClass_ScaleVideo(%d, %d) not yet implemented\n", x_scale, y_scale); return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |