summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-13 14:31:31 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-13 15:24:30 +0200
commitef36ba5e088ea9660bcb03722dc7d5a29b20d352 (patch)
tree544c2d63e8176752bb595e7c0f9fa1643f7f20d4 /libavcodec
parent11afe28b9a5602a9926b5beb8e6266e6a3f7b065 (diff)
avcodec: clarify documentation of avcodec_copy_context()
Following this is not strictly needed but safes some malloc+free Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/avcodec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index e4c97cca5d..070ce7a12d 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -3284,7 +3284,7 @@ const AVClass *avcodec_get_subtitle_rect_class(void);
* can use this AVCodecContext to decode/encode video/audio data.
*
* @param dest target codec context, should be initialized with
- * avcodec_alloc_context3(), but otherwise uninitialized
+ * avcodec_alloc_context3(NULL), but otherwise uninitialized
* @param src source codec context
* @return AVERROR() on error (e.g. memory allocation error), 0 on success
*/