Changeset afb9691c93dc4f1d59d15c661ac92f06aa634fe9
- Timestamp:
- 22/04/08 15:50:53
(6 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1208872253 +0200
- git-parent:
[303288a2dda861a56b80b7bf5c38530d8e4a6da1]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1208872213 +0200
- Message:
stream_output: Expanded debug message at sout input creation/destruction.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r449fd28 |
rafb9691 |
|
| 213 | 213 | sout_packetizer_input_t *p_input; |
|---|
| 214 | 214 | |
|---|
| 215 | | msg_Dbg( p_sout, "adding a new input" ); |
|---|
| 216 | | |
|---|
| 217 | 215 | /* *** create a packetizer input *** */ |
|---|
| 218 | 216 | p_input = malloc( sizeof( sout_packetizer_input_t ) ); |
|---|
| … | … | |
| 220 | 218 | p_input->p_fmt = p_fmt; |
|---|
| 221 | 219 | |
|---|
| | 220 | msg_Dbg( p_sout, "adding a new sout input (sout_input:%p)", p_input ); |
|---|
| | 221 | |
|---|
| 222 | 222 | if( p_fmt->i_codec == VLC_FOURCC( 'n', 'u', 'l', 'l' ) ) |
|---|
| 223 | 223 | { |
|---|
| … | … | |
| 247 | 247 | sout_instance_t *p_sout = p_input->p_sout; |
|---|
| 248 | 248 | |
|---|
| 249 | | msg_Dbg( p_sout, "removing an input" ); |
|---|
| | 249 | msg_Dbg( p_sout, "removing a sout input (sout_input:%p)", p_input ); |
|---|
| 250 | 250 | |
|---|
| 251 | 251 | if( p_input->p_fmt->i_codec != VLC_FOURCC( 'n', 'u', 'l', 'l' ) ) |
|---|