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
6168781f
Commit
6168781f
authored
Jul 14, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxygen: do not include license boilerplate in Doxygen documentation
parent
ca5d57ef
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
115 additions
and
75 deletions
+115
-75
huffman.c
libavcodec/huffman.c
+6
-3
huffman.h
libavcodec/huffman.h
+6
-3
vorbis.c
libavcodec/vorbis.c
+7
-5
vorbisdec.c
libavcodec/vorbisdec.c
+7
-5
vp5.c
libavcodec/vp5.c
+6
-4
vp56.c
libavcodec/vp56.c
+6
-4
vp56.h
libavcodec/vp56.h
+6
-4
vp56data.c
libavcodec/vp56data.c
+6
-4
vp56data.h
libavcodec/vp56data.h
+6
-4
vp5data.h
libavcodec/vp5data.h
+6
-4
vp6.c
libavcodec/vp6.c
+10
-8
vp6data.h
libavcodec/vp6data.h
+6
-4
vp6dsp.c
libavcodec/vp6dsp.c
+6
-4
vp8data.h
libavcodec/vp8data.h
+6
-3
vp8dsp.c
libavcodec/vp8dsp.c
+6
-3
vp8dsp.h
libavcodec/vp8dsp.h
+5
-3
yop.c
libavcodec/yop.c
+1
-2
flv.h
libavformat/flv.h
+6
-2
yop.c
libavformat/yop.c
+1
-2
timer.h
libavutil/timer.h
+6
-4
No files found.
libavcodec/huffman.c
View file @
6168781f
/**
/*
* @file
* huffman tree builder and VLC generator
* Copyright (c) 2006 Konstantin Shishkov
* Copyright (c) 2006 Konstantin Shishkov
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -20,6 +18,11 @@
...
@@ -20,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* huffman tree builder and VLC generator
*/
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "get_bits.h"
#include "huffman.h"
#include "huffman.h"
...
...
libavcodec/huffman.h
View file @
6168781f
/**
/*
* @file
* huffman tree builder and VLC generator
* Copyright (C) 2007 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2007 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -20,6 +18,11 @@
...
@@ -20,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* huffman tree builder and VLC generator
*/
#ifndef AVCODEC_HUFFMAN_H
#ifndef AVCODEC_HUFFMAN_H
#define AVCODEC_HUFFMAN_H
#define AVCODEC_HUFFMAN_H
...
...
libavcodec/vorbis.c
View file @
6168781f
/**
/*
* @file
* Common code for Vorbis I encoder and decoder
* @author Denes Balatoni ( dbalatoni programozo hu )
*
* This file is part of Libav.
* This file is part of Libav.
*
*
* Libav is free software; you can redistribute it and/or
* Libav is free software; you can redistribute it and/or
...
@@ -20,6 +16,12 @@
...
@@ -20,6 +16,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* Common code for Vorbis I encoder and decoder
* @author Denes Balatoni ( dbalatoni programozo hu )
*/
#define ALT_BITSTREAM_READER_LE
#define ALT_BITSTREAM_READER_LE
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "get_bits.h"
...
...
libavcodec/vorbisdec.c
View file @
6168781f
/**
/*
* @file
* Vorbis I decoder
* @author Denes Balatoni ( dbalatoni programozo hu )
*
* This file is part of Libav.
* This file is part of Libav.
*
*
* Libav is free software; you can redistribute it and/or
* Libav is free software; you can redistribute it and/or
...
@@ -20,6 +16,12 @@
...
@@ -20,6 +16,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* Vorbis I decoder
* @author Denes Balatoni ( dbalatoni programozo hu )
*/
#include <inttypes.h>
#include <inttypes.h>
#include <math.h>
#include <math.h>
...
...
libavcodec/vp5.c
View file @
6168781f
/**
/*
* @file
* VP5 compatible video decoder
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP5 compatible video decoder
*/
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
...
...
libavcodec/vp56.c
View file @
6168781f
/**
/*
* @file
* VP5 and VP6 compatible video decoder (common features)
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP5 and VP6 compatible video decoder (common features)
*/
#include "avcodec.h"
#include "avcodec.h"
#include "bytestream.h"
#include "bytestream.h"
...
...
libavcodec/vp56.h
View file @
6168781f
/**
/*
* @file
* VP5 and VP6 compatible video decoder (common features)
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP5 and VP6 compatible video decoder (common features)
*/
#ifndef AVCODEC_VP56_H
#ifndef AVCODEC_VP56_H
#define AVCODEC_VP56_H
#define AVCODEC_VP56_H
...
...
libavcodec/vp56data.c
View file @
6168781f
/**
/*
* @file
* VP5 and VP6 compatible video decoder (common data)
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP5 and VP6 compatible video decoder (common data)
*/
#include "vp56data.h"
#include "vp56data.h"
const
uint8_t
vp56_b2p
[]
=
{
0
,
0
,
0
,
0
,
1
,
2
,
3
,
3
,
3
,
3
};
const
uint8_t
vp56_b2p
[]
=
{
0
,
0
,
0
,
0
,
1
,
2
,
3
,
3
,
3
,
3
};
...
...
libavcodec/vp56data.h
View file @
6168781f
/**
/*
* @file
* VP5 and VP6 compatible video decoder (common data)
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP5 and VP6 compatible video decoder (common data)
*/
#ifndef AVCODEC_VP56DATA_H
#ifndef AVCODEC_VP56DATA_H
#define AVCODEC_VP56DATA_H
#define AVCODEC_VP56DATA_H
...
...
libavcodec/vp5data.h
View file @
6168781f
/**
/*
* @file
* VP5 compatible video decoder
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP5 compatible video decoder
*/
#ifndef AVCODEC_VP5DATA_H
#ifndef AVCODEC_VP5DATA_H
#define AVCODEC_VP5DATA_H
#define AVCODEC_VP5DATA_H
...
...
libavcodec/vp6.c
View file @
6168781f
/**
/*
* @file
* VP6 compatible video decoder
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* The VP6F decoder accepts an optional 1 byte extradata. It is composed of:
* - upper 4bits: difference between encoded width and visible width
* - lower 4bits: difference between encoded height and visible height
*
* This file is part of Libav.
* This file is part of Libav.
*
*
* Libav is free software; you can redistribute it and/or
* Libav is free software; you can redistribute it and/or
...
@@ -25,6 +18,15 @@
...
@@ -25,6 +18,15 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP6 compatible video decoder
*
* The VP6F decoder accepts an optional 1 byte extradata. It is composed of:
* - upper 4 bits: difference between encoded width and visible width
* - lower 4 bits: difference between encoded height and visible height
*/
#include <stdlib.h>
#include <stdlib.h>
#include "avcodec.h"
#include "avcodec.h"
...
...
libavcodec/vp6data.h
View file @
6168781f
/**
/*
* @file
* VP6 compatible video decoder
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP6 compatible video decoder
*/
#ifndef AVCODEC_VP6DATA_H
#ifndef AVCODEC_VP6DATA_H
#define AVCODEC_VP6DATA_H
#define AVCODEC_VP6DATA_H
...
...
libavcodec/vp6dsp.c
View file @
6168781f
/**
/*
* @file
* VP6 DSP-oriented functions
*
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP6 DSP-oriented functions
*/
#include "libavutil/common.h"
#include "libavutil/common.h"
#include "vp56dsp.h"
#include "vp56dsp.h"
...
...
libavcodec/vp8data.h
View file @
6168781f
/**
/*
* VP8 compatible video decoder
*
* Copyright (C) 2010 David Conrad
* Copyright (C) 2010 David Conrad
* Copyright (C) 2010 Ronald S. Bultje
* Copyright (C) 2010 Ronald S. Bultje
*
*
...
@@ -21,6 +19,11 @@
...
@@ -21,6 +19,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP8 compatible video decoder
*/
#ifndef AVCODEC_VP8DATA_H
#ifndef AVCODEC_VP8DATA_H
#define AVCODEC_VP8DATA_H
#define AVCODEC_VP8DATA_H
...
...
libavcodec/vp8dsp.c
View file @
6168781f
/**
/*
* VP8 compatible video decoder
*
* Copyright (C) 2010 David Conrad
* Copyright (C) 2010 David Conrad
* Copyright (C) 2010 Ronald S. Bultje
* Copyright (C) 2010 Ronald S. Bultje
*
*
...
@@ -21,6 +19,11 @@
...
@@ -21,6 +19,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP8 compatible video decoder
*/
#include "dsputil.h"
#include "dsputil.h"
#include "vp8dsp.h"
#include "vp8dsp.h"
...
...
libavcodec/vp8dsp.h
View file @
6168781f
/**
/*
* VP8 compatible video decoder
*
* Copyright (C) 2010 David Conrad
* Copyright (C) 2010 David Conrad
* Copyright (C) 2010 Ronald S. Bultje
* Copyright (C) 2010 Ronald S. Bultje
*
*
...
@@ -21,6 +19,10 @@
...
@@ -21,6 +19,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* VP8 compatible video decoder
*/
#ifndef AVCODEC_VP8DSP_H
#ifndef AVCODEC_VP8DSP_H
#define AVCODEC_VP8DSP_H
#define AVCODEC_VP8DSP_H
...
...
libavcodec/yop.c
View file @
6168781f
/**
/*
* @file
* Psygnosis YOP decoder
* Psygnosis YOP decoder
*
*
* Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com>
* Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com>
...
...
libavformat/flv.h
View file @
6168781f
/**
/*
* @file
* FLV common header
* FLV common header
*
*
* Copyright (c) 2006 The Libav Project
* Copyright (c) 2006 The Libav Project
...
@@ -21,6 +20,11 @@
...
@@ -21,6 +20,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* FLV common header
*/
#ifndef AVFORMAT_FLV_H
#ifndef AVFORMAT_FLV_H
#define AVFORMAT_FLV_H
#define AVFORMAT_FLV_H
...
...
libavformat/yop.c
View file @
6168781f
/**
/*
* @file
* Psygnosis YOP demuxer
* Psygnosis YOP demuxer
*
*
* Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com>
* Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com>
...
...
libavutil/timer.h
View file @
6168781f
/**
/*
* @file
* high precision timer, useful to profile code
*
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
*
*
* This file is part of Libav.
* This file is part of Libav.
...
@@ -21,6 +18,11 @@
...
@@ -21,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
/**
* @file
* high precision timer, useful to profile code
*/
#ifndef AVUTIL_TIMER_H
#ifndef AVUTIL_TIMER_H
#define AVUTIL_TIMER_H
#define AVUTIL_TIMER_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