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
faa6f1c3
Commit
faa6f1c3
authored
Mar 16, 2011
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get rid of the last svn mentions
parent
fda299f0
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
17 deletions
+9
-17
Doxyfile
Doxyfile
+1
-1
Makefile
Makefile
+1
-2
developer.texi
doc/developer.texi
+1
-1
faq.texi
doc/faq.texi
+2
-2
general.texi
doc/general.texi
+1
-1
postprocess.c
libpostproc/postprocess.c
+1
-1
fate.sh
tests/fate.sh
+0
-2
version.sh
version.sh
+2
-7
No files found.
Doxyfile
View file @
faa6f1c3
...
...
@@ -577,7 +577,7 @@ EXCLUDE_SYMLINKS = NO
# against the file with absolute path, so to exclude all test directories
# for example use the pattern */test/*
EXCLUDE_PATTERNS = *.
svn *.
git *.d
EXCLUDE_PATTERNS = *.git *.d
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
...
...
Makefile
View file @
faa6f1c3
...
...
@@ -98,9 +98,8 @@ ffplay.o: CFLAGS += $(SDL_CFLAGS)
VERSION_SH
=
$(SRC_PATH_BARE)
/version.sh
GIT_LOG
=
$(SRC_PATH_BARE)
/.git/logs/HEAD
SVN_ENTRIES
=
$(SRC_PATH_BARE)
/.svn/entries
.version
:
$(wildcard $(GIT_LOG)
$(SVN_ENTRIES)
) $(VERSION_SH) config.mak
.version
:
$(wildcard $(GIT_LOG)) $(VERSION_SH) config.mak
.version
:
M=@
version.h .version
:
...
...
doc/developer.texi
View file @
faa6f1c3
...
...
@@ -74,7 +74,7 @@ Indent size is 4.
The presentation is one inspired by 'indent -i4 -kr -nut'.
The TAB character is forbidden outside of Makefiles as is any
form of trailing whitespace. Commits containing either will be
rejected by the
Subversion
repository.
rejected by the
git
repository.
The main priority in Libav is simplicity and small code size in order to
minimize the bug count.
...
...
doc/faq.texi
View file @
faa6f1c3
...
...
@@ -23,7 +23,7 @@ help out creating them.
@section I have a problem with an old version of Libav; where should I report it?
Nowhere. We do not support old Libav versions in any way, we simply lack
the time, motivation and manpower to do so. If you have a problem with an
old version of Libav, upgrade to the latest
Subversion
snapshot. If you
old version of Libav, upgrade to the latest
git
snapshot. If you
still experience the problem, then you can report it according to the
guidelines in @url
{
http://libav.org/bugreports.html
}
.
...
...
@@ -47,7 +47,7 @@ Likely reasons
@item We are busy and haven't had time yet to read your report or
investigate the issue.
@item You didn't follow @url
{
http://libav.org/bugreports.html
}
.
@item You didn't use
Subversion HEAD
.
@item You didn't use
git master
.
@item You reported a segmentation fault without gdb output.
@item You describe a problem but not how to reproduce it.
@item It's unclear if you use ffmpeg as command line tool or use
...
...
doc/general.texi
View file @
faa6f1c3
...
...
@@ -1032,7 +1032,7 @@ llrint() in its C library.
Install your Cygwin with all the "Base" packages, plus the
following "Devel" ones:
@example
binutils, gcc
4
-
core, make,
subversion
, mingw
-
runtime, texi
2
html
binutils, gcc
4
-
core, make,
git
, mingw
-
runtime, texi
2
html
@end example
And the following "Utils" one:
...
...
libpostproc/postprocess.c
View file @
faa6f1c3
...
...
@@ -71,7 +71,7 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks
...
*/
//Changelog: use
the Subversion
log
//Changelog: use
git
log
#include "config.h"
#include "libavutil/avutil.h"
...
...
tests/fate.sh
View file @
faa6f1c3
...
...
@@ -29,7 +29,6 @@ checkout(){
case
"
$repo
"
in
file:
*
|
/
*
)
src
=
"
${
repo
#file
:
}
"
;;
git:
*
)
git clone
"
$repo
"
"
$src
"
;;
svn:
*
)
svn co
"
$repo
"
"
$src
"
;;
esac
}
...
...
@@ -37,7 +36,6 @@ update()(
cd
${
src
}
||
return
case
"
$repo
"
in
git:
*
)
git pull
;;
svn:
*
)
svn up
;;
esac
)
...
...
version.sh
View file @
faa6f1c3
#!/bin/sh
revision
=
$(
cd
"
$1
"
&&
cat
snapshot_version 2> /dev/null
)
test
"
$revision
"
&&
revision
=
SVN-r
$revision
# check for git short hash
if
!
test
"
$revision
"
;
then
revision
=
$(
cd
"
$1
"
&&
git describe
--always
2> /dev/null
)
test
"
$revision
"
&&
revision
=
git-
$revision
fi
revision
=
$(
cd
"
$1
"
&&
git describe
--always
2> /dev/null
)
test
"
$revision
"
&&
revision
=
git-
$revision
# no revision number found
test
"
$revision
"
||
revision
=
UNKNOWN
...
...
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