예제 #1
0
unsigned int QmlVlcVideo::get_height()
{
    unsigned x = 0, y = 0;
    getVideoSize( &x, &y );

    return y;
}
예제 #2
0
파일: FBVLCAPI.cpp 프로젝트: kingctan/fbvlc
unsigned int FBVLCVideoAPI::get_height()
{
    unsigned x = 0, y = 0;
    getVideoSize( &x, &y );

    return y;
}
예제 #3
0
unsigned int QmlVlcVideo::get_width()
{
    unsigned x = 0, y = 0;
    getVideoSize( &x, &y );

    return x;
}
예제 #4
0
파일: FBVLCAPI.cpp 프로젝트: kingctan/fbvlc
unsigned int FBVLCVideoAPI::get_width()
{
    unsigned x = 0, y = 0;
    getVideoSize( &x, &y );

    return x;
}