IBM Books

Image, Audio, and Video Extenders Administration and Programming

FrameRate


Image Audio Video
    X

Returns the throughput of a video in frames per second.

Include file

dmbvideo.h

Syntax

>>-FrameRate--(--handle--)-------------------------------------><
 

Parameters (data type)

handle (DB2VIDEO)
Column name or host variable that contains the handle of the video.

Return values (data type)

Frame rate of video (SMALLINT). Returns a null value if the throughput rate is variable.

Examples

Get the frame rate of the video that is stored in the video column of the employee table for Anita Jones:

EXEC SQL BEGIN DECLARE SECTION;
short hvFm_rate;
EXEC SQL END DECLARE SECTION;
 
EXEC SQL SELECT FRAMERATE (VIDEO)
     FROM EMPLOYEE
      INTO :hvFm_rate
     WHERE NAME='Anita Jones';


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]