Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
f6f95d4e
Commit
f6f95d4e
authored
Jul 14, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxygen: consistently place brief description
parent
ec679eb4
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
15 additions
and
12 deletions
+15
-12
faxcompr.c
libavcodec/faxcompr.c
+1
-1
faxcompr.h
libavcodec/faxcompr.h
+1
-1
lzwenc.c
libavcodec/lzwenc.c
+1
-1
pcxenc.c
libavcodec/pcxenc.c
+1
-1
rl2.c
libavcodec/rl2.c
+1
-1
tiff.c
libavcodec/tiff.c
+2
-1
tiff.h
libavcodec/tiff.h
+2
-1
tiffenc.c
libavcodec/tiffenc.c
+2
-1
tmv.c
libavcodec/tmv.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/faxcompr.c
View file @
f6f95d4e
...
@@ -20,8 +20,8 @@
...
@@ -20,8 +20,8 @@
*/
*/
/**
/**
* CCITT Fax Group 3 and 4 decompression
* @file
* @file
* CCITT Fax Group 3 and 4 decompression
* @author Konstantin Shishkov
* @author Konstantin Shishkov
*/
*/
#include "avcodec.h"
#include "avcodec.h"
...
...
libavcodec/faxcompr.h
View file @
f6f95d4e
...
@@ -20,8 +20,8 @@
...
@@ -20,8 +20,8 @@
*/
*/
/**
/**
* CCITT Fax Group 3 and 4 decompression
* @file
* @file
* CCITT Fax Group 3 and 4 decompression
* @author Konstantin Shishkov
* @author Konstantin Shishkov
*/
*/
#ifndef AVCODEC_FAXCOMPR_H
#ifndef AVCODEC_FAXCOMPR_H
...
...
libavcodec/lzwenc.c
View file @
f6f95d4e
...
@@ -20,8 +20,8 @@
...
@@ -20,8 +20,8 @@
*/
*/
/**
/**
* LZW encoder
* @file
* @file
* LZW encoder
* @author Bartlomiej Wolowiec
* @author Bartlomiej Wolowiec
*/
*/
...
...
libavcodec/pcxenc.c
View file @
f6f95d4e
...
@@ -20,8 +20,8 @@
...
@@ -20,8 +20,8 @@
*/
*/
/**
/**
* PCX image encoder
* @file
* @file
* PCX image encoder
* @author Daniel Verkamp
* @author Daniel Verkamp
* @sa http://www.qzx.com/pc-gpe/pcx.txt
* @sa http://www.qzx.com/pc-gpe/pcx.txt
*/
*/
...
...
libavcodec/rl2.c
View file @
f6f95d4e
...
@@ -20,8 +20,8 @@
...
@@ -20,8 +20,8 @@
*/
*/
/**
/**
* RL2 Video Decoder
* @file
* @file
* RL2 Video Decoder
* @author Sascha Sommer (saschasommer@freenet.de)
* @author Sascha Sommer (saschasommer@freenet.de)
*
*
* For more information about the RL2 format, visit:
* For more information about the RL2 format, visit:
...
...
libavcodec/tiff.c
View file @
f6f95d4e
...
@@ -20,10 +20,11 @@
...
@@ -20,10 +20,11 @@
*/
*/
/**
/**
* TIFF image decoder
* @file
* @file
* TIFF image decoder
* @author Konstantin Shishkov
* @author Konstantin Shishkov
*/
*/
#include "avcodec.h"
#include "avcodec.h"
#if CONFIG_ZLIB
#if CONFIG_ZLIB
#include <zlib.h>
#include <zlib.h>
...
...
libavcodec/tiff.h
View file @
f6f95d4e
...
@@ -20,10 +20,11 @@
...
@@ -20,10 +20,11 @@
*/
*/
/**
/**
* TIFF tables
* @file
* @file
* TIFF tables
* @author Konstantin Shishkov
* @author Konstantin Shishkov
*/
*/
#ifndef AVCODEC_TIFF_H
#ifndef AVCODEC_TIFF_H
#define AVCODEC_TIFF_H
#define AVCODEC_TIFF_H
...
...
libavcodec/tiffenc.c
View file @
f6f95d4e
...
@@ -20,10 +20,11 @@
...
@@ -20,10 +20,11 @@
*/
*/
/**
/**
* TIFF image encoder
* @file
* @file
* TIFF image encoder
* @author Bartlomiej Wolowiec
* @author Bartlomiej Wolowiec
*/
*/
#include "avcodec.h"
#include "avcodec.h"
#if CONFIG_ZLIB
#if CONFIG_ZLIB
#include <zlib.h>
#include <zlib.h>
...
...
libavcodec/tmv.c
View file @
f6f95d4e
...
@@ -20,8 +20,8 @@
...
@@ -20,8 +20,8 @@
*/
*/
/**
/**
* 8088flex TMV video decoder
* @file
* @file
* 8088flex TMV video decoder
* @author Daniel Verkamp
* @author Daniel Verkamp
* @sa http://www.oldskool.org/pc/8088_Corruption
* @sa http://www.oldskool.org/pc/8088_Corruption
*/
*/
...
...
libavformat/soxdec.c
View file @
f6f95d4e
...
@@ -23,8 +23,8 @@
...
@@ -23,8 +23,8 @@
*/
*/
/**
/**
* SoX native format demuxer
* @file
* @file
* SoX native format demuxer
* @author Daniel Verkamp
* @author Daniel Verkamp
* @sa http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format
* @sa http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format
*/
*/
...
...
libavformat/soxenc.c
View file @
f6f95d4e
...
@@ -23,8 +23,8 @@
...
@@ -23,8 +23,8 @@
*/
*/
/**
/**
* SoX native format muxer
* @file
* @file
* SoX native format muxer
* @author Daniel Verkamp
* @author Daniel Verkamp
* @sa http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format
* @sa http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format
*/
*/
...
...
libavformat/tmv.c
View file @
f6f95d4e
...
@@ -20,8 +20,8 @@
...
@@ -20,8 +20,8 @@
*/
*/
/**
/**
* 8088flex TMV file demuxer
* @file
* @file
* 8088flex TMV file demuxer
* @author Daniel Verkamp
* @author Daniel Verkamp
* @sa http://www.oldskool.org/pc/8088_Corruption
* @sa http://www.oldskool.org/pc/8088_Corruption
*/
*/
...
...
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