Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
114afa9c
Commit
114afa9c
authored
Dec 23, 2004
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Syntax errors fixed.
Originally committed as revision 3773 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0d6d0cf9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
ffmpeg-doc.texi
doc/ffmpeg-doc.texi
+9
-9
No files found.
doc/ffmpeg-doc.texi
View file @
114afa9c
...
...
@@ -981,7 +981,7 @@ the @samp{inline} keyword;
@item
designated struct initializers (@samp
{
struct s x = @
{
.i = 17 @
}
;
}
)
@item
compound literals (@samp
{
x = (struct s)
{
17, 23 @
}
;
}
)
compound literals (@samp
{
x = (struct s)
@
{
17, 23 @
}
;
}
)
@end itemize
These features are supported by all compilers we care about, so we won't
...
...
@@ -1017,9 +1017,9 @@ above it explaining what the function does, even if its just one sentance.
All Structures and their member variables should be documented too.
@example
/**
* @file mpeg.c
* @
@
file mpeg.c
* mpeg codec.
* @author ...
* @
@
author ...
*/
/**
...
...
@@ -1027,19 +1027,19 @@ All Structures and their member variables should be documented too.
* more text ...
* ...
*/
typedef struct Foobar
{
typedef struct Foobar
@
{
int var1; /**< var1 description */
int var2; ///< var2 description
/** var3 description */
int var3;
}
Foobar;
@
}
Foobar;
/**
* Summary sentance.
* more text ...
* ...
* @param my
_
parameter description of my
_
parameter
* @return return value description
* @
@
param my
_
parameter description of my
_
parameter
* @
@
return return value description
*/
int myfunc(int my
_
parameter)
...
...
...
@@ -1091,7 +1091,7 @@ please use av_log() instead.
indentation changes (try to avoid this), separate them strictly from real
changes.
NOTE: If you had to put if()
{
..
}
over a large (> 5 lines) chunk of code,
NOTE: If you had to put if()
@
{
.. @
}
over a large (> 5 lines) chunk of code,
then either do NOT change the indentation of the inner part within (don't
move it to the right)! or do so in a seperate commit
@item
...
...
@@ -1124,7 +1124,7 @@ please use av_log() instead.
Never revert changes made a long time ago or buggy code. Fix it in the
normal way instead.
@end
itemiz
e
@end
enumerat
e
We think our rules are not too hard. If you have comments, contact us.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment