Remove AVPacket from cache (and deallocate its memory)
| 3001 | |
| 3002 | // Remove AVPacket from cache (and deallocate its memory) |
| 3003 | void FFmpegReader::RemoveAVPacket(AVPacket *remove_packet) { |
| 3004 | // deallocate memory for packet |
| 3005 | AV_FREE_PACKET(remove_packet); |
| 3006 | |
| 3007 | // Delete the object |
| 3008 | delete remove_packet; |
| 3009 | } |
| 3010 | |
| 3011 | // Generate JSON string of this object |
| 3012 | std::string FFmpegReader::Json() const { |
nothing calls this directly
no outgoing calls
no test coverage detected