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
fab97adb
Commit
fab97adb
authored
Dec 08, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: Minor project name cleanup
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a4bf093e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
developer.texi
doc/developer.texi
+3
-3
faq.texi
doc/faq.texi
+1
-1
No files found.
doc/developer.texi
View file @
fab97adb
...
@@ -180,10 +180,10 @@ should also be avoided if they don't make the code easier to understand.
...
@@ -180,10 +180,10 @@ should also be avoided if they don't make the code easier to understand.
@end itemize
@end itemize
@subsection Editor configuration
@subsection Editor configuration
In order to configure Vim to follow
Libav
formatting conventions, paste
In order to configure Vim to follow
FFmpeg
formatting conventions, paste
the following snippet into your @file
{
.vimrc
}
:
the following snippet into your @file
{
.vimrc
}
:
@example
@example
" indentation rules for
libav
: 4 spaces, no tabs
" indentation rules for
FFmpeg
: 4 spaces, no tabs
set expandtab
set expandtab
set shiftwidth=4
set shiftwidth=4
set softtabstop=4
set softtabstop=4
...
@@ -299,7 +299,7 @@ For Emacs, add these roughly equivalent lines to your @file{.emacs.d/init.el}:
...
@@ -299,7 +299,7 @@ For Emacs, add these roughly equivalent lines to your @file{.emacs.d/init.el}:
always check values read from some untrusted source before using them
always check values read from some untrusted source before using them
as array index or other risky things.
as array index or other risky things.
@item
@item
Remember to check if you need to bump versions for the specific libav
Remember to check if you need to bump versions for the specific libav
*
parts (libavutil, libavcodec, libavformat) you are changing. You need
parts (libavutil, libavcodec, libavformat) you are changing. You need
to change the version integer.
to change the version integer.
Incrementing the first component means no backward compatibility to
Incrementing the first component means no backward compatibility to
...
...
doc/faq.texi
View file @
fab97adb
...
@@ -451,7 +451,7 @@ See @url{http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html#faq-32.3}
...
@@ -451,7 +451,7 @@ See @url{http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html#faq-32.3}
@section I'm using libavutil from within my C++ application but the compiler complains about 'UINT64
_
C' was not declared in this scope
@section I'm using libavutil from within my C++ application but the compiler complains about 'UINT64
_
C' was not declared in this scope
Libav
is a pure C project using C99 math features, in order to enable C++
FFmpeg
is a pure C project using C99 math features, in order to enable C++
to use them you have to append -D
__
STDC
_
CONSTANT
_
MACROS to your CXXFLAGS
to use them you have to append -D
__
STDC
_
CONSTANT
_
MACROS to your CXXFLAGS
@section I have a file in memory / a API different from *open/*read/ libc how do I use it with libavformat?
@section I have a file in memory / a API different from *open/*read/ libc how do I use it with libavformat?
...
...
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