Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
0281ef90
Commit
0281ef90
authored
9 years ago
by
Ganesh Ajjanagadde
Committed by
Stefano Sabatini
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
doc/developer: minor typo and consistency fixes
Signed-off-by:
Ganesh Ajjanagadde
<
gajjanagadde@gmail.com
>
parent
8881b035
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/developer.texi
+3
-3
3 additions, 3 deletions
doc/developer.texi
with
3 additions
and
3 deletions
doc/developer.texi
+
3
−
3
View file @
0281ef90
...
@@ -124,10 +124,10 @@ the @samp{inline} keyword;
...
@@ -124,10 +124,10 @@ the @samp{inline} keyword;
@samp
{
//
}
comments;
@samp
{
//
}
comments;
@item
@item
designated struct initializers (@samp
{
struct s x = @
{
.i = 17 @
}
;
}
)
designated struct initializers (@samp
{
struct s x = @
{
.i = 17 @
}
;
}
)
;
@item
@item
compound literals (@samp
{
x = (struct s) @
{
17, 23 @
}
;
}
)
compound literals (@samp
{
x = (struct s) @
{
17, 23 @
}
;
}
)
.
@end itemize
@end itemize
These features are supported by all compilers we care about, so we will not
These features are supported by all compilers we care about, so we will not
...
@@ -156,7 +156,7 @@ GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
...
@@ -156,7 +156,7 @@ GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
All names should be composed with underscores (
_
), not CamelCase. For example,
All names should be composed with underscores (
_
), not CamelCase. For example,
@samp
{
avfilter
_
get
_
video
_
buffer
}
is an acceptable function name and
@samp
{
avfilter
_
get
_
video
_
buffer
}
is an acceptable function name and
@samp
{
AVFilterGetVideo
}
is not. The exception from this are type names, like
@samp
{
AVFilterGetVideo
}
is not. The exception from this are type names, like
for example structs and enums; they should always be in
the
CamelCase
for example structs and enums; they should always be in CamelCase
.
There are the following conventions for naming variables and functions:
There are the following conventions for naming variables and functions:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment