diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-03 03:45:05 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-03 03:46:14 +0100 |
commit | acf22ec69e92a5926d4c1baf1341ed9547018fe1 (patch) | |
tree | 03e88493774fa132ec02cfb5b6dda065361e791f /doc/developer.texi | |
parent | 52b7ed4f6ea72219fb38905ea44b9ef730c20764 (diff) | |
download | ffmpeg-acf22ec69e92a5926d4c1baf1341ed9547018fe1.tar.gz |
developer.texi: Fix naming convention
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/developer.texi')
-rw-r--r-- | doc/developer.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/developer.texi b/doc/developer.texi index 800ca7d045..50b4116999 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -141,8 +141,8 @@ GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}). @subsection Naming conventions All names are using underscores (_), not CamelCase. For example, @samp{avfilter_get_video_buffer} is -a valid function name and @samp{AVFilterGetVideo} is not. The only exception from this are structure names; -they should always be in the CamelCase +a valid function name and @samp{AVFilterGetVideo} is not. The exception from this are type names, like +for example structs and enums; they should always be in the CamelCase There are following conventions for naming variables and functions: @itemize @bullet |