diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-01-31 14:06:03 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-01-31 14:06:03 +0000 |
commit | 8695f5d8c99952a89f59b314c58a5e0bbd8a6e6e (patch) | |
tree | 47af2fb780645208a11b0e3bcea97e709c050330 /src/input/input_rtsp.c | |
parent | 112c134d4636786c1b0e22839bd782d9554b961e (diff) | |
download | xine-lib-8695f5d8c99952a89f59b314c58a5e0bbd8a6e6e.tar.gz xine-lib-8695f5d8c99952a89f59b314c58a5e0bbd8a6e6e.tar.bz2 |
- MAX_PREVIEW_SIZE = 4096
- new fb driver with zero copy
CVS patchset: 4058
CVS date: 2003/01/31 14:06:03
Diffstat (limited to 'src/input/input_rtsp.c')
-rw-r--r-- | src/input/input_rtsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_rtsp.c b/src/input/input_rtsp.c index cf5ecab57..dff1aa851 100644 --- a/src/input/input_rtsp.c +++ b/src/input/input_rtsp.c @@ -205,7 +205,7 @@ static int rtsp_plugin_get_optional_data (input_plugin_t *this_gen, switch (data_type) { case INPUT_OPTIONAL_DATA_PREVIEW: - return rtsp_session_peek_header(this->rtsp, data); + return rtsp_session_peek_header(this->rtsp, data, MAX_PREVIEW_SIZE); break; } |