* NAME: stream->finish() * DESCRIPTION: deallocate any dynamic memory associated with stream */
| 63 | * DESCRIPTION: deallocate any dynamic memory associated with stream |
| 64 | */ |
| 65 | void mad_stream_finish(struct mad_stream *stream) |
| 66 | { |
| 67 | stack(__FUNCTION__, __FILE__, __LINE__); |
| 68 | (void) stream; |
| 69 | |
| 70 | mad_bit_finish(&stream->anc_ptr); |
| 71 | mad_bit_finish(&stream->ptr); |
| 72 | } |
| 73 | |
| 74 | /* |
| 75 | * NAME: stream->buffer() |
no outgoing calls
no test coverage detected