Home
last modified time | relevance | path

Searched refs:VLC_H2_MAX_FRAME (Results 1 – 3 of 3) sorted by relevance

/dports/multimedia/vlc/vlc-3.0.16/modules/access/http/
H A Dh2frame.c258 + (VLC_H2_MAX_FRAME != VLC_H2_DEFAULT_MAX_FRAME) in vlc_h2_frame_settings()
295 #if (VLC_H2_MAX_FRAME != VLC_H2_DEFAULT_MAX_FRAME) in vlc_h2_frame_settings()
296 # if (VLC_H2_MAX_FRAME < 16384 || VLC_H2_MAX_FRAME > 16777215) in vlc_h2_frame_settings()
300 SetDWBE(p + 2, VLC_H2_MAX_FRAME); in vlc_h2_frame_settings()
587 if (len > VLC_H2_MAX_FRAME) in vlc_h2_parse_frame_data()
641 if (len > VLC_H2_MAX_FRAME) in vlc_h2_parse_frame_headers()
737 if (len % 6 || len > VLC_H2_MAX_FRAME) in vlc_h2_parse_frame_settings()
773 if (len > VLC_H2_MAX_FRAME) in vlc_h2_parse_frame_push_promise()
839 if (len < 8 || len > VLC_H2_MAX_FRAME) in vlc_h2_parse_frame_goaway()
884 if (len > VLC_H2_MAX_FRAME) in vlc_h2_parse_frame_continuation()
[all …]
H A Dh2frame.h91 #define VLC_H2_MAX_FRAME 1048576 /* Frame size */ macro
H A Dh2frame_test.c75 assert(value == VLC_H2_MAX_FRAME); in vlc_h2_setting()