[FFmpeg-cvslog] r19296 - trunk/libavcodec/avcodec.h
rbultje
subversion
Mon Jun 29 21:17:03 CEST 2009
Author: rbultje
Date: Mon Jun 29 21:17:03 2009
New Revision: 19296
Log:
Add doxy to av_log_missing_feature() etc. stating that the function is
primarily intended for internal use in lavc/lavf, not for use in apps.
Modified:
trunk/libavcodec/avcodec.h
Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h Mon Jun 29 21:11:53 2009 (r19295)
+++ trunk/libavcodec/avcodec.h Mon Jun 29 21:17:03 2009 (r19296)
@@ -3717,7 +3717,9 @@ int av_parse_video_frame_rate(AVRational
#define AVERROR_PATCHWELCOME -MKTAG('P','A','W','E') /**< Not yet implemented in FFmpeg. Patches welcome. */
/**
- * Logs a generic warning message about a missing feature.
+ * Logs a generic warning message about a missing feature. This function is
+ * intended to be used internally by FFmpeg (libavcodec, libavformat, etc.)
+ * only, and would normally not be used by applications.
* @param[in] avc a pointer to an arbitrary struct of which the first field is
* a pointer to an AVClass struct
* @param[in] feature string containing the name of the missing feature
@@ -3729,7 +3731,9 @@ int av_parse_video_frame_rate(AVRational
void av_log_missing_feature(void *avc, const char *feature, int want_sample);
/**
- * Logs a generic warning message asking for a sample.
+ * Logs a generic warning message asking for a sample. This function is
+ * intended to be used internally by FFmpeg (libavcodec, libavformat, etc.)
+ * only, and would normally not be used by applications.
* @param[in] avc a pointer to an arbitrary struct of which the first field is
* a pointer to an AVClass struct
* @param[in] msg string containing an optional message, or NULL if no message
More information about the ffmpeg-cvslog
mailing list