FFmpeg/libavcodec
Rostislav Pehlivanov c5d4f87e81 aaccoder: Implement Perceptual Noise Substitution for AAC
This commit implements the perceptual noise substitution AAC extension. This is a proof of concept
implementation, and as such, is not enabled by default. This is the fourth revision of this patch,
made after some problems were noted out. Any changes made since the previous revisions have been indicated.

In order to extend the encoder to use an additional codebook, the array holding each codebook has been
modified with two additional entries - 13 for the NOISE_BT codebook and 12 which has a placeholder function.
The cost system was modified to skip the 12th entry using an array to map the input and outputs it has. It
also does not accept using the 13th codebook for any band which is not marked as containing noise, thereby
restricting its ability to arbitrarily choose it for bands. The use of arrays allows the system to be easily
extended to allow for intensity stereo encoding, which uses additional codebooks.

The 12th entry in the codebook function array points to a function which stops the execution of the program
by calling an assert with an always 'false' argument. It was pointed out in an email discussion with
Claudio Freire that having a 'NULL' entry can result in unexpected behaviour and could be used as
a security hole. There is no danger of this function being called during encoding due to the codebook maps introduced.

Another change from version 1 of the patch is the addition of an argument to the encoder, '-aac_pns' to
enable and disable the PNS. This currently defaults to disable the PNS, as it is experimental.
The switch will be removed in the future, when the algorithm to select noise bands has been improved.
The current algorithm simply compares the energy to the threshold (multiplied by a constant) to determine
noise, however the FFPsyBand structure contains other useful figures to determine which bands carry noise more accurately.

Some of the sample files provided triggered an assertion when the parameter to tune the threshold was set to
a value of '2.2'. Claudio Freire reported the problem's source could be in the range of the scalefactor
indices for noise and advised to measure the minimal index and clip anything above the maximum allowed
value. This has been implemented and all the files which used to trigger the asserion now encode without error.

The third revision of the problem also removes unneded variabes and comparisons. All of them were
redundant and were of little use for when the PNS implementation would be extended.

The fourth revision moved the clipping of the noise scalefactors outside the second loop of the two-loop
algorithm in order to prevent their redundant calculations. Also, freq_mult has been changed to a float
variable due to the fact that rounding errors can prove to be a problem at low frequencies.
Considerations were taken whether the entire expression could be evaluated inside the expression
, but in the end it was decided that it would be for the best if just the type of the variable were
to change. Claudio Freire reported the two problems. There is no change of functionality
(except for low sampling frequencies) so the spectral demonstrations at the end of this commit's message were not updated.

Finally, the way energy values are converted to scalefactor indices has changed since the first commit,
as per the suggestion of Claudio Freire. This may still have some drawbacks, but unlike the first commit
it works without having redundant offsets and outputs what the decoder expects to have, in terms of the
ranges of the scalefactor indices.

Some spectral comparisons: https://trac.ffmpeg.org/attachment/wiki/Encode/AAC/Original.png (original),
https://trac.ffmpeg.org/attachment/wiki/Encode/AAC/PNS_NO.png (encoded without PNS),
https://trac.ffmpeg.org/attachment/wiki/Encode/AAC/PNS1.2.png (encoded with PNS, const = 1.2),
https://trac.ffmpeg.org/attachment/wiki/Encode/AAC/Difference1.png (spectral difference).
The constant is the value which multiplies the threshold when it gets compared to the energy, larger
values means more noise will be substituded by PNS values. Example when const = 2.2:
https://trac.ffmpeg.org/attachment/wiki/Encode/AAC/PNS_2.2.png

