Image | Audio | Video |
---|---|---|
X |
Returns the maximum throughput of a video in bytes per second.
Include file
dmbvideo.h
Syntax
>>-MaxBytesPerSec--(--handle--)--------------------------------><
Parameters (data type)
Return values (data type)
Throughput of video (INTEGER). Returns a null value if the throughput rate is variable.
Examples
Get the maximum throughput of the video that is stored in the video column of the employee table for Anita Jones:
EXEC SQL BEGIN DECLARE SECTION; long hvMax_BytesPS; EXEC SQL END DECLARE SECTION; EXEC SQL SELECT MAXBYTESPERSEC(VIDEO) INTO :hvMax_BytesPS FROM EMPLOYEE WHERE NAME='Anita Jones';