Changeset 5c2b06f2707680a1c5d5388e906c6afb953381d8
- Timestamp:
- 11/03/04 00:41:36
(5 years ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1078962096 +0000
- git-parent:
[d88930e73070ac6a2c83c26ca2b92148cd80ebf6]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1078962096 +0000
- Message:
- stream_output.c: delete meta informations after the stream out chain.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r09ba73c |
r5c2b06f |
|
| 162 | 162 | vlc_object_detach( p_sout ); |
|---|
| 163 | 163 | |
|---|
| | 164 | /* remove the stream out chain */ |
|---|
| | 165 | sout_stream_delete( p_sout->p_stream ); |
|---|
| | 166 | |
|---|
| 164 | 167 | /* *** free all string *** */ |
|---|
| 165 | 168 | FREE( p_sout->psz_sout ); |
|---|
| 166 | 169 | FREE( p_sout->psz_chain ); |
|---|
| 167 | 170 | |
|---|
| | 171 | /* delete meta */ |
|---|
| 168 | 172 | if( p_sout->p_meta ) |
|---|
| 169 | 173 | { |
|---|
| … | … | |
| 171 | 175 | } |
|---|
| 172 | 176 | |
|---|
| 173 | | sout_stream_delete( p_sout->p_stream ); |
|---|
| 174 | 177 | vlc_mutex_destroy( &p_sout->lock ); |
|---|
| 175 | 178 | |
|---|