From: Jun Zhao <[email protected]> Now the probe logic is: Only read_probe is NULL and extensions are defined, then no probe is done. Correct the comment to follow the coding logic.
Signed-off-by: Jun Zhao <[email protected]> --- libavformat/avformat.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 734ae54..bbfa61d 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -659,8 +659,8 @@ typedef struct AVInputFormat { int flags; /** - * If extensions are defined, then no probe is done. You should - * usually not use extension format guessing because it is not + * If read_probe is NULL and extensions are defined, then no probe is done. + * You should usually not use extension format guessing because it is not * reliable enough */ const char *extensions; -- 1.7.1 _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
