Changeset 7d4f8eb4371dd03261f3687756e79bbd2003d0f8
- Timestamp:
- 07/25/02 23:53:53
(6 years ago)
- Author:
- Sigmund Augdal Helberg <sigmunau@videolan.org>
- git-committer:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1027634033 +0000
- git-parent:
[f168630004ea8f401c3cf035035486dc73c0d82b]
- git-author:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1027634033 +0000
- Message:
plugin/access/http.c: cosmetic fixes in an error message
src/input/*: removed some testcode and some unnecessary debug messages
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r368b29b |
r7d4f8eb |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: http.c,v 1.17 2002/07/24 18:31:24 sigmunau Exp $ |
|---|
| | 5 | * $Id: http.c,v 1.18 2002/07/25 21:53:53 sigmunau Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 207 | 207 | else |
|---|
| 208 | 208 | { |
|---|
| 209 | | msg_Err( p_input, "http error: invalid http reply" ); |
|---|
| | 209 | msg_Err( p_input, "invalid http reply" ); |
|---|
| 210 | 210 | return -1; |
|---|
| 211 | 211 | } |
|---|
| … | … | |
| 217 | 217 | return -1; |
|---|
| 218 | 218 | } |
|---|
| | 219 | |
|---|
| 219 | 220 | for( ; ; ) |
|---|
| 220 | 221 | { |
|---|
| r44ed9d3 |
r7d4f8eb |
|
| 5 | 5 | ***************************************************************************** |
|---|
| 6 | 6 | * Copyright (C) 1998-2001 VideoLAN |
|---|
| 7 | | * $Id: input.c,v 1.207 2002/07/24 23:11:55 massiot Exp $ |
|---|
| | 7 | * $Id: input.c,v 1.208 2002/07/25 21:53:53 sigmunau Exp $ |
|---|
| 8 | 8 | * |
|---|
| 9 | 9 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 160 | 160 | p_input->stream.p_info->p_next = NULL; |
|---|
| 161 | 161 | |
|---|
| 162 | | /* test code */ |
|---|
| 163 | | msg_Dbg( p_input, "finding category \"hepp\""); |
|---|
| 164 | | p_info = input_InfoCategory( p_input, "hepp" ); |
|---|
| 165 | | msg_Dbg( p_input, "adding testkey/testval"); |
|---|
| 166 | | input_AddInfo( p_info, "testkey", "testval"); |
|---|
| 167 | | /* end test code */ |
|---|
| 168 | | |
|---|
| 169 | 162 | msg_Info( p_input, "playlist item `%s'", p_input->psz_source ); |
|---|
| 170 | 163 | |
|---|
| r97bf3e7 |
r7d4f8eb |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1998-2001 VideoLAN |
|---|
| 5 | | * $Id: input_info.c,v 1.3 2002/07/23 00:30:22 sam Exp $ |
|---|
| | 5 | * $Id: input_info.c,v 1.4 2002/07/25 21:53:53 sigmunau Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no> |
|---|
| … | … | |
| 42 | 42 | input_info_category_t * p_category, * p_prev; |
|---|
| 43 | 43 | p_prev = NULL; |
|---|
| 44 | | msg_Dbg( p_this, "searching for category"); |
|---|
| 45 | 44 | for ( p_category = p_this->stream.p_info; |
|---|
| 46 | 45 | (p_category != NULL) && strcmp( p_category->psz_name, psz_name ); |
|---|
| … | … | |
| 51 | 50 | if ( p_category ) |
|---|
| 52 | 51 | { |
|---|
| 53 | | msg_Dbg(p_this, "found category at %p, with name %s", p_category |
|---|
| 54 | | ,p_category->psz_name); |
|---|
| 55 | 52 | return p_category; |
|---|
| 56 | 53 | } |
|---|
| 57 | 54 | else |
|---|
| 58 | 55 | { |
|---|
| 59 | | msg_Dbg( p_this, "creating new input category"); |
|---|
| 60 | 56 | p_category = malloc( sizeof( input_info_category_t ) ); |
|---|
| 61 | 57 | if ( !p_category ) |
|---|