Reviewed-by: Claudio Freire <klaussfreire@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-04-15 19:59:44 +02:00
..
aarch64 Merge commit '3d5d46233c' 2015-02-02 20:43:13 +01:00
alpha
arm avcodec/arm/flacdsp_init_arm: Put CONFIG_FLAC_DECODER first in if() 2015-03-26 15:41:27 +01:00
avr32
bfin
mips mips: port optimizations to mips n64 2015-03-06 14:37:44 +01:00
neon
ppc avcodec/ppc/fdctdsp: POWER LE support in ff_fdct_altivec() 2015-04-03 18:10:27 +02:00
sh4
sparc
x86 avcodec/x86/hpeldsp_init: Put CONFIG_* first in if() 2015-03-26 15:41:27 +01:00
4xm.c avcodec/4xm: remove duplicate assert 2014-11-13 19:01:08 +01:00
8bps.c
8svx.c
012v.c avcodec/012v: redesign main loop 2015-03-10 23:33:57 +01:00
a64colors.h
a64multienc.c avcodec/a64multienc: Assert that the Packet size does not grow 2015-02-23 02:16:00 +01:00
a64tables.h
aac.h aacenc: Adjust the initial offset for PNS values 2015-04-14 03:42:57 +02:00
aac_ac3_parser.c
aac_ac3_parser.h
aac_adtstoasc_bsf.c avcodec/aac_adtstoasc_bsf: Clear extradata_size on allocation failure 2015-02-17 22:58:31 +01:00
aac_parser.c
aac_tablegen.c
aac_tablegen.h
aac_tablegen_decl.h
aacadtsdec.c
aacadtsdec.h
aaccoder.c aaccoder: Implement Perceptual Noise Substitution for AAC 2015-04-15 19:59:44 +02:00
aacdec.c aacdec: Use macros for constants 2015-04-14 18:04:02 +02:00
aacdectab.h
aacenc.c aaccoder: Implement Perceptual Noise Substitution for AAC 2015-04-15 19:59:44 +02:00
aacenc.h aaccoder: Implement Perceptual Noise Substitution for AAC 2015-04-15 19:59:44 +02:00
aacps.c aacps.c: Move large arrays to context to reduce stack usage. 2014-12-18 23:50:41 +01:00
aacps.h aacps.c: Move large arrays to context to reduce stack usage. 2014-12-18 23:50:41 +01:00
aacps_tablegen.c
aacps_tablegen.h
aacpsdata.c
aacpsdsp.c
aacpsdsp.h
aacpsy.c avcodec/aacpsy: Fix AAC Psy PE reduction calculation when multiple iterations are required 2015-03-02 13:31:31 +01:00
aacsbr.c avcodec/aacsbr: Replace impossible condition by assert 2015-03-17 22:55:59 +01:00
aacsbr.h
aacsbr_tablegen.c
aacsbr_tablegen.h
aacsbrdata.h
aactab.c Merge commit '7640c4a371' 2015-02-04 13:40:23 +01:00
aactab.h Merge commit '7640c4a371' 2015-02-04 13:40:23 +01:00
aandcttab.c
aandcttab.h
aasc.c
ac3.c avcodec/ac3: Fix undefined shift in ff_ac3_bit_alloc_calc_mask() 2015-03-15 11:21:50 +01:00
ac3.h avcodec/ac3: add () to protect the macro arguments 2015-02-16 23:59:39 +01:00
ac3_parser.c
ac3_parser.h
ac3dec.c avcodec/ac3dec: Put CONFIG* first in if() 2015-03-26 15:41:27 +01:00
ac3dec.h ac3dec_fixed: always use the USE_FIXED=1 variant of the AC3DecodeContext 2015-03-14 04:27:06 +01:00
ac3dec_data.c
ac3dec_data.h
ac3dec_fixed.c ac3dec_fixed: always use the USE_FIXED=1 variant of the AC3DecodeContext 2015-03-14 04:27:06 +01:00
ac3dec_float.c ac3dec_fixed: always use the USE_FIXED=1 variant of the AC3DecodeContext 2015-03-14 04:27:06 +01:00
ac3dsp.c Merge commit '9abc80f1ed' 2015-02-21 11:27:24 +01:00
ac3dsp.h
ac3enc.c avcodec/ac3enc: Use avpriv_float_dsp_alloc() 2014-11-29 18:54:27 +01:00
ac3enc.h avcodec/ac3enc: Use avpriv_float_dsp_alloc() 2014-11-29 18:54:27 +01:00
ac3enc_fixed.c
ac3enc_float.c avcodec/ac3enc: Use avpriv_float_dsp_alloc() 2014-11-29 18:54:27 +01:00
ac3enc_opts_template.c
ac3enc_template.c avcodec/ac3enc: Use avpriv_float_dsp_alloc() 2014-11-29 18:54:27 +01:00
ac3tab.c
ac3tab.h
acelp_filters.c
acelp_filters.h
acelp_pitch_delay.c
acelp_pitch_delay.h
acelp_vectors.c
acelp_vectors.h
adpcm.c avcodec/adpcm: use av_clip_intp2() 2015-02-21 20:41:36 +01:00
adpcm.h
adpcm_data.c
adpcm_data.h
adpcmenc.c Fix buffer_size argument to init_put_bits() in multiple encoders. 2015-02-26 20:14:00 +01:00
adx.c
adx.h
adx_parser.c
adxdec.c
adxenc.c avcodec/adxenc: Use av_clip_intp2() 2015-02-21 20:38:13 +01:00
aic.c Merge commit 'e878ec0d47' 2015-03-03 20:41:44 +01:00
alac.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
alac_data.c
alac_data.h
alacenc.c
aliaspixdec.c
aliaspixenc.c
allcodecs.c avcodec: add unpack packed B-frames bitstream filter 2015-04-05 02:24:56 +02:00
alsdec.c avcodec/alsdec: use av_malloc(z)_array() 2015-04-14 13:06:15 +00:00
amr.h
amrnbdata.h
amrnbdec.c avcodec/amrnbde: Fix undefined shift in decode_pitch_vector() 2015-03-11 16:29:40 +01:00
amrwbdata.h
amrwbdec.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
anm.c lavc/anm: fix mem leak in case of init failure 2014-11-23 03:25:25 +01:00
ansi.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
apedec.c avcodec/apedec: simplify sign conversion 2015-02-14 01:09:44 +01:00
apng.h apng: move shared header from avformat to avcodec. 2014-12-02 15:52:31 +01:00
ass.c avcodec/ass: Use av_realloc_array() 2015-01-09 20:33:53 +01:00
ass.h
ass_split.c avcodec/ass_split: use *alloc_array() 2015-01-09 20:33:53 +01:00
ass_split.h
assdec.c assdec: check the right variable 2014-12-18 23:27:14 +01:00
assenc.c
asv.c
asv.h
asvdec.c
asvenc.c Merge commit 'bcbdeb318e' 2014-12-15 12:04:31 +01:00
atrac.c
atrac.h
atrac1.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
atrac1data.h
atrac3.c Merge commit 'ee964145b5' 2015-02-28 23:41:36 +01:00
atrac3data.h
atrac3plus.c Merge commit 'd16ec1b6db' 2014-11-15 02:17:54 +01:00
atrac3plus.h
atrac3plus_data.h
atrac3plusdec.c avcodec/atrac3plusdec: Free mdct contexts at the end 2015-04-14 02:31:37 +02:00
atrac3plusdsp.c
audio_frame_queue.c
audio_frame_queue.h
audioconvert.c
audioconvert.h audioconvert: Add missing include for FF_API_AUDIO_CONVERT 2015-02-06 19:07:29 +01:00
audiodsp.c
audiodsp.h
aura.c
avcodec.h lavc: add profile define for DTS Express 2015-03-29 10:00:38 +02:00
avcodecres.rc
avdct.c avcodec/avdct: support >8bit per sample dcts 2014-12-15 18:25:00 +01:00
avdct.h avcodec/avdct: support >8bit per sample dcts 2014-12-15 18:25:00 +01:00
avfft.c avcodec/avfft: Add simple self test 2015-02-06 19:07:29 +01:00
avfft.h
avpacket.c Merge commit 'fe0f4e5657' 2015-02-17 22:47:36 +01:00
avpicture.c imgutils: create misc functions for dealing with buffers 2015-01-14 17:17:24 +01:00
avrndec.c
avs.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
avuidec.c
avuienc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
bethsoftvideo.c
bethsoftvideo.h
bfi.c
bgmc.c bgmc: fix sizeof arguments 2014-11-14 20:25:02 +01:00
bgmc.h
bink.c
binkaudio.c Merge commit 'ee964145b5' 2015-02-28 23:41:36 +01:00
binkdata.h
binkdsp.c
binkdsp.h
bintext.c
bintext.h
bit_depth_template.c
bitstream.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
bitstream_filter.c Merge commit '8a9641a652' 2015-01-15 13:47:12 +01:00
blockdsp.c
blockdsp.h
bmp.c Support BMP files that do not properly align lines. 2015-01-27 21:29:42 +01:00
bmp.h
bmp_parser.c
bmpenc.c
bmvaudio.c
bmvvideo.c avcodec/bmvvideo: Add () to protect NEXT_BYTE() argument 2015-02-16 23:09:09 +01:00
brenderpix.c
bswapdsp.c
bswapdsp.h
bytestream.h
c93.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
cabac.c cabac-test: Return 1 if there are any errors 2015-04-10 21:49:37 +02:00
cabac.h
cabac_functions.h
cabac_tablegen.c
cabac_tablegen.h
cavs.c Merge commit '9abc80f1ed' 2015-02-21 11:27:24 +01:00
cavs.h avcodec/cavs: Check for av_malloc* failure in ff_cavs_init_top_lines() 2015-01-10 14:02:39 +01:00
cavs_parser.c
cavsdata.c
cavsdec.c avcodec/cavs: Check for av_malloc* failure in ff_cavs_init_top_lines() 2015-01-10 14:02:39 +01:00
cavsdsp.c
cavsdsp.h
cbrt_tablegen.c
cbrt_tablegen.h
ccaption_dec.c avcodec/ccaption_dec: Remove the GOTO statement 2015-04-02 00:06:44 +02:00
cdgraphics.c
cdxl.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
celp_filters.c
celp_filters.h
celp_math.c
celp_math.h
cga_data.c
cga_data.h
chomp_bsf.c
cinepak.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
cinepakenc.c
cljrdec.c
cljrenc.c
cllc.c avcodec/cllc: use init_get_bits8() 2015-02-05 09:48:54 +00:00
cngdec.c
cngenc.c avcodec: Use av_clip_uintp2() where possible 2015-02-21 15:50:03 +01:00
codec_desc.c Merge commit '247e370e2a' 2015-03-13 23:23:01 +01:00
cook.c avcodec: Use av_clip_uintp2() where possible 2015-02-21 15:50:03 +01:00
cook_parser.c
cookdata.h
copy_block.h
cos_tablegen.c
cpia.c
crystalhd.c
cscd.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
cyuv.c
dca.c Merge commit '25f613f8be' 2015-03-04 19:28:53 +01:00
dca.h Merge commit '217e4ff4d1' 2015-03-15 22:18:41 +01:00
dca_exss.c Merge commit '217e4ff4d1' 2015-03-15 22:18:41 +01:00
dca_parser.c Merge commit '25f613f8be' 2015-03-04 19:28:53 +01:00
dca_syncwords.h Merge commit '4da5aacc7e' 2015-03-15 21:14:46 +01:00
dca_xll.c Merge commit 'c9ed48e80e' 2015-03-17 20:32:57 +01:00
dcadata.c Merge commit '217e4ff4d1' 2015-03-15 22:18:41 +01:00
dcadata.h Merge commit '217e4ff4d1' 2015-03-15 22:18:41 +01:00
dcadec.c lavc/dts: Do not set bitrate for DTS-HD Master and High Resolution. 2015-03-18 20:34:35 +01:00
dcadsp.c
dcadsp.h
dcaenc.c Merge commit '3a651f599a' 2015-02-16 02:49:22 +01:00
dcaenc.h
dcahuff.h
dct-test.c lavc: use LOCAL_ALIGNED instead of DECLARE_ALIGNED 2015-03-14 20:36:43 +01:00
dct.c
dct.h
dct32.h
dct32_fixed.c
dct32_float.c
dct32_template.c
dctref.c
dctref.h
dfa.c
dirac.c
dirac.h
dirac_arith.c
dirac_arith.h lavc/dirac_arith: Only compile x86 asm if ARCH_X86 is set. 2014-12-02 11:36:48 +01:00
dirac_dwt.c Factorize avpriv_mirror() out 2015-01-05 01:45:49 +01:00
dirac_dwt.h
dirac_parser.c
diracdec.c avcodec/diracdec: Check slices malloc and propagate error code 2015-01-10 17:28:22 +01:00
diracdsp.c avcodec/diracdsp: Mark ff_diracdsp_init() as av_cold 2015-02-27 16:53:37 +01:00
diracdsp.h
dnxhd_parser.c
dnxhddata.c Merge commit '1a07df3112' 2015-01-29 21:21:49 +01:00
dnxhddata.h
dnxhddec.c Merge commit '5980c924e3' 2015-04-09 20:26:18 +02:00
dnxhdenc.c Merge commit '85dc006b1a' 2014-11-18 03:16:38 +01:00
dnxhdenc.h
dpcm.c
dpx.c Support decoding yuv dpx images. 2015-02-08 00:12:46 +01:00
dpx_parser.c Merge commit '87bd298abe' 2014-12-19 03:30:40 +01:00
dpxenc.c dpx: always write the image offset 2014-12-08 13:29:18 +00:00
dsd_tablegen.c
dsd_tablegen.h
dsddec.c
dsicinaudio.c
dsicinvideo.c
dss_sp.c avcodec/dss_sp: Avoid a slow division and modulo in the pitch_lag calculation 2015-02-19 22:53:35 +01:00
dump_extradata_bsf.c Merge commit '8a9641a652' 2015-01-15 13:47:12 +01:00
dv.c avcodec/dv: remove unused var dvquantareas 2015-03-20 04:39:10 +01:00
dv.h
dv_profile.c add av_dv_codec_profile2 : uses framerate to select best matching profile. default on first matching profile 2014-12-04 20:23:52 +01:00
dv_profile.h add av_dv_codec_profile2 : uses framerate to select best matching profile. default on first matching profile 2014-12-04 20:23:52 +01:00
dv_profile_internal.h
dv_tablegen.c
dv_tablegen.h
dvbsub.c
dvbsub_parser.c avcodec/dvbsub_parser: Fix potential pointer overflows 2015-03-15 20:26:08 +01:00
dvbsubdec.c Merge commit '607ad990d3' 2015-01-27 20:25:40 +01:00
dvd_nav_parser.c
dvdata.c
dvdata.h
dvdec.c avcodec/dvdec: Make dv_iweight_720_c static 2015-02-27 19:17:23 +01:00
dvdsub_parser.c
dvdsubdec.c Merge commit 'ec17782e17' 2015-02-17 22:31:26 +01:00
dvdsubenc.c
dvenc.c dvenc: fix 2x4x8 (interlaced) weight table 2015-02-01 02:01:55 +01:00
dxa.c
dxtory.c avcodec/dxtory: use init_get_bits8() 2015-02-14 19:45:23 +00:00
dxva2.c
dxva2.h
dxva2_h264.c dxva2_h264: fix slice offset in long slice structs 2015-03-23 20:53:29 +00:00
dxva2_hevc.c dxva2_hevc: properly fill the scaling list structure 2015-02-07 14:33:29 +01:00
dxva2_internal.h
dxva2_mpeg2.c
dxva2_vc1.c
eac3_data.c
eac3_data.h
eac3dec.c eac3dec: fix scaling 2015-03-14 14:05:25 +01:00
eac3enc.c
eac3enc.h
eacmv.c
eaidct.c
eaidct.h
eamad.c Merge commit '061c489895' 2015-02-23 21:29:35 +01:00
eatgq.c
eatgv.c
eatqi.c
elbg.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
elbg.h Merge commit 'ae2d41ec87' 2014-12-19 04:10:17 +01:00
error_resilience.c avcodec/error_resilience: Avoid race with updating the error_count 2015-04-05 13:32:09 +02:00
error_resilience.h avcodec/error_resilience: Avoid race with updating the error_count 2015-04-05 13:32:09 +02:00
escape124.c Merge commit '1a9c1333b5' 2014-11-13 14:01:41 +01:00
escape130.c
evrcdata.h
evrcdec.c avcodec/evrcdec: use init_get_bits8() 2015-02-04 09:45:42 +00:00
exif.c
exif.h
exr.c Revert "avcodec/exr: fix memset first arg in reverse_lut()" 2015-04-01 19:53:23 +02:00
faandct.c
faandct.h
faanidct.c
faanidct.h
faxcompr.c Fix buffer_size argument to init_put_bits() in multiple encoders. 2015-02-26 20:14:00 +01:00
faxcompr.h
fdctdsp.c avcodec/fdctdsp: use the 10bit code for 9 bit too 2014-12-20 18:32:50 +01:00
fdctdsp.h
fft-fixed-test.c
fft-fixed32-test.c
fft-internal.h
fft-test.c
fft.h
fft_fixed.c
fft_fixed_32.c
fft_float.c
fft_init_table.c
fft_table.h
fft_template.c
ffv1.c avcodec/ffv1: dont leave stale pointers in memory 2015-04-13 20:08:42 +02:00
ffv1.h
ffv1dec.c Merge commit 'ca09effb01' 2015-01-06 21:54:26 +01:00
ffv1enc.c lavc/ffv1enc: Auto-select -coder 1 for >8bit also for yuv. 2015-03-09 10:40:16 +01:00
ffwavesynth.c avcodec/ffwavesynth: Use av_freep() to avoid leaving stale pointers in memory 2014-12-29 14:06:26 +01:00
fic.c avcodec: fix clobbered ff_get_buffer() 2015-02-10 14:20:32 +00:00
file_open.c
flac.c
flac.h
flac_parser.c avcodec/flac_parser: fix handling EOF if no headers are found 2015-01-17 01:56:03 +01:00
flacdata.c
flacdata.h
flacdec.c avcodec/flacdec: fix off by 1 error 2014-11-26 04:11:16 +01:00
flacdsp.c x86/flacdsp: add SSE2 and AVX decorrelate functions 2014-11-13 13:47:55 -03:00
flacdsp.h x86/flacdsp: add SSE2 and AVX decorrelate functions 2014-11-13 13:47:55 -03:00
flacdsp_lpc_template.c
flacdsp_template.c
flacenc.c flacenc: initialize sums matrix 2015-01-29 17:33:38 +00:00
flashsv.c
flashsv2enc.c Fix buffer_size argument to init_put_bits() in multiple encoders. 2015-02-26 20:14:00 +01:00
flashsvenc.c Fix buffer_size argument to init_put_bits() in multiple encoders. 2015-02-26 20:14:00 +01:00
flicvideo.c
flv.h
flvdec.c
flvenc.c
fmtconvert.c Merge commit 'd74a8cb7e4' 2015-02-28 23:58:29 +01:00
fmtconvert.h Merge commit 'd74a8cb7e4' 2015-02-28 23:58:29 +01:00
frame_thread_encoder.c frame_thread_encoder: use ref-counting to avoid memcpy of all input frames 2014-12-23 01:36:13 +01:00
frame_thread_encoder.h
fraps.c
frwu.c
g2meet.c Merge commit 'bb815dfc38' 2015-04-08 20:48:44 +02:00
g722.c Merge commit '73ae0a9d12' 2015-02-16 02:07:42 +01:00
g722.h Merge commit '6769068313' 2015-02-16 01:46:35 +01:00
g722dec.c Merge commit '9abc80f1ed' 2015-02-21 11:27:24 +01:00
g722dsp.c x86/g722dsp: add ff_g722_apply_qmf_sse2 2015-02-16 00:41:21 -03:00
g722dsp.h x86/g722dsp: add ff_g722_apply_qmf_sse2 2015-02-16 00:41:21 -03:00
g722enc.c Merge commit '9abc80f1ed' 2015-02-21 11:27:24 +01:00
g723_1.c avcodec: Don't anonymously typedef structs 2015-02-14 10:13:49 -08:00
g723_1_data.h Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
g726.c Merge commit '9abc80f1ed' 2015-02-21 11:27:24 +01:00
g729.h
g729data.h
g729dec.c
g729postfilter.c
g729postfilter.h
get_bits.h avcodec/get_bits: print details of the location of the missing bit in check_marker() 2015-04-14 15:30:39 +02:00
gif.c avcodec/gif: fix off by one in column offsetting finding 2015-02-16 17:47:35 +01:00
gif.h
gifdec.c Merge commit '0b39ac6f54' 2014-12-19 13:28:57 +01:00
golomb-test.c
golomb.c
golomb.h avcodec/golomb: Fix undefined shifts in unsigned rice decoding code 2015-03-11 16:47:13 +01:00
gsm.h
gsm_parser.c
gsmdec.c
gsmdec_data.c
gsmdec_data.h
gsmdec_template.c
h261.c
h261.h
h261_parser.c
h261data.c
h261dec.c avcodec/h261dec: Fix exported MVs for skipped MBs 2015-02-01 18:48:23 +01:00
h261enc.c avcodec/h261enc: Fix number suffix 2015-02-01 19:13:38 +01:00
h263.c
h263.h Merge commit '277ff7f5dc' 2014-11-24 12:45:07 +01:00
h263_parser.c
h263_parser.h
h263data.h
h263dec.c mpeg4: use a self-explanatory #define MAX_NVOP_SIZE 2015-04-04 02:23:58 +02:00
h263dsp.c
h263dsp.h
h264.c avcodec/h264: Do not fail with randomly truncated VUIs 2015-04-10 18:35:07 +02:00
h264.h avcodec/h264: Do not fail with randomly truncated VUIs 2015-04-10 18:35:07 +02:00
h264_cabac.c avcodec/h264_cabac: Drop local_ref_count 2015-03-22 14:39:32 +01:00
h264_cavlc.c avcodec/h264_cavlc: Drop local_ref_count 2015-03-22 14:39:38 +01:00
h264_direct.c Merge commit 'a12d3188cb' 2015-03-21 23:05:34 +01:00
h264_loopfilter.c Merge commit '34d4c605e9' 2015-03-21 18:26:10 +01:00
h264_mb.c avcodec/h264_mb: assert that frame waiting code actually references 2 fields/1 frame 2015-04-04 18:34:36 +02:00
h264_mb_template.c Merge commit 'c28ed1d743' 2015-03-21 23:16:36 +01:00
h264_mc_template.c Merge commit '6490a0c0fb' 2015-03-21 17:23:10 +01:00
h264_mp4toannexb_bsf.c
h264_mvpred.h Merge commit 'bc98e8c0e0' 2015-03-21 18:03:54 +01:00
h264_parser.c avcodec/h264: Do not fail with randomly truncated VUIs 2015-04-10 18:35:07 +02:00
h264_picture.c avcodec/h264: Use only one ERContext 2015-04-09 17:42:04 +02:00
h264_ps.c avcodec/h264: Do not fail with randomly truncated VUIs 2015-04-10 18:35:07 +02:00
h264_refs.c avcodec/h264_refs: More completely clear slice contexts in ff_h264_remove_all_refs() 2015-04-04 19:30:10 +02:00
h264_sei.c
h264_slice.c h264: remove bogus YCgCo warning message 2015-04-13 13:46:38 +02:00
h264addpx_template.c
h264chroma.c
h264chroma.h
h264chroma_template.c
h264data.h h264_ps: move and export aspect_ratio 2014-11-30 04:15:40 +01:00
h264dsp.c
h264dsp.h
h264dsp_template.c avcodec/h264dsp_template: Fix undefined shifts 2015-03-15 17:30:10 +01:00
h264idct.c
h264idct.h
h264idct_template.c
h264pred.c
h264pred.h
h264pred_template.c
h264qpel.c
h264qpel.h
h264qpel_template.c
hevc.c Merge commit '7693ba0a0e' 2015-04-03 21:29:54 +02:00
hevc.h Merge commit 'c929659bdd' 2015-03-21 11:11:17 +01:00
hevc_cabac.c hevc: Use generic av_clip function, not C implementation 2015-02-13 08:37:13 +01:00
hevc_filter.c hevc/sao: use unaligned copy 2015-03-02 19:32:23 +01:00
hevc_mvs.c avcodec/hevc_mvs: Use av_clip_intp2() 2015-02-21 20:40:17 +01:00
hevc_parser.c avcodec/hevc_parser: use avpriv_find_start_code in hevc_split() 2015-03-09 18:19:10 +01:00
hevc_ps.c Merge commit 'df528b11ac' 2015-04-03 22:16:10 +02:00
hevc_refs.c avcodec/hevc_refs: Silence "Could not find ref with POC" for CRA/BLA 2015-03-21 04:09:46 +01:00
hevc_sei.c
hevcdsp.c hevcdsp: fix compilation for arm and aarch64 2015-03-12 20:01:01 +01:00
hevcdsp.h hevcdsp: ARM NEON optimized deblocking filter 2015-02-05 22:01:52 +01:00
hevcdsp_template.c avcodec/hevcdsp: add missing () to CMP macro 2015-02-16 18:56:16 -03:00
hevcpred.c
hevcpred.h
hevcpred_template.c
hnm4video.c Merge commit '16158da960' 2014-11-25 12:19:08 +01:00
hpel_template.c
hpeldsp.c
hpeldsp.h hpeldsp: Increase put_no_rnd_pixels_tab[][] size 2014-11-11 11:41:49 +01:00
hqx.c avcodec/hqx: Use av_clip_uintp2() 2015-04-10 12:38:03 +02:00
hqx.h libavcodec/hqx: multi threading support 2015-04-10 03:11:40 +02:00
hqxvlc.c Merge commit '7c60c124c8' 2015-03-17 21:18:25 +01:00
huffman.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
huffman.h
huffyuv.c
huffyuv.h
huffyuvdec.c avcodec/huffyuvdec: apply vertical filter in steps of 1 line for interlaced BGRA 2014-11-25 17:53:27 +01:00
huffyuvdsp.c
huffyuvdsp.h Include config.h from huffyuvdsp.h. 2014-11-25 02:00:27 +01:00
huffyuvenc.c
huffyuvencdsp.c
huffyuvencdsp.h
idcinvideo.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
idctdsp.c avcodec/idctdsp: use the 10bit code for 9 bit too 2014-12-20 18:33:37 +01:00
idctdsp.h
iff.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
iirfilter.c
iirfilter.h
imc.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
imcdata.h
imdct15.c Merge commit '3d5d46233c' 2015-02-02 20:43:13 +01:00
imdct15.h Merge commit '3d5d46233c' 2015-02-02 20:43:13 +01:00
imgconvert.c Merge commit '210461c0a8' 2014-12-19 05:37:26 +01:00
imgconvert.h
imx_dump_header_bsf.c Merge commit '8a9641a652' 2015-01-15 13:47:12 +01:00
indeo2.c indeo2: move variable declarations into blocks using them. 2014-11-22 14:06:48 +01:00
indeo2data.h
indeo3.c avcodec/indeo3: ensure offsets are non negative 2014-12-18 18:57:27 +01:00
indeo3data.h
indeo4.c Merge commit '23944d29a2' 2015-03-30 20:39:08 +02:00
indeo4data.h Merge commit '23944d29a2' 2015-03-30 20:39:08 +02:00
indeo5.c Merge commit '23944d29a2' 2015-03-30 20:39:08 +02:00
indeo5data.h
intelh263dec.c avcodec/intelh263dec: Use check_marker() 2015-04-15 18:53:55 +02:00
internal.h Merge commit '5637ff0121' 2015-04-05 22:35:19 +02:00
interplayvideo.c
intrax8.c
intrax8.h
intrax8dsp.c
intrax8dsp.h
intrax8huf.h
ituh263dec.c avcodec/ituh263dec: Use check_marker() 2015-04-15 03:22:27 +02:00
ituh263enc.c avcodec/ituh263enc: Check den==0 in ff_h263_aspect_to_info() 2014-12-29 15:51:36 +01:00
ivi.c Merge commit '23944d29a2' 2015-03-30 20:39:08 +02:00
ivi.h Merge commit '23944d29a2' 2015-03-30 20:39:08 +02:00
ivi_dsp.c Merge commit '23944d29a2' 2015-03-30 20:39:08 +02:00
ivi_dsp.h Merge commit '23944d29a2' 2015-03-30 20:39:08 +02:00
j2kenc.c avcodec/j2kenc: Initialize variable to silence compiler warnings 2015-03-25 15:06:36 +01:00
jacosub.h
jacosubdec.c avcodec/jacosubdec: check strftime return value 2014-12-07 15:46:17 +01:00
jfdctfst.c
jfdctint.c
jfdctint_template.c
jpeg2000.c Merge commit 'a2448cfe16' 2014-11-13 15:20:40 +01:00
jpeg2000.h
jpeg2000dec.c Support YA16 in jpeg 2000. 2015-02-01 16:18:39 +01:00
jpeg2000dsp.c
jpeg2000dsp.h
jpeg2000dwt.c
jpeg2000dwt.h
jpegls.c
jpegls.h
jpeglsdec.c avcodec/jpeglsdec: support PAL1-PAL7 2015-03-22 20:31:03 +01:00
jpeglsdec.h
jpeglsenc.c Merge commit 'e6e3dcba0c' 2015-03-30 21:05:23 +02:00
jpegtables.c Merge commit '4978850ca2' 2015-03-31 01:11:02 +02:00
jpegtables.h Merge commit '4978850ca2' 2015-03-31 01:11:02 +02:00
jrevdct.c
jvdec.c Merge commit '88626e5af8' 2014-12-19 13:04:03 +01:00
kbdwin.c
kbdwin.h
kgv1dec.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
kmvc.c
lagarith.c avcodec/lagarith: fix integer overflow 2014-11-11 03:19:49 +01:00
lagarithrac.c
lagarithrac.h
latm_parser.c
lcl.h
lcldec.c avcodec/lcldec: support rgb24 with width%4 != 0 2014-11-17 21:06:31 +01:00
lclenc.c Merge commit 'ac467d94fa' 2014-12-19 04:44:08 +01:00
libaacplus.c avcodec/libaacplus: Check for av_malloc() failure 2015-02-22 14:00:53 +01:00
libavcodec.v
libcelt_dec.c
libdcadec.c avcodec/libdcadec: honor AVCodecContext bitexact flag 2015-04-09 22:37:39 -03:00
libfaac.c
libfdk-aacdec.c avcodec/libfdk-aacdec: Change conceal_method to int, its accessed via AVOption as int 2015-03-02 04:08:09 +01:00
libfdk-aacenc.c
libgsmdec.c
libgsmenc.c
libilbc.c
libmp3lame.c avcodec/libmp3lame: use av_malloc_array() 2015-01-17 12:56:19 +01:00
libopencore-amr.c
libopenh264enc.c Merge commit '58a840e215' 2015-03-18 01:09:35 +01:00
libopenjpegdec.c acvodec/lipopenjpeg: Fix pixel value shift for 12-bit pixel formats 2015-03-03 23:20:51 +01:00
libopenjpegenc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
libopus.c
libopus.h
libopusdec.c
libopusenc.c avcodec/libopusenc: Use av_mallocz_array() 2015-01-17 12:58:56 +01:00
libschroedinger.c libschroedinger: Check memory allocations 2015-02-22 22:32:18 +00:00
libschroedinger.h
libschroedingerdec.c Merge commit 'e570f895cd' 2015-02-23 11:42:16 +01:00
libschroedingerenc.c Merge commit 'e570f895cd' 2015-02-23 11:42:16 +01:00
libshine.c
libspeexdec.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
libspeexenc.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
libstagefright.cpp
libtheoraenc.c Merge commit '17c45d4d05' 2015-03-12 21:41:55 +01:00
libtwolame.c libtwolame: prevent a NULL pointer dereference 2014-11-21 12:27:07 +00:00
libutvideo.h
libutvideodec.cpp
libutvideoenc.cpp avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
libvo-aacenc.c avcodec/libvo-aacenc: Use av_mallocz_array() 2015-01-11 13:32:55 +01:00
libvo-amrwbenc.c
libvorbisdec.c lavc/libvorbisdec: use better error codes 2014-11-23 03:33:00 +01:00
libvorbisenc.c avcodec/libvorbisenc: Give CODEC_CAP_SMALL_LAST_FRAME to libvorbis encoder. 2014-11-18 20:23:08 +01:00
libvpx.c
libvpx.h
libvpxdec.c
libvpxenc.c avcodec/libvpxenc: Set min/max quantizer to 0 for lossless mode 2015-03-20 19:22:33 +01:00
libwavpackenc.c
libwebpenc.c
libx264.c x264: Map color parameters 2015-04-15 09:48:47 +02:00
libx265.c Merge commit 'ec89f35e3e' 2015-04-15 11:57:38 +02:00
libxavs.c avcodec/libxavs: fix division by 0 bitrate 2014-12-11 13:25:10 +01:00
libxvid.c libxvid: Return meaningful error messages 2015-02-17 12:18:20 -05:00
libxvid.h
libxvid_rc.c Merge commit 'a1e2c47cd4' 2015-02-17 23:13:12 +01:00
libzvbi-teletextdec.c
ljpegenc.c Merge commit '4978850ca2' 2015-03-31 01:11:02 +02:00
loco.c avcodec/loco: check the init_get_bits8() return code 2014-12-31 15:42:17 +01:00
log2_tab.c
lossless_audiodsp.c
lossless_audiodsp.h lavc/lossless_audiodsp: revert various commits 2015-02-07 15:15:19 +01:00
lossless_videodsp.c
lossless_videodsp.h
lpc.c lpc: Reduce stack usage by allocating LLSModel in context. 2014-11-23 06:51:18 +01:00
lpc.h lpc: remove unneeded {} 2014-11-25 02:00:06 +00:00
lsp.c
lsp.h
lzw.c
lzw.h
lzwenc.c
mace.c
Makefile avcodec: add unpack packed B-frames bitstream filter 2015-04-05 02:24:56 +02:00
mathops.h avcodec/vc1_mc: move median4() to mathops.h 2015-02-16 11:41:00 +01:00
mathtables.c
mdct_fixed.c
mdct_fixed_32.c
mdct_float.c
mdct_template.c
mdec.c Merge commit '161442ff2c' 2015-02-23 21:19:00 +01:00
me_cmp.c avcodec/me_cmp: add () to protect avg*s arguments 2015-02-16 23:13:00 +01:00
me_cmp.h Merge commit '9c12c6ff95' 2014-11-24 12:13:00 +01:00
metasound.c
metasound_data.c avcodec/metasound_data: remove unused variable lsp16s 2015-03-20 22:33:15 +01:00
metasound_data.h
microdvddec.c avcodec/microdvddec: support non persistent italic marker '/' 2014-11-23 13:13:38 +01:00
mimic.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
mjpeg.h Merge commit '4978850ca2' 2015-03-31 01:11:02 +02:00
mjpeg2jpeg_bsf.c Merge commit '4978850ca2' 2015-03-31 01:11:02 +02:00
mjpeg_parser.c
mjpega_dump_header_bsf.c Merge commit '8a9641a652' 2015-01-15 13:47:12 +01:00
mjpegbdec.c Merge commit '5a0e953c24' 2015-03-13 22:48:54 +01:00
mjpegdec.c Merge commit '4978850ca2' 2015-03-31 01:11:02 +02:00
mjpegdec.h avcodec/mjpegdec: Change upscale_* to an array instead of a bitmask 2015-03-18 23:13:44 +01:00
mjpegenc.c Merge commit '4978850ca2' 2015-03-31 01:11:02 +02:00
mjpegenc.h Merge commit '87f87ccf32' 2015-03-31 00:48:04 +02:00
mjpegenc_common.c Merge commit '4978850ca2' 2015-03-31 01:11:02 +02:00
mjpegenc_common.h
mlp.c
mlp.h mlpdec: support TrueHD streams with an Atmos substream 2015-03-11 16:06:40 +01:00
mlp_parser.c mlpdec: support major sync headers with optional extension blocks 2015-03-11 16:03:13 +01:00
mlp_parser.h mlpdec: support major sync headers with optional extension blocks 2015-03-11 16:03:13 +01:00
mlpdec.c mlpdec: support TrueHD streams with an Atmos substream 2015-03-11 16:06:40 +01:00
mlpdsp.c
mlpdsp.h
mmaldec.c Merge commit '49e531ff47' 2015-04-14 13:40:58 +02:00
mmvideo.c Merge commit '17ba719d9b' 2014-12-19 13:05:49 +01:00
motion-test.c
motion_est.c avcodec/motion_est: remove unneeded #include, there are no assert() only av_assert* 2015-02-01 11:15:20 +00:00
motion_est_template.c
motionpixels.c Merge commit '9abc80f1ed' 2015-02-21 11:27:24 +01:00
motionpixels_tablegen.c
motionpixels_tablegen.h
movsub_bsf.c Merge commit '8a9641a652' 2015-01-15 13:47:12 +01:00
movtextdec.c
movtextenc.c
mp3_header_decompress_bsf.c
mpc.c
mpc.h
mpc7.c
mpc7data.h
mpc8.c
mpc8data.h
mpc8huff.h
mpcdata.h
mpeg4_unpack_bframes_bsf.c avcodec: add unpack packed B-frames bitstream filter 2015-04-05 02:24:56 +02:00
mpeg4audio.c Merge commit '7e4e010b80' 2015-01-09 20:51:17 +01:00
mpeg4audio.h Merge commit 'd615187f74' 2015-02-04 13:49:17 +01:00
mpeg4data.h
mpeg4video.c
mpeg4video.h mpeg4: use a self-explanatory #define MAX_NVOP_SIZE 2015-04-04 02:23:58 +02:00
mpeg4video_parser.c avcodec/mpeg4video_parser: fix spurious extradata parse warnings 2014-11-15 17:30:44 +01:00
mpeg4video_parser.h
mpeg4videodec.c avcodec/mpeg4videodec: Improve wording of the missing header warning messages 2015-04-14 14:41:11 +02:00
mpeg4videoenc.c
mpeg12.c avcodec/mpeg12: Try to fetch pts/dts from both the packet associated with the picture start code as well as earlier start codes 2015-01-07 13:25:09 +01:00
mpeg12.h
mpeg12data.c
mpeg12data.h
mpeg12dec.c avcodec/mpeg12dec: Use check_marker() 2015-04-14 15:30:39 +02:00
mpeg12enc.c mpeg12enc: increase declared size of block function argument 2014-11-11 11:26:02 +01:00
mpeg_er.c
mpeg_er.h
mpegaudio.c
mpegaudio.h
mpegaudio_parser.c Merge commit '5cbae5651d' 2015-02-22 01:08:28 +01:00
mpegaudio_tablegen.c
mpegaudio_tablegen.h
mpegaudiodata.c
mpegaudiodata.h
mpegaudiodec_fixed.c
mpegaudiodec_float.c avcodec/mpegaudiodec_float: Use avpriv_float_dsp_alloc() 2014-12-03 14:52:38 +01:00
mpegaudiodec_template.c avcodec/mpegaudiodec_template: only allocate fdsp when its used 2014-12-05 04:27:49 +01:00
mpegaudiodecheader.c mpegaudio_parser: add MP3 ADU headers parser 2015-02-21 23:37:42 +02:00
mpegaudiodecheader.h
mpegaudiodectab.h
mpegaudiodsp.c
mpegaudiodsp.h
mpegaudiodsp_data.c
mpegaudiodsp_fixed.c
mpegaudiodsp_float.c
mpegaudiodsp_template.c
mpegaudioenc_fixed.c
mpegaudioenc_float.c
mpegaudioenc_template.c
mpegaudiotab.h
mpegutils.c
mpegutils.h
mpegvideo.c avcodec/mpegvideo: support mbskip_table==NULL in ff_print_debug_info2() 2015-03-21 19:28:56 +01:00
mpegvideo.h rv10: check size of s->mb_width * s->mb_height 2015-03-05 14:49:16 +01:00
mpegvideo_enc.c Merge commit 'a72d93daa0' 2015-03-12 21:30:37 +01:00
mpegvideo_motion.c avcodec/mpegvideo_motion: Fix undefined shifts in mpeg_motion_internal() 2015-03-11 19:12:38 +01:00
mpegvideo_parser.c avcodec/mpegvideo_parser: Check the ff_set_dimensions() return code 2015-01-18 05:08:30 +01:00
mpegvideo_xvmc.c
mpegvideodsp.c
mpegvideodsp.h
mpegvideoencdsp.c
mpegvideoencdsp.h
mpl2dec.c
mqc.c
mqc.h
mqcdec.c
mqcenc.c
msgsmdec.c
msgsmdec.h
msmpeg4.c
msmpeg4.h
msmpeg4data.c
msmpeg4data.h
msmpeg4dec.c
msmpeg4enc.c Merge commit '1c6183233d' 2015-01-07 00:13:24 +01:00
msrle.c
msrledec.c avcodec/msrledec: More verbose error message 2015-03-24 16:07:57 +01:00
msrledec.h
mss1.c lavc/mss1: fix mem leak in case of init failure 2014-11-23 20:52:38 +01:00
mss2.c
mss2dsp.c
mss2dsp.h
mss3.c
mss4.c avcodec/mss4: check return value of init_get_bits8() 2015-02-24 13:17:34 +00:00
mss12.c avcodec/mss12: Use av_malloc_array() 2015-01-17 13:01:26 +01:00
mss12.h
mss34dsp.c
mss34dsp.h
msvideo1.c
msvideo1enc.c
mvcdec.c
mxpegdec.c Merge commit '5a0e953c24' 2015-03-13 22:48:54 +01:00
nellymoser.c
nellymoser.h
nellymoserdec.c Merge commit 'ee964145b5' 2015-02-28 23:41:36 +01:00
nellymoserenc.c Fix buffer_size argument to init_put_bits() in multiple encoders. 2015-02-26 20:14:00 +01:00
noise_bsf.c bsf: check memory allocations 2015-01-15 01:25:16 +01:00
nuv.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
nvenc.c avcodec/nvenc: Add options for level and tier 2015-04-09 18:20:26 +02:00
old_codec_ids.h
on2avc.c avcodec: fix clobbered ff_get_buffer() 2015-02-10 14:20:32 +00:00
on2avcdata.c
on2avcdata.h
options.c lavc/options: add test for avcodec_copy_context 2014-12-08 23:14:29 +01:00
options_table.h avcodec/options_table: remove extradata_size from the AVOptions table 2015-03-09 17:43:25 +01:00
opus.c mpegts: add support for Opus 2014-12-20 11:29:19 +01:00
opus.h mpegts: add support for Opus 2014-12-20 11:29:19 +01:00
opus_celt.c Merge commit '9abc80f1ed' 2015-02-21 11:27:24 +01:00
opus_parser.c opus_parser: drop unused variable 2015-01-15 01:25:16 +01:00
opus_silk.c Merge commit '9abc80f1ed' 2015-02-21 11:27:24 +01:00
opusdec.c avcodec/opusdec: Fix delayed sample value 2015-03-07 21:39:23 +01:00
paf.h
pafaudio.c
pafvideo.c
pamenc.c lavc/pamenc: Support encoding ya16be. 2015-01-22 01:47:54 +01:00
parser.c Merge commit '31d2039cb4' 2015-02-19 20:39:04 +01:00
parser.h avcodec/parser: add fuzzy mode to ff_fetch_timestamp() 2015-01-07 11:52:08 +01:00
pcm-bluray.c
pcm-dvd.c
pcm.c
pcm_tablegen.c
pcm_tablegen.h
pcx.c
pcxenc.c Merge commit 'f3b74d944b' 2015-03-05 02:17:01 +01:00
pel_template.c
pgssubdec.c avcodec/pgssubdec: Use av_malloc*_array() 2015-01-11 13:41:14 +01:00
pictordec.c
pixblockdsp.c
pixblockdsp.h
pixblockdsp_template.c
pixels.h
png.c
png.h
png_parser.c png_parser: fix size of chunk_lenght 2014-11-11 11:49:54 +01:00
pngdec.c Merge commit '1e76345432' 2015-01-15 02:54:04 +01:00
pngdsp.c
pngdsp.h pngdsp x86: use unaligned access 2014-12-03 11:56:22 +01:00
pngenc.c avcodec/pngenc: don't return a value in a void function 2015-04-02 23:22:28 +02:00
pnm.c lavc/pnm: Support decoding ya16. 2015-01-22 01:49:04 +01:00
pnm.h
pnm_parser.c
pnmdec.c lavc/pnm: Support decoding ya16. 2015-01-22 01:49:04 +01:00
pnmenc.c
proresdata.c
proresdata.h
proresdec.h
proresdec2.c
proresdec_lgpl.c Merge commit 'dbc1163b20' 2015-03-02 20:01:28 +01:00
proresdsp.c
proresdsp.h
proresenc_anatoliy.c lavc: use LOCAL_ALIGNED instead of DECLARE_ALIGNED 2015-03-14 20:36:43 +01:00
proresenc_kostya.c avcodec/proresenc_kostya: fix coded_frame handling 2015-03-02 22:52:49 +01:00
psymodel.c
psymodel.h
pthread.c
pthread_frame.c avcodec/pthread_frame: Fix memleak with frame threads and allocated AVOptions 2015-04-06 18:43:38 +02:00
pthread_internal.h
pthread_slice.c lavc/pthread_slice: release entries 2015-02-24 12:07:20 +01:00
ptx.c
put_bits.h avcodec/put_bits: remove unneeded #include, there are no assert() 2015-02-01 11:15:20 +00:00
qcelpdata.h
qcelpdec.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
qdm2.c Merge commit 'f3e045263e' 2015-02-17 23:26:56 +01:00
qdm2_tablegen.c qdm2: Allow hard-coding VLC tables. 2014-12-18 23:51:07 +01:00
qdm2_tablegen.h qdm2: Allow hard-coding VLC tables. 2014-12-18 23:51:07 +01:00
qdm2data.h
qdrw.c
qpeg.c qpeg: avoid pointless invalid memcpy() 2015-01-13 17:27:45 +01:00
qpel_template.c
qpeldsp.c
qpeldsp.h
qsv.c Merge commit 'd0a63d8b98' 2015-03-28 01:16:21 +01:00
qsv.h Merge commit '4e08c82110' 2015-02-19 21:12:04 +01:00
qsv_api.c Merge commit '0fbb271318' 2015-02-19 21:12:33 +01:00
qsv_internal.h avcodec/qsv_internal: Fix project name 2015-03-28 03:44:19 +01:00
qsvdec.c Merge commit '9ba27c2348' 2015-03-28 01:25:20 +01:00
qsvdec.h Merge commit '72b7441a10' 2015-03-28 01:33:27 +01:00
qsvdec_h264.c Merge commit '9ba27c2348' 2015-03-28 01:25:20 +01:00
qsvenc.c Merge commit '72b7441a10' 2015-03-28 01:33:27 +01:00
qsvenc.h Merge commit '72b7441a10' 2015-03-28 01:33:27 +01:00
qsvenc_h264.c Merge commit '72b7441a10' 2015-03-28 01:33:27 +01:00
qtrle.c
qtrleenc.c
r210dec.c Handle r10k endianess atom DpxE. 2015-01-11 12:15:03 +01:00
r210enc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
ra144.c
ra144.h
ra144dec.c
ra144enc.c
ra288.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
ra288.h
ralf.c
ralfdata.h
rangecoder.c
rangecoder.h
ratecontrol.c avcodec/ratecontrol: replace asserts by av_asserts 2015-01-31 01:48:21 +01:00
ratecontrol.h
raw.c
raw.h
rawdec.c avcodec/rawdec: Check the return code of avpicture_get_size() 2014-11-26 19:01:17 +01:00
rawenc.c
rdft.c
rdft.h
realtextdec.c
rectangle.h
remove_extradata_bsf.c
resample.c
resample2.c
rl.h
rl2.c avcodec/rl2: clear freed pointers 2014-11-16 23:48:38 +01:00
rle.c
rle.h
rnd_avg.h
roqaudioenc.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
roqvideo.c
roqvideo.h
roqvideodec.c
roqvideoenc.c roqvideoenc: set enc->avctx in roq_encode_init 2015-03-11 20:28:13 +01:00
rpza.c
rtjpeg.c
rtjpeg.h
rv10.c
rv10enc.c Merge commit '66624ed631' 2015-03-05 19:43:25 +01:00
rv20enc.c
rv30.c lavc/rv30: fix mem leak in case of init failure 2014-11-23 20:53:17 +01:00
rv30data.h
rv30dsp.c
rv34.c
rv34.h
rv34_parser.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
rv34data.h
rv34dsp.c
rv34dsp.h
rv34vlc.h
rv40.c Merge commit '0f532fd3f9' 2015-02-19 10:54:07 +01:00
rv40data.h
rv40dsp.c
rv40vlc2.h
s3tc.c
s3tc.h
s302m.c
s302menc.c Fix buffer_size argument to init_put_bits() in multiple encoders. 2015-02-26 20:14:00 +01:00
samidec.c avcodec/samidec: make sure to properly restore parsing context after a tag 2015-03-06 20:39:45 +01:00
sanm.c
sbr.h
sbrdsp.c
sbrdsp.h
sgi.h
sgidec.c
sgienc.c avcodec/sgienc: return meaningful error code 2015-02-09 14:07:54 +00:00
sgirledec.c
shorten.c avcodec/shorten: use av_reallocp_array() 2015-01-12 23:46:50 +01:00
simple_idct.c
simple_idct.h
simple_idct_template.c
sinewin.c
sinewin.h
sinewin_tablegen.c
sinewin_tablegen.h
sipr.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
sipr.h
sipr16k.c
sipr16kdata.h
siprdata.h
smacker.c lavc/smacker: fix mem leak in case of init failure 2014-11-23 03:25:34 +01:00
smc.c Merge commit 'd423dd72be' 2014-12-19 13:30:55 +01:00
smvjpegdec.c lavc/smvjpegdec: Avoid null dereference and return meaningful error codes 2015-04-01 19:33:45 +02:00
snow.c avcodec/snow: fix support for odd dimensions 2015-03-22 23:34:53 +01:00
snow.h avcodec/snowdec: AVMotionVector support 2015-01-20 01:16:25 +01:00
snow_dwt.c avcodec/snow: mark dwt init as av_cold 2015-02-27 16:53:37 +01:00
snow_dwt.h Include stddef from snow_dwt.h. 2014-11-25 02:00:27 +01:00
snowdata.h
snowdec.c avcodec/snowdec: Fix ref value check 2015-02-24 03:15:42 +01:00
snowenc.c avcodec/snowenc: Check av_frame_ref() return value 2015-03-31 04:33:50 +02:00
sonic.c
sp5x.h
sp5xdec.c Merge commit '5a0e953c24' 2015-03-13 22:48:54 +01:00
srtdec.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
srtenc.c
startcode.c
startcode.h
subviewerdec.c
sunrast.c avcodec/sunrast: Use av_malloc_array() 2015-01-14 13:35:11 +01:00
sunrast.h
sunrastenc.c Merge commit '4dda5e9b08' 2014-11-13 13:31:08 +01:00
svq1.c
svq1.h
svq1_cb.h
svq1_vlc.h
svq1dec.c avcodec/svq1dec: Fix undefined shifts 2015-03-13 11:55:45 +01:00
svq1enc.c Merge commit '6f7a32839d' 2015-02-03 22:40:46 +01:00
svq1enc.h svq1enc: reduce stack usage of recursively-called function. 2014-11-23 06:51:18 +01:00
svq1enc_cb.h
svq3.c Merge commit '249796e256' 2015-04-06 01:41:00 +02:00
svq3.h
svq13.c
synth_filter.c
synth_filter.h
tableprint.h qdm2: Allow hard-coding VLC tables. 2014-12-18 23:51:07 +01:00
tableprint_vlc.h qdm2: Allow hard-coding VLC tables. 2014-12-18 23:51:07 +01:00
tak.c
tak.h
tak_parser.c avcodec/tak_parser: use init_get_bits8() 2015-02-04 09:45:41 +00:00
takdec.c Revert "takdec: pad filter coeff buffer for DSP functions" 2015-02-23 18:22:37 -03:00
targa.c
targa.h
targa_y216dec.c
targaenc.c
tdsc.c avcodec/tdsc: Remove ;; 2015-03-16 13:04:47 +01:00
textdec.c
thread.h
tiertexseqv.c
tiff.c avcodec/tiff: move bpp check to after "end:" 2015-03-08 23:36:46 +01:00
tiff.h
tiff_common.c
tiff_common.h
tiff_data.c
tiff_data.h
tiffenc.c tiff: Return more meaningful error codes 2015-03-30 19:34:26 +02:00
tmv.c
tpeldsp.c
tpeldsp.h
truemotion1.c
truemotion1data.h
truemotion2.c avcodec/truemotion2: Use av_freep() to avoid leaving stale pointers in memory 2014-11-19 13:44:30 +01:00
truespeech.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
truespeech_data.h
tscc.c lavc/tscc: Make 32bit output opaque. 2015-02-06 21:02:08 +01:00
tscc2.c
tscc2data.h
tta.c avcodec/tta: Use av_freep() to avoid leaving stale pointers in memory 2014-11-19 13:44:39 +01:00
ttadata.c
ttadata.h
ttadsp.c
ttadsp.h
ttaenc.c
twinvq.c avcodec/twinvq: Use avpriv_float_dsp_alloc() 2014-11-29 19:22:54 +01:00
twinvq.h Merge commit 'b8d18a9437' 2015-02-20 22:24:43 +01:00
twinvq_data.h
twinvqdec.c avcodec/twinvqdec: use init_get_bits8() 2015-02-07 15:19:03 +00:00
txd.c
ulti.c Merge commit 'ed97963bdb' 2015-01-07 00:05:04 +01:00
ulti_cb.h
unary.h
utils.c lavc: use correct type for printf() argument 2015-04-14 21:45:07 +02:00
utvideo.c
utvideo.h
utvideodec.c utvideodec: Handle slice_height being zero 2015-03-09 00:51:15 +01:00
utvideoenc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
v210dec.c avcodec/v210dec: Add ff prefix to v210_x86_init() 2015-02-27 19:08:09 +01:00
v210dec.h avcodec/v210dec: Add ff prefix to v210_x86_init() 2015-02-27 19:08:09 +01:00
v210enc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
v210enc.h Merge commit 'f8fd0c29ce' 2015-04-09 20:09:10 +02:00
v210x.c
v308dec.c
v308enc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
v408dec.c
v408enc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
v410dec.c
v410enc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
vaapi.c Merge commit 'bab8d73765' 2014-12-15 13:03:01 +01:00
vaapi.h
vaapi_h264.c vaapi_h264: fix slice data offset 2015-03-23 20:53:29 +00:00
vaapi_internal.h
vaapi_mpeg2.c
vaapi_mpeg4.c
vaapi_vc1.c
vb.c avcodec/vb: Check for av_mallocz() failure 2015-02-09 09:27:16 +01:00
vble.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
vc1.c avcodec/vc1: Fix undefined shifts 2015-03-15 02:57:24 +01:00
vc1.h
vc1_block.c avcodec/vc1_block: Optimize vc1_decode_i_block_adv() 2015-02-28 17:06:10 +01:00
vc1_common.h avcodec/vc1: simplify find_next_marker() 2015-02-13 14:01:45 +01:00
vc1_loopfilter.c vc1: Use the correct shift amount 2014-11-25 02:00:06 +00:00
vc1_mc.c avcodec/vc1_mc: optimize get_chroma_mv, and add get_luma_mv 2015-03-08 03:04:32 +01:00
vc1_parser.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
vc1_pred.c avcodec/vc1_pred: Fix undefined shifts 2015-03-17 01:51:59 +01:00
vc1_pred.h
vc1acdata.h
vc1data.c
vc1data.h
vc1dec.c avcodec/vc1dec: Check buf2 for malloc failure 2015-04-06 15:06:42 +02:00
vc1dsp.c avcodec/vc1dsp: add () to protect the arguments of the op* macros 2015-02-17 00:02:40 +01:00
vc1dsp.h
vcr1.c
vda.c
vda.h
vda_h264.c avcodec/vda_h264: try to fix build 2015-04-02 16:04:22 +02:00
vda_h264_dec.c
vda_internal.h
vdpau.c Merge commit '95eb35f305' 2015-03-21 15:18:10 +01:00
vdpau.h Merge commit 'c220a60f92' 2014-12-27 13:06:25 +01:00
vdpau_h264.c Merge commit '95eb35f305' 2015-03-21 15:18:10 +01:00
vdpau_internal.h Merge commit 'ecbcebde34' 2015-02-14 22:59:16 +01:00
vdpau_mpeg4.c
vdpau_mpeg12.c Merge commit 'ecbcebde34' 2015-02-14 22:59:16 +01:00
vdpau_vc1.c
version.h avcodec: add unpack packed B-frames bitstream filter 2015-04-05 02:24:56 +02:00
videodsp.c
videodsp.h
videodsp_template.c avcodec/videodsp_template: remove unneeded #include, there are no assert() only av_assert* 2015-01-30 15:32:11 +00:00
vima.c lavc: deprecate VIMA decoder 2015-02-14 12:48:41 +00:00
vmdaudio.c
vmdvideo.c avcodec/vmdvideo: Check len before using it in method 3 2014-12-16 16:27:45 +01:00
vmnc.c
vorbis.c
vorbis.h
vorbis_data.c
vorbis_enc_data.h
vorbis_parser.c vorbis: parse out setup headers as well 2015-02-02 03:11:49 +01:00
vorbis_parser.h vorbis: parse out setup headers as well 2015-02-02 03:11:49 +01:00
vorbis_parser_internal.h
vorbisdec.c Merge commit '0025f7408a' 2015-03-08 19:31:25 +01:00
vorbisdsp.c
vorbisdsp.h
vorbisenc.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
vp3.c avcodec/vp3: pass correct context to av_log() 2015-02-06 00:34:09 +01:00
vp3_parser.c
vp3data.h
vp3dsp.c
vp3dsp.h
vp5.c
vp5data.h
vp6.c avcodec/vp6: Use av_freep(), avoid leaving stale pointers 2014-11-21 18:03:27 +01:00
vp6data.h
vp6dsp.c
vp8.c lavc: use LOCAL_ALIGNED instead of DECLARE_ALIGNED 2015-03-14 20:36:43 +01:00
vp8.h
vp8_parser.c
vp8data.h
vp8dsp.c
vp8dsp.h
vp9.c vp9: make above buffer pointer 32-byte aligned. 2015-03-21 17:13:46 -03:00
vp9.h vp9: Use the correct upper bound for seg_id 2014-11-21 12:37:05 +00:00
vp9_parser.c vp9: assign PTS to visible instead of invisible frames 2015-02-05 21:16:26 +01:00
vp9data.h
vp9dsp.c vp9/x86: invert hu_ipred left array ordering. 2014-12-19 14:07:18 +01:00
vp9dsp.h
vp56.c avcodec/vp56: Add () to protect TRANSPOSE()s arguments 2015-02-17 19:13:26 +01:00
vp56.h
vp56data.c
vp56data.h
vp56dsp.c
vp56dsp.h
vp56rac.c
vqavideo.c
wavpack.c
wavpack.h avcodec/wavpack: Add () to protect the arguments of UPDATE_WEIGHT_CLIP() 2015-02-18 01:49:35 +01:00
wavpackenc.c avcodec/wavpackenc: remove unneeded L suffixes 2015-02-02 13:34:31 +01:00
wavpackenc.h
webp.c webp: ensure that each transform is only used once 2015-03-19 21:03:13 +01:00
webvttdec.c
webvttenc.c
wma.c avcodec/wma: Fix undefined shift in ff_wma_run_level_decode() 2015-03-11 15:27:54 +01:00
wma.h Merge commit 'db5cc75f8b' 2015-03-04 01:23:54 +01:00
wma_common.c
wma_common.h
wma_freqs.c
wma_freqs.h
wmadata.h
wmadec.c avcodec/wmadec: Fix undefined shift in wma_decode_block() 2015-03-14 17:32:12 +01:00
wmaenc.c avcodec/wmaenc: Check extradata allocations 2015-02-22 21:23:39 +01:00
wmalosslessdec.c avcodec/wmalosslessdec: use sizeof() instead of a literal number 2015-02-19 03:14:50 +01:00
wmaprodata.h
wmaprodec.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
wmavoice.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
wmavoice_data.h
wmv2.c
wmv2.h avcodec/wmv2: simplify cbp_table_index calculation 2015-02-13 15:55:12 +01:00
wmv2dec.c Merge commit '42c8f92e2f' 2015-02-17 23:34:36 +01:00
wmv2dsp.c
wmv2dsp.h
wmv2enc.c avcodec/wmv2: simplify cbp_table_index calculation 2015-02-13 15:55:12 +01:00
wnv1.c avcodec/wnv1: use init_get_bits8() 2015-02-04 09:45:41 +00:00
ws-snd1.c
xan.c avcodec/xan: Use av_realloc_array() 2015-01-19 17:12:09 +01:00
xbmdec.c
xbmenc.c
xface.c avcodec/xface: Add asserts to limit nb_words from becoming too large 2014-12-16 19:19:35 +01:00
xface.h avcodec/xface: correct the XFACE_MAX_* values 2014-12-16 19:19:28 +01:00
xfacedec.c
xfaceenc.c Replace PixelFormats which sneaked in over time or where forgotten by AVPixelFormats 2015-03-18 01:18:40 +01:00
xiph.c avcodec/xiph: mark returned header pointers const from avpriv_split_xiph_headers() 2014-12-14 14:30:45 +01:00
xiph.h avcodec/xiph: mark returned header pointers const from avpriv_split_xiph_headers() 2014-12-14 14:30:45 +01:00
xl.c
xsubdec.c avcodec/xsubdec: Check av_mallocz() return codes 2015-01-19 17:15:15 +01:00
xsubenc.c
xvididct.c
xvididct.h
xvmc.h
xvmc_internal.h
xwd.h
xwddec.c
xwdenc.c
xxan.c
y41pdec.c
y41penc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
yop.c
yuv4dec.c
yuv4enc.c avcodec: use av_frame_free() for coded_frame 2015-03-02 21:27:21 +01:00
zerocodec.c Merge commit '7f9f771eac' 2015-02-14 21:18:17 +01:00
zmbv.c avcodec/zmbv: Check len before reading in decode_frame() 2015-02-25 12:30:04 +01:00
zmbvenc.c