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
29c2d06d
Commit
29c2d06d
authored
Feb 16, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: Drop empty comment lines
parent
d847a408
Show whitespace changes
Inline
Side-by-side
Showing
50 changed files
with
1 addition
and
66 deletions
+1
-66
8bps.c
libavcodec/8bps.c
+0
-1
acelp_filters.h
libavcodec/acelp_filters.h
+0
-1
amrwbdec.c
libavcodec/amrwbdec.c
+0
-3
avcodec.h
libavcodec/avcodec.h
+0
-8
cabac.c
libavcodec/cabac.c
+0
-1
cabac_functions.h
libavcodec/cabac_functions.h
+0
-1
cavs.c
libavcodec/cavs.c
+0
-1
error_resilience.h
libavcodec/error_resilience.h
+0
-1
h264_refs.c
libavcodec/h264_refs.c
+0
-1
h264_slice.c
libavcodec/h264_slice.c
+0
-1
imc.c
libavcodec/imc.c
+0
-1
lcldec.c
libavcodec/lcldec.c
+0
-1
lclenc.c
libavcodec/lclenc.c
+0
-1
motion_est.c
libavcodec/motion_est.c
+0
-1
mpeg4video.h
libavcodec/mpeg4video.h
+0
-1
msvideo1.c
libavcodec/msvideo1.c
+0
-1
options_table.h
libavcodec/options_table.h
+0
-1
pcm_tablegen.h
libavcodec/pcm_tablegen.h
+1
-4
profiles.c
libavcodec/profiles.c
+0
-1
profiles.h
libavcodec/profiles.h
+0
-1
qdm2.c
libavcodec/qdm2.c
+0
-1
rangecoder.c
libavcodec/rangecoder.c
+0
-1
rl.h
libavcodec/rl.h
+0
-1
shorten.c
libavcodec/shorten.c
+0
-1
tscc.c
libavcodec/tscc.c
+0
-1
vc1.c
libavcodec/vc1.c
+0
-1
vc1dsp.c
libavcodec/vc1dsp.c
+0
-1
vc1dsp.h
libavcodec/vc1dsp.h
+0
-1
version.h
libavcodec/version.h
+0
-1
vorbis_parser.h
libavcodec/vorbis_parser.h
+0
-1
af_join.c
libavfilter/af_join.c
+0
-1
af_resample.c
libavfilter/af_resample.c
+0
-1
buffersrc.h
libavfilter/buffersrc.h
+0
-1
formats.h
libavfilter/formats.h
+0
-1
pthread.c
libavfilter/pthread.c
+0
-1
thread.h
libavfilter/thread.h
+0
-1
avformat.h
libavformat/avformat.h
+0
-1
avio_internal.h
libavformat/avio_internal.h
+0
-1
rtpdec_hevc.c
libavformat/rtpdec_hevc.c
+0
-1
unix.c
libavformat/unix.c
+0
-1
url.h
libavformat/url.h
+0
-1
wtv.c
libavformat/wtv.c
+0
-4
atomic_suncc.h
libavutil/atomic_suncc.h
+0
-1
dict.h
libavutil/dict.h
+0
-2
frame.c
libavutil/frame.c
+0
-1
frame.h
libavutil/frame.h
+0
-1
pixfmt.h
libavutil/pixfmt.h
+0
-1
replaygain.h
libavutil/replaygain.h
+0
-1
samplefmt.h
libavutil/samplefmt.h
+0
-1
yuv2rgb_altivec.c
libswscale/ppc/yuv2rgb_altivec.c
+0
-1
No files found.
libavcodec/8bps.c
View file @
29c2d06d
...
@@ -28,7 +28,6 @@
...
@@ -28,7 +28,6 @@
* Supports: PAL8 (RGB 8bpp, paletted)
* Supports: PAL8 (RGB 8bpp, paletted)
* : BGR24 (RGB 24bpp) (can also output it as RGB32)
* : BGR24 (RGB 24bpp) (can also output it as RGB32)
* : RGB32 (RGB 32bpp, 4th plane is probably alpha and it's ignored)
* : RGB32 (RGB 32bpp, 4th plane is probably alpha and it's ignored)
*
*/
*/
#include <stdio.h>
#include <stdio.h>
...
...
libavcodec/acelp_filters.h
View file @
29c2d06d
...
@@ -49,7 +49,6 @@ extern const int16_t ff_acelp_interp_filter[61];
...
@@ -49,7 +49,6 @@ extern const int16_t ff_acelp_interp_filter[61];
* filter_coeffs contains coefficients of the right half of the symmetric
* filter_coeffs contains coefficients of the right half of the symmetric
* interpolation filter. filter_coeffs[0] should the central (unpaired) coefficient.
* interpolation filter. filter_coeffs[0] should the central (unpaired) coefficient.
* See ff_acelp_interp_filter for an example.
* See ff_acelp_interp_filter for an example.
*
*/
*/
void
ff_acelp_interpolate
(
int16_t
*
out
,
const
int16_t
*
in
,
void
ff_acelp_interpolate
(
int16_t
*
out
,
const
int16_t
*
in
,
const
int16_t
*
filter_coeffs
,
int
precision
,
const
int16_t
*
filter_coeffs
,
int
precision
,
...
...
libavcodec/amrwbdec.c
View file @
29c2d06d
...
@@ -138,7 +138,6 @@ static int decode_mime_header(AMRWBContext *ctx, const uint8_t *buf)
...
@@ -138,7 +138,6 @@ static int decode_mime_header(AMRWBContext *ctx, const uint8_t *buf)
*
*
* @param[in] ind Array of 5 indexes
* @param[in] ind Array of 5 indexes
* @param[out] isf_q Buffer for isf_q[LP_ORDER]
* @param[out] isf_q Buffer for isf_q[LP_ORDER]
*
*/
*/
static
void
decode_isf_indices_36b
(
uint16_t
*
ind
,
float
*
isf_q
)
static
void
decode_isf_indices_36b
(
uint16_t
*
ind
,
float
*
isf_q
)
{
{
...
@@ -165,7 +164,6 @@ static void decode_isf_indices_36b(uint16_t *ind, float *isf_q)
...
@@ -165,7 +164,6 @@ static void decode_isf_indices_36b(uint16_t *ind, float *isf_q)
*
*
* @param[in] ind Array of 7 indexes
* @param[in] ind Array of 7 indexes
* @param[out] isf_q Buffer for isf_q[LP_ORDER]
* @param[out] isf_q Buffer for isf_q[LP_ORDER]
*
*/
*/
static
void
decode_isf_indices_46b
(
uint16_t
*
ind
,
float
*
isf_q
)
static
void
decode_isf_indices_46b
(
uint16_t
*
ind
,
float
*
isf_q
)
{
{
...
@@ -199,7 +197,6 @@ static void decode_isf_indices_46b(uint16_t *ind, float *isf_q)
...
@@ -199,7 +197,6 @@ static void decode_isf_indices_46b(uint16_t *ind, float *isf_q)
*
*
* @param[in,out] isf_q Current quantized ISF
* @param[in,out] isf_q Current quantized ISF
* @param[in,out] isf_past Past quantized ISF
* @param[in,out] isf_past Past quantized ISF
*
*/
*/
static
void
isf_add_mean_and_past
(
float
*
isf_q
,
float
*
isf_past
)
static
void
isf_add_mean_and_past
(
float
*
isf_q
,
float
*
isf_past
)
{
{
...
...
libavcodec/avcodec.h
View file @
29c2d06d
...
@@ -74,7 +74,6 @@
...
@@ -74,7 +74,6 @@
* @{
* @{
* @}
* @}
* @}
* @}
*
*/
*/
/**
/**
...
@@ -1946,7 +1945,6 @@ typedef struct AVCodecContext {
...
@@ -1946,7 +1945,6 @@ typedef struct AVCodecContext {
#endif
#endif
/**
/**
*
* - encoding: Set by user.
* - encoding: Set by user.
* - decoding: unused
* - decoding: unused
*/
*/
...
@@ -1988,7 +1986,6 @@ typedef struct AVCodecContext {
...
@@ -1988,7 +1986,6 @@ typedef struct AVCodecContext {
#endif
#endif
/**
/**
*
* Note: Value depends upon the compare function used for fullpel ME.
* Note: Value depends upon the compare function used for fullpel ME.
* - encoding: Set by user.
* - encoding: Set by user.
* - decoding: unused
* - decoding: unused
...
@@ -2870,21 +2867,18 @@ typedef struct AVCodecContext {
...
@@ -2870,21 +2867,18 @@ typedef struct AVCodecContext {
#define FF_LEVEL_UNKNOWN -99
#define FF_LEVEL_UNKNOWN -99
/**
/**
*
* - encoding: unused
* - encoding: unused
* - decoding: Set by user.
* - decoding: Set by user.
*/
*/
enum
AVDiscard
skip_loop_filter
;
enum
AVDiscard
skip_loop_filter
;
/**
/**
*
* - encoding: unused
* - encoding: unused
* - decoding: Set by user.
* - decoding: Set by user.
*/
*/
enum
AVDiscard
skip_idct
;
enum
AVDiscard
skip_idct
;
/**
/**
*
* - encoding: unused
* - encoding: unused
* - decoding: Set by user.
* - decoding: Set by user.
*/
*/
...
@@ -3716,7 +3710,6 @@ void av_packet_move_ref(AVPacket *dst, AVPacket *src);
...
@@ -3716,7 +3710,6 @@ void av_packet_move_ref(AVPacket *dst, AVPacket *src);
* @param src Source packet
* @param src Source packet
*
*
* @return 0 on success AVERROR on failure.
* @return 0 on success AVERROR on failure.
*
*/
*/
int
av_packet_copy_props
(
AVPacket
*
dst
,
const
AVPacket
*
src
);
int
av_packet_copy_props
(
AVPacket
*
dst
,
const
AVPacket
*
src
);
...
@@ -4567,7 +4560,6 @@ AVBitStreamFilter *av_bitstream_filter_next(const AVBitStreamFilter *f);
...
@@ -4567,7 +4560,6 @@ AVBitStreamFilter *av_bitstream_filter_next(const AVBitStreamFilter *f);
*
*
* Same behaviour av_fast_malloc but the buffer has additional
* Same behaviour av_fast_malloc but the buffer has additional
* AV_INPUT_PADDING_SIZE at the end which will always memset to 0.
* AV_INPUT_PADDING_SIZE at the end which will always memset to 0.
*
*/
*/
void
av_fast_padded_malloc
(
void
*
ptr
,
unsigned
int
*
size
,
size_t
min_size
);
void
av_fast_padded_malloc
(
void
*
ptr
,
unsigned
int
*
size
,
size_t
min_size
);
...
...
libavcodec/cabac.c
View file @
29c2d06d
...
@@ -158,7 +158,6 @@ const uint8_t ff_h264_cabac_tables[512 + 4*2*64 + 4*64 + 63] = {
...
@@ -158,7 +158,6 @@ const uint8_t ff_h264_cabac_tables[512 + 4*2*64 + 4*64 + 63] = {
};
};
/**
/**
*
* @param buf_size size of buf in bits
* @param buf_size size of buf in bits
*/
*/
void
ff_init_cabac_decoder
(
CABACContext
*
c
,
const
uint8_t
*
buf
,
int
buf_size
){
void
ff_init_cabac_decoder
(
CABACContext
*
c
,
const
uint8_t
*
buf
,
int
buf_size
){
...
...
libavcodec/cabac_functions.h
View file @
29c2d06d
...
@@ -154,7 +154,6 @@ static av_always_inline int get_cabac_bypass_sign(CABACContext *c, int val){
...
@@ -154,7 +154,6 @@ static av_always_inline int get_cabac_bypass_sign(CABACContext *c, int val){
#endif
#endif
/**
/**
*
* @return the number of bytes read or 0 if no end
* @return the number of bytes read or 0 if no end
*/
*/
static
int
av_unused
get_cabac_terminate
(
CABACContext
*
c
){
static
int
av_unused
get_cabac_terminate
(
CABACContext
*
c
){
...
...
libavcodec/cavs.c
View file @
29c2d06d
...
@@ -104,7 +104,6 @@ static inline int get_bs(cavs_vector *mvP, cavs_vector *mvQ, int b)
...
@@ -104,7 +104,6 @@ static inline int get_bs(cavs_vector *mvP, cavs_vector *mvQ, int b)
* | 6 | 7 |
* | 6 | 7 |
* 1 3 |
* 1 3 |
* ---------
* ---------
*
*/
*/
void
ff_cavs_filter
(
AVSContext
*
h
,
enum
cavs_mb
mb_type
)
void
ff_cavs_filter
(
AVSContext
*
h
,
enum
cavs_mb
mb_type
)
{
{
...
...
libavcodec/error_resilience.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavcodec/h264_refs.c
View file @
29c2d06d
...
@@ -418,7 +418,6 @@ static void remove_short_at_index(H264Context *h, int i)
...
@@ -418,7 +418,6 @@ static void remove_short_at_index(H264Context *h, int i)
}
}
/**
/**
*
* @return the removed picture or NULL if an error occurs
* @return the removed picture or NULL if an error occurs
*/
*/
static
H264Picture
*
remove_short
(
H264Context
*
h
,
int
frame_num
,
int
ref_mask
)
static
H264Picture
*
remove_short
(
H264Context
*
h
,
int
frame_num
,
int
ref_mask
)
...
...
libavcodec/h264_slice.c
View file @
29c2d06d
...
@@ -1795,7 +1795,6 @@ static av_always_inline void fill_filter_caches_inter(const H264Context *h,
...
@@ -1795,7 +1795,6 @@ static av_always_inline void fill_filter_caches_inter(const H264Context *h,
}
}
/**
/**
*
* @return non zero if the loop filter can be skipped
* @return non zero if the loop filter can be skipped
*/
*/
static
int
fill_filter_caches
(
const
H264Context
*
h
,
H264SliceContext
*
sl
,
int
mb_type
)
static
int
fill_filter_caches
(
const
H264Context
*
h
,
H264SliceContext
*
sl
,
int
mb_type
)
...
...
libavcodec/imc.c
View file @
29c2d06d
...
@@ -27,7 +27,6 @@
...
@@ -27,7 +27,6 @@
* A mdct based codec using a 256 points large transform
* A mdct based codec using a 256 points large transform
* divided into 32 bands with some mix of scale factors.
* divided into 32 bands with some mix of scale factors.
* Only mono is supported.
* Only mono is supported.
*
*/
*/
...
...
libavcodec/lcldec.c
View file @
29c2d06d
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
* http://www.pcisys.net/~melanson/codecs
* http://www.pcisys.net/~melanson/codecs
*
*
* Supports: BGR24 (RGB 24bpp)
* Supports: BGR24 (RGB 24bpp)
*
*/
*/
#include <stdio.h>
#include <stdio.h>
...
...
libavcodec/lclenc.c
View file @
29c2d06d
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
* http://www.pcisys.net/~melanson/codecs
* http://www.pcisys.net/~melanson/codecs
*
*
* Supports: BGR24 (RGB 24bpp)
* Supports: BGR24 (RGB 24bpp)
*
*/
*/
#include <stdio.h>
#include <stdio.h>
...
...
libavcodec/motion_est.c
View file @
29c2d06d
...
@@ -1684,7 +1684,6 @@ void ff_fix_long_p_mvs(MpegEncContext * s)
...
@@ -1684,7 +1684,6 @@ void ff_fix_long_p_mvs(MpegEncContext * s)
}
}
/**
/**
*
* @param truncate 1 for truncation, 0 for using intra
* @param truncate 1 for truncation, 0 for using intra
*/
*/
void
ff_fix_long_mvs
(
MpegEncContext
*
s
,
uint8_t
*
field_select_table
,
int
field_select
,
void
ff_fix_long_mvs
(
MpegEncContext
*
s
,
uint8_t
*
field_select_table
,
int
field_select
,
...
...
libavcodec/mpeg4video.h
View file @
29c2d06d
...
@@ -151,7 +151,6 @@ void ff_mpeg4_init_direct_mv(MpegEncContext *s);
...
@@ -151,7 +151,6 @@ void ff_mpeg4_init_direct_mv(MpegEncContext *s);
int
ff_mpeg4_frame_end
(
AVCodecContext
*
avctx
,
const
uint8_t
*
buf
,
int
buf_size
);
int
ff_mpeg4_frame_end
(
AVCodecContext
*
avctx
,
const
uint8_t
*
buf
,
int
buf_size
);
/**
/**
*
* @return the mb_type
* @return the mb_type
*/
*/
int
ff_mpeg4_set_direct_mv
(
MpegEncContext
*
s
,
int
mx
,
int
my
);
int
ff_mpeg4_set_direct_mv
(
MpegEncContext
*
s
,
int
mx
,
int
my
);
...
...
libavcodec/msvideo1.c
View file @
29c2d06d
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
* Microsoft Video-1 Decoder by Mike Melanson (melanson@pcisys.net)
* Microsoft Video-1 Decoder by Mike Melanson (melanson@pcisys.net)
* For more information about the MS Video-1 format, visit:
* For more information about the MS Video-1 format, visit:
* http://www.pcisys.net/~melanson/codecs/
* http://www.pcisys.net/~melanson/codecs/
*
*/
*/
#include <stdio.h>
#include <stdio.h>
...
...
libavcodec/options_table.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavcodec/pcm_tablegen.h
View file @
29c2d06d
...
@@ -36,10 +36,7 @@
...
@@ -36,10 +36,7 @@
#define BIAS (0x84)
/* Bias for linear code. */
#define BIAS (0x84)
/* Bias for linear code. */
/*
/* alaw2linear() - Convert an A-law value to 16-bit linear PCM */
* alaw2linear() - Convert an A-law value to 16-bit linear PCM
*
*/
static
av_cold
int
alaw2linear
(
unsigned
char
a_val
)
static
av_cold
int
alaw2linear
(
unsigned
char
a_val
)
{
{
int
t
;
int
t
;
...
...
libavcodec/profiles.c
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavcodec/profiles.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavcodec/qdm2.c
View file @
29c2d06d
...
@@ -794,7 +794,6 @@ static void fill_coding_method_array(sb_int8_array tone_level_idx,
...
@@ -794,7 +794,6 @@ static void fill_coding_method_array(sb_int8_array tone_level_idx,
}
}
/**
/**
*
* Called by process_subpacket_11 to process more data from subpacket 11
* Called by process_subpacket_11 to process more data from subpacket 11
* with sb 0-8.
* with sb 0-8.
* Called by process_subpacket_12 to process data from subpacket 12 with
* Called by process_subpacket_12 to process data from subpacket 12 with
...
...
libavcodec/rangecoder.c
View file @
29c2d06d
...
@@ -28,7 +28,6 @@
...
@@ -28,7 +28,6 @@
* G. N. N. Martin Presented in March 1979 to the Video &
* G. N. N. Martin Presented in March 1979 to the Video &
* Data Recording Conference,
* Data Recording Conference,
* IBM UK Scientific Center held in Southampton July 24-27 1979."
* IBM UK Scientific Center held in Southampton July 24-27 1979."
*
*/
*/
#include <string.h>
#include <string.h>
...
...
libavcodec/rl.h
View file @
29c2d06d
...
@@ -49,7 +49,6 @@ typedef struct RLTable {
...
@@ -49,7 +49,6 @@ typedef struct RLTable {
}
RLTable
;
}
RLTable
;
/**
/**
*
* @param static_store static uint8_t array[2][2*MAX_RUN + MAX_LEVEL + 3] which will hold
* @param static_store static uint8_t array[2][2*MAX_RUN + MAX_LEVEL + 3] which will hold
* the level and run tables, if this is NULL av_malloc() will be used
* the level and run tables, if this is NULL av_malloc() will be used
*/
*/
...
...
libavcodec/shorten.c
View file @
29c2d06d
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
* @file
* @file
* Shorten decoder
* Shorten decoder
* @author Jeff Muizelaar
* @author Jeff Muizelaar
*
*/
*/
#include <limits.h>
#include <limits.h>
...
...
libavcodec/tscc.c
View file @
29c2d06d
...
@@ -32,7 +32,6 @@
...
@@ -32,7 +32,6 @@
* then this coded picture is packed with ZLib
* then this coded picture is packed with ZLib
*
*
* Supports: BGR8,BGR555,BGR24 - only BGR8 and BGR555 tested
* Supports: BGR8,BGR555,BGR24 - only BGR8 and BGR555 tested
*
*/
*/
#include <stdio.h>
#include <stdio.h>
...
...
libavcodec/vc1.c
View file @
29c2d06d
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
/**
/**
* @file
* @file
* VC-1 and WMV3 decoder common code
* VC-1 and WMV3 decoder common code
*
*/
*/
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
...
...
libavcodec/vc1dsp.c
View file @
29c2d06d
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
/**
/**
* @file
* @file
* VC-1 and WMV3 decoder
* VC-1 and WMV3 decoder
*
*/
*/
#include "libavutil/common.h"
#include "libavutil/common.h"
...
...
libavcodec/vc1dsp.h
View file @
29c2d06d
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
/**
/**
* @file
* @file
* VC-1 and WMV3 decoder
* VC-1 and WMV3 decoder
*
*/
*/
#ifndef AVCODEC_VC1DSP_H
#ifndef AVCODEC_VC1DSP_H
...
...
libavcodec/version.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavcodec/vorbis_parser.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavfilter/af_join.c
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavfilter/af_resample.c
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavfilter/buffersrc.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavfilter/formats.h
View file @
29c2d06d
...
@@ -204,7 +204,6 @@ void ff_formats_ref(AVFilterFormats *formats, AVFilterFormats **ref);
...
@@ -204,7 +204,6 @@ void ff_formats_ref(AVFilterFormats *formats, AVFilterFormats **ref);
void
ff_formats_unref
(
AVFilterFormats
**
ref
);
void
ff_formats_unref
(
AVFilterFormats
**
ref
);
/**
/**
*
* Before After
* Before After
* ________ ________
* ________ ________
* |formats |<---------. |formats |<---------.
* |formats |<---------. |formats |<---------.
...
...
libavfilter/pthread.c
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavfilter/thread.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavformat/avformat.h
View file @
29c2d06d
...
@@ -251,7 +251,6 @@
...
@@ -251,7 +251,6 @@
* @{
* @{
* @}
* @}
* @}
* @}
*
*/
*/
#include <time.h>
#include <time.h>
...
...
libavformat/avio_internal.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavformat/rtpdec_hevc.c
View file @
29c2d06d
...
@@ -17,7 +17,6 @@
...
@@ -17,7 +17,6 @@
* You should have received a copy of the GNU Lesser General Public
* You should have received a copy of the GNU Lesser General Public
* License along with Libav; if not, write to the Free Software
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
*/
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
...
...
libavformat/unix.c
View file @
29c2d06d
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
* @file
* @file
*
*
* Unix socket url_protocol
* Unix socket url_protocol
*
*/
*/
#include <sys/un.h>
#include <sys/un.h>
...
...
libavformat/url.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavformat/wtv.c
View file @
29c2d06d
...
@@ -46,9 +46,7 @@
...
@@ -46,9 +46,7 @@
#define LEN_PRETTY_GUID 34
#define LEN_PRETTY_GUID 34
/*
/*
*
* File system routines
* File system routines
*
*/
*/
#define WTV_SECTOR_BITS 12
#define WTV_SECTOR_BITS 12
...
@@ -319,9 +317,7 @@ static void wtvfile_close(AVIOContext *pb)
...
@@ -319,9 +317,7 @@ static void wtvfile_close(AVIOContext *pb)
}
}
/*
/*
*
* Main demuxer
* Main demuxer
*
*/
*/
typedef
struct
WtvStream
{
typedef
struct
WtvStream
{
...
...
libavutil/atomic_suncc.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavutil/dict.h
View file @
29c2d06d
/*
/*
*
* 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
...
@@ -55,7 +54,6 @@
...
@@ -55,7 +54,6 @@
}
}
av_dict_free(&d);
av_dict_free(&d);
@endcode
@endcode
*
*/
*/
#define AV_DICT_MATCH_CASE 1
#define AV_DICT_MATCH_CASE 1
...
...
libavutil/frame.c
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavutil/frame.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavutil/pixfmt.h
View file @
29c2d06d
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
/**
/**
* @file
* @file
* pixel format definitions
* pixel format definitions
*
*/
*/
#include "libavutil/avconfig.h"
#include "libavutil/avconfig.h"
...
...
libavutil/replaygain.h
View file @
29c2d06d
/*
/*
*
* 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
...
...
libavutil/samplefmt.h
View file @
29c2d06d
...
@@ -32,7 +32,6 @@
...
@@ -32,7 +32,6 @@
*
*
* Audio sample format enumeration and related convenience functions.
* Audio sample format enumeration and related convenience functions.
* @{
* @{
*
*/
*/
/**
/**
...
...
libswscale/ppc/yuv2rgb_altivec.c
View file @
29c2d06d
...
@@ -141,7 +141,6 @@ typedef signed char sbyte;
...
@@ -141,7 +141,6 @@ typedef signed char sbyte;
* brgb|rgbr|gbrg|brgb
* brgb|rgbr|gbrg|brgb
* 1001 0010 0100 1001
* 1001 0010 0100 1001
* a67b 89cA BdCD eEFf
* a67b 89cA BdCD eEFf
*
*/
*/
static
const
vector
unsigned
char
static
const
vector
unsigned
char
perm_rgb_0
=
{
0x00
,
0x01
,
0x10
,
0x02
,
0x03
,
0x11
,
0x04
,
0x05
,
perm_rgb_0
=
{
0x00
,
0x01
,
0x10
,
0x02
,
0x03
,
0x11
,
0x04
,
0x05
,
...
...
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