| OLD | NEW |
| 1 /* | 1 /* |
| 2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> | 2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> |
| 3 * | 3 * |
| 4 * This file is part of FFmpeg. | 4 * This file is part of FFmpeg. |
| 5 * | 5 * |
| 6 * FFmpeg is free software; you can redistribute it and/or | 6 * FFmpeg is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 /** | 95 /** |
| 96 * Frees a memory block which has been allocated with av_malloc(z)() or | 96 * Frees a memory block which has been allocated with av_malloc(z)() or |
| 97 * av_realloc() and set the pointer pointing to it to NULL. | 97 * av_realloc() and set the pointer pointing to it to NULL. |
| 98 * @param ptr Pointer to the pointer to the memory block which should | 98 * @param ptr Pointer to the pointer to the memory block which should |
| 99 * be freed. | 99 * be freed. |
| 100 * @see av_free() | 100 * @see av_free() |
| 101 */ | 101 */ |
| 102 void av_freep(void *ptr); | 102 void av_freep(void *ptr); |
| 103 | 103 |
| 104 #endif /* AVUTIL_MEM_H */ | 104 #endif /* AVUTIL_MEM_H */ |
| OLD | NEW |