Commit ad4cd0c2 authored by Diego Biurrun's avatar Diego Biurrun

doxygen: use Doxygen markup for authors and web links where appropriate

parent 6168781f
...@@ -23,9 +23,7 @@ ...@@ -23,9 +23,7 @@
* @file * @file
* ALAC (Apple Lossless Audio Codec) decoder * ALAC (Apple Lossless Audio Codec) decoder
* @author 2005 David Hammerton * @author 2005 David Hammerton
* * @see http://crazney.net/programs/itunes/alac.html
* For more information on the ALAC format, visit:
* http://crazney.net/programs/itunes/alac.html
* *
* Note: This decoder expects a 36- (0x24-)byte QuickTime atom to be * Note: This decoder expects a 36- (0x24-)byte QuickTime atom to be
* passed through the extradata[_size] fields. This atom is tacked onto * passed through the extradata[_size] fields. This atom is tacked onto
......
...@@ -22,10 +22,8 @@ ...@@ -22,10 +22,8 @@
/** /**
* @file * @file
* Electronic Arts TQI Video Decoder * Electronic Arts TQI Video Decoder
* by Peter Ross <pross@xvid.org> * @author Peter Ross <pross@xvid.org>
* * @see http://wiki.multimedia.cx/index.php?title=Electronic_Arts_TQI
* Technical details here:
* http://wiki.multimedia.cx/index.php?title=Electronic_Arts_TQI
*/ */
#include "avcodec.h" #include "avcodec.h"
......
...@@ -23,9 +23,7 @@ ...@@ -23,9 +23,7 @@
* @file * @file
* FLAC (Free Lossless Audio Codec) decoder * FLAC (Free Lossless Audio Codec) decoder
* @author Alex Beregszaszi * @author Alex Beregszaszi
* * @see http://flac.sourceforge.net/
* For more information on the FLAC format, visit:
* http://flac.sourceforge.net/
* *
* This decoder can be used in 1 of 2 ways: Either raw FLAC data can be fed * This decoder can be used in 1 of 2 ways: Either raw FLAC data can be fed
* through, starting from the initial 'fLaC' signature; or by passing the * through, starting from the initial 'fLaC' signature; or by passing the
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
* @file * @file
* @brief LZW decoding routines * @brief LZW decoding routines
* @author Fabrice Bellard * @author Fabrice Bellard
* Modified for use in TIFF by Konstantin Shishkov * @author modified for use in TIFF by Konstantin Shishkov
*/ */
#include "avcodec.h" #include "avcodec.h"
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
* @file * @file
* @brief LZW decoding routines * @brief LZW decoding routines
* @author Fabrice Bellard * @author Fabrice Bellard
* modified for use in TIFF by Konstantin Shishkov * @author modified for use in TIFF by Konstantin Shishkov
*/ */
#ifndef AVCODEC_LZW_H #ifndef AVCODEC_LZW_H
......
...@@ -23,9 +23,7 @@ ...@@ -23,9 +23,7 @@
* @file * @file
* RL2 Video Decoder * RL2 Video Decoder
* @author Sascha Sommer (saschasommer@freenet.de) * @author Sascha Sommer (saschasommer@freenet.de)
* * @see http://wiki.multimedia.cx/index.php?title=RL2
* For more information about the RL2 format, visit:
* http://wiki.multimedia.cx/index.php?title=RL2
*/ */
#include <stdio.h> #include <stdio.h>
......
...@@ -22,9 +22,9 @@ ...@@ -22,9 +22,9 @@
/** /**
* @file * @file
* TTA (The Lossless True Audio) decoder * TTA (The Lossless True Audio) decoder
* (www.true-audio.com or tta.corecodec.org) * @see http://www.true-audio.com/
* @see http://tta.corecodec.org/
* @author Alex Beregszaszi * @author Alex Beregszaszi
*
*/ */
#define ALT_BITSTREAM_READER_LE #define ALT_BITSTREAM_READER_LE
......
...@@ -21,9 +21,9 @@ ...@@ -21,9 +21,9 @@
/** /**
* @file * @file
* VQA Video Decoder by Mike Melanson (melanson@pcisys.net) * VQA Video Decoder
* For more information about the VQA format, visit: * @author Mike Melanson (melanson@pcisys.net)
* http://wiki.multimedia.cx/index.php?title=VQA * @see http://wiki.multimedia.cx/index.php?title=VQA
* *
* The VQA video decoder outputs PAL8 or RGB555 colorspace data, depending * The VQA video decoder outputs PAL8 or RGB555 colorspace data, depending
* on the type of data in the file. * on the type of data in the file.
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
* @file * @file
* Linux framebuffer input device, * Linux framebuffer input device,
* inspired by code from fbgrab.c by Gunnar Monell. * inspired by code from fbgrab.c by Gunnar Monell.
* See also http://linux-fbdev.sourceforge.net/. * @see http://linux-fbdev.sourceforge.net/
*/ */
/* #define DEBUG */ /* #define DEBUG */
......
...@@ -23,9 +23,7 @@ ...@@ -23,9 +23,7 @@
* @file * @file
* Funcom ISS file demuxer * Funcom ISS file demuxer
* @author Jaikrishnan Menon * @author Jaikrishnan Menon
* * @see http://wiki.multimedia.cx/index.php?title=FunCom_ISS
* For more information on the .iss file format, visit:
* http://wiki.multimedia.cx/index.php?title=FunCom_ISS
*/ */
#include "avformat.h" #include "avformat.h"
......
...@@ -23,9 +23,7 @@ ...@@ -23,9 +23,7 @@
* RL2 file demuxer * RL2 file demuxer
* @file * @file
* @author Sascha Sommer (saschasommer@freenet.de) * @author Sascha Sommer (saschasommer@freenet.de)
* * @see http://wiki.multimedia.cx/index.php?title=RL2
* For more information regarding the RL2 file format, visit:
* http://wiki.multimedia.cx/index.php?title=RL2
* *
* extradata: * extradata:
* 2 byte le initial drawing offset within 320x200 viewport * 2 byte le initial drawing offset within 320x200 viewport
......
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
/** /**
* @file * @file
* @brief RTP support for the SV3V (SVQ3) payload * @brief RTP support for the SV3V (SVQ3) payload
* (http://wiki.multimedia.cx/index.php?title=Sorenson_Video_3#Packetization)
* @author Ronald S. Bultje <rbultje@ronald.bitfreak.net> * @author Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* @see http://wiki.multimedia.cx/index.php?title=Sorenson_Video_3#Packetization
*/ */
#include <string.h> #include <string.h>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
* @file * @file
* @brief RTP support for the VP8 payload * @brief RTP support for the VP8 payload
* @author Josh Allmann <joshua.allmann@gmail.com> * @author Josh Allmann <joshua.allmann@gmail.com>
* ( http://www.webmproject.org/code/specs/rtp/ ) * @see http://www.webmproject.org/code/specs/rtp/
*/ */
#include "libavcodec/bytestream.h" #include "libavcodec/bytestream.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment