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
bee6d2fd
Commit
bee6d2fd
authored
Jul 14, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxygen: replace @sa tag by the more readable but equivalent @see
parent
ad4cd0c2
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
14 additions
and
14 deletions
+14
-14
bethsoftvideo.c
libavcodec/bethsoftvideo.c
+2
-2
bfi.c
libavcodec/bfi.c
+1
-1
cdgraphics.c
libavcodec/cdgraphics.c
+2
-2
pcxenc.c
libavcodec/pcxenc.c
+1
-1
tmv.c
libavcodec/tmv.c
+1
-1
bethsoftvid.c
libavformat/bethsoftvid.c
+2
-2
bfi.c
libavformat/bfi.c
+1
-1
qcp.c
libavformat/qcp.c
+1
-1
soxdec.c
libavformat/soxdec.c
+1
-1
soxenc.c
libavformat/soxenc.c
+1
-1
tmv.c
libavformat/tmv.c
+1
-1
No files found.
libavcodec/bethsoftvideo.c
View file @
bee6d2fd
...
...
@@ -23,8 +23,8 @@
* @file
* @brief Bethesda Softworks VID Video Decoder
* @author Nicholas Tung [ntung (at. ntung com] (2007-03)
* @s
a
http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
* @s
a
http://www.svatopluk.com/andux/docs/dfvid.html
* @s
ee
http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
* @s
ee
http://www.svatopluk.com/andux/docs/dfvid.html
*/
#include "libavutil/common.h"
...
...
libavcodec/bfi.c
View file @
bee6d2fd
...
...
@@ -23,7 +23,7 @@
* @file
* @brief Brute Force & Ignorance (.bfi) video decoder
* @author Sisir Koppaka ( sisir.koppaka at gmail dot com )
* @s
a
http://wiki.multimedia.cx/index.php?title=BFI
* @s
ee
http://wiki.multimedia.cx/index.php?title=BFI
*/
#include "libavutil/common.h"
...
...
libavcodec/cdgraphics.c
View file @
bee6d2fd
...
...
@@ -26,8 +26,8 @@
* @file
* @brief CD Graphics Video Decoder
* @author Michael Tison
* @s
a
http://wiki.multimedia.cx/index.php?title=CD_Graphics
* @s
a
http://www.ccs.neu.edu/home/bchafy/cdb/info/cdg
* @s
ee
http://wiki.multimedia.cx/index.php?title=CD_Graphics
* @s
ee
http://www.ccs.neu.edu/home/bchafy/cdb/info/cdg
*/
/// default screen sizes
...
...
libavcodec/pcxenc.c
View file @
bee6d2fd
...
...
@@ -23,7 +23,7 @@
* @file
* PCX image encoder
* @author Daniel Verkamp
* @s
a
http://www.qzx.com/pc-gpe/pcx.txt
* @s
ee
http://www.qzx.com/pc-gpe/pcx.txt
*/
#include "avcodec.h"
...
...
libavcodec/tmv.c
View file @
bee6d2fd
...
...
@@ -23,7 +23,7 @@
* @file
* 8088flex TMV video decoder
* @author Daniel Verkamp
* @s
a
http://www.oldskool.org/pc/8088_Corruption
* @s
ee
http://www.oldskool.org/pc/8088_Corruption
*/
#include "avcodec.h"
...
...
libavformat/bethsoftvid.c
View file @
bee6d2fd
...
...
@@ -23,8 +23,8 @@
* @file
* @brief Bethesda Softworks VID (.vid) file demuxer
* @author Nicholas Tung [ntung (at. ntung com] (2007-03)
* @s
a
http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
* @s
a
http://www.svatopluk.com/andux/docs/dfvid.html
* @s
ee
http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
* @s
ee
http://www.svatopluk.com/andux/docs/dfvid.html
*/
#include "libavutil/intreadwrite.h"
...
...
libavformat/bfi.c
View file @
bee6d2fd
...
...
@@ -23,7 +23,7 @@
* @file
* @brief Brute Force & Ignorance (.bfi) file demuxer
* @author Sisir Koppaka ( sisir.koppaka at gmail dot com )
* @s
a
http://wiki.multimedia.cx/index.php?title=BFI
* @s
ee
http://wiki.multimedia.cx/index.php?title=BFI
*/
#include "libavutil/intreadwrite.h"
...
...
libavformat/qcp.c
View file @
bee6d2fd
...
...
@@ -23,7 +23,7 @@
* @file
* QCP format (.qcp) demuxer
* @author Kenan Gillet
* @s
a
RFC 3625: "The QCP File Format and Media Types for Speech Data"
* @s
ee
RFC 3625: "The QCP File Format and Media Types for Speech Data"
* http://tools.ietf.org/html/rfc3625
*/
...
...
libavformat/soxdec.c
View file @
bee6d2fd
...
...
@@ -26,7 +26,7 @@
* @file
* SoX native format demuxer
* @author Daniel Verkamp
* @s
a
http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format
* @s
ee
http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format
*/
#include "libavutil/intreadwrite.h"
...
...
libavformat/soxenc.c
View file @
bee6d2fd
...
...
@@ -26,7 +26,7 @@
* @file
* SoX native format muxer
* @author Daniel Verkamp
* @s
a
http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format
* @s
ee
http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format
*/
#include "libavutil/intreadwrite.h"
...
...
libavformat/tmv.c
View file @
bee6d2fd
...
...
@@ -23,7 +23,7 @@
* @file
* 8088flex TMV file demuxer
* @author Daniel Verkamp
* @s
a
http://www.oldskool.org/pc/8088_Corruption
* @s
ee
http://www.oldskool.org/pc/8088_Corruption
*/
#include "libavutil/intreadwrite.h"
...
...
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