Loren Merritt
e2e5894a91
deblocking filter doesn't need to call fill_caches again. 1.4% faster decoding.
...
Originally committed as revision 4147 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
dff0f03546
mpeg2_fast_decode_block_intra()
...
Originally committed as revision 4146 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
8b39f75b8f
simplify
...
Originally committed as revision 4144 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
ee572c5482
remove duplicate clip to 8bit function
...
Originally committed as revision 4143 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
f707a5ebba
buffer overflows
...
Originally committed as revision 4142 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
856dbbff7f
Indeo 2 decoder by (Kostya <> kostya.shishkov gmail com)
...
Originally committed as revision 4141 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
29df259923
optimizing non_intra ac coeff decode
...
Originally committed as revision 4140 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Mike Melanson
6f921f3100
remove superfluous CONFIG_ENCODERS (entire function is already wrapped)
...
Originally committed as revision 4139 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
e91f4bf160
avoid UPDATE_CACHE() in GET_RL_VLC() if not needed
...
Originally committed as revision 4137 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
5bb8a0daa1
various fixes related to the non alt_bitstream_reader
...
Originally committed as revision 4136 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Aurelien Jacobs
8230cf0210
add an AMD64 specific implementation of rdtsc()
...
Originally committed as revision 4135 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Bret Hughes
6c618a263d
gcc 4 compilation fix
...
patch by Bret Hughes <bhughes at elevating dot com>
Originally committed as revision 4134 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
4e492bf107
read 32bit instead of 64bit to avoid overreading and missalignments
...
Originally committed as revision 4133 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Yartrebo
8c2515bbb9
fix overflow in mc_block() patch by (Yartrebo )yartrebo earthlink net
...
Originally committed as revision 4132 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
b44985ba12
store the number of runs to avoid storing the last run value
...
about 10% lower bitrate for -qscale 32 (forman & some music video)
worst case bitrate increase <0.1% (lossless or low qscale)
and now the bad news, even though this just adds a single subtraction and an if() into the medium sized unpack_coeffs() loop and the if() will only be false once per unpac_coeff() call, gcc produces 50% slower code, i didnt look at the generated asm yet, not sure if i want to ...
Originally committed as revision 4131 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Loren Merritt
2cd340438a
allow 2pass ratecontrol. also fixes psnr displayed by mencoder.
...
Originally committed as revision 4130 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
cbb1d2b161
replace complicated pointer dereference + index stuff by pointers in unpack_coeffs()
...
Originally committed as revision 4129 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
99cd59e58f
minor optimization
...
Originally committed as revision 4128 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
3c096ac791
optimizing unpack_coeffs()
...
Originally committed as revision 4127 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Yartrebo
86e59cc01d
Snow segfault bug in revision 1.43 patch by (Yartrebo /yartrebo earthlink net/)
...
Originally committed as revision 4126 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Måns Rullgård
f40487c282
s/u_char/uint8_t/
...
Originally committed as revision 4124 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
f5a719287d
rescale coefficients during IDWT, that way the lifting steps are much simpler and faster
...
Originally committed as revision 4119 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
a0a74ad9f0
increasing precission of the quantization parameter
...
this is needed as the quantization stepsize for each subband is also in this precission and insignificant changes to the wavelet like scaling its coefficients slightly differently would lead to wildly variing PSNR and bitrate
note, a encoder could also simply choose to leave the least significant bits of the quantization parameters zero which would give the exact previous behaviour except a y very tiny number of bits in the header
Originally committed as revision 4115 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
c97de57c39
fix QROOT != 8
...
Originally committed as revision 4114 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Jindřich Makovička
a18ba90880
Fix upside-down picture for BGR24 images (fixes pig-loco-rgb.avi)
...
Patch by Jindrich Makovicka
Originally committed as revision 4112 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Roberto Togni
76d6abc17c
Fix colors for YV12 case (u/v planes are swapped)
...
Fixes locoRGBA.avi (the file is really YV12, even if it's called RGBA)
Originally committed as revision 4111 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Loïc Le Loarer
debc2adb16
CABAC support for MBAFF I frames patch by (Loïc Le Loarer < lll+ffmpeg m4x org)
...
This patch corrects the support for I slice in CABAC and MBAFF mode.
This decodes correctly 6 more frames of the conformance suite.
Originally committed as revision 4109 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
538a38418c
10% faster unpack_coeffs
...
Originally committed as revision 4108 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
3cff4572ce
fixing lossless snow
...
Originally committed as revision 4107 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Loïc Le Loarer
826de46ea3
CABAC support for MBAFF I frames patch by (Loïc Le Loarer | lll+ffmpeg m4x org)
...
Originally committed as revision 4106 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Benjamin Larsson
0979831511
printf -> av_log patch by (Benjamin Larsson <>banan student.ltu se)
...
Originally committed as revision 4105 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
565a45ace3
merge vertical lifting steps and a little cleanup
...
Originally committed as revision 4104 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
avcoder
a622dc4320
Typo errors patch by (QuickTime | ffmpeg gmail com>
...
Originally committed as revision 4103 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Ivan Kalvachev
aa26aa789b
reinitialize on aspect change,
...
required for dvb aspect changes
Originally committed as revision 4102 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Yartrebo
a0d1931c0e
Snow Slicing patch by (Yartrebo) yartrebo earthlink net
...
Originally committed as revision 4101 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Mike Melanson
589f82202c
Autodesk Animator Studio Codec (AASC) video decoder, courtesy of
...
Konstantin Shishkov
Originally committed as revision 4099 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Kostya Shishkov
29846f4845
support some more color modes; patch by Kostya
...
Originally committed as revision 4097 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Mike Melanson
5b225466ea
free that last frame
...
Originally committed as revision 4095 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Mike Melanson
034eeaa17f
Westwood SND1 decoder, courtesy of Kostya
...
Originally committed as revision 4094 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
09c3e44e8a
motion estimation bitrate penalty compensation
...
Originally committed as revision 4092 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Loren Merritt
048bfeeb12
display deblocking strength in FF_DEBUG_PICT_INFO
...
Originally committed as revision 4091 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Loren Merritt
171070658e
allow 16 refs with B-frames
...
Originally committed as revision 4090 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Loïc Le Loarer
6ba71fc467
This is the second patch for MBAFF support, this adds the deblocking
...
filter code for the I slice.
With this patch, 4 more frames are decoded correctly from the
conformance streams.
patch by (Loïc Le Loarer <lll+ffmpeg m4x org>)
Originally committed as revision 4088 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Loïc Le Loarer
3bf3d666a7
The cvs version 1.103 of h264.c brokes 13 conformance streams, this
...
patch corrects this and decodes the same streams as version 1.102.
patch by (Loïc Le Loarer <lll+ffmpeg m4x org>)
Originally committed as revision 4087 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
083b80b53a
replace custom bitstream reader with get_bits/vlc()
...
Originally committed as revision 4085 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
fcbc799cd3
make reverse[] non static
...
Originally committed as revision 4084 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Mike Melanson
a8a15e9db2
Winnov WNV1 video decoder, courtesy of Konstantin Shishkov
...
Originally committed as revision 4083 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
cec1f05fd7
check mb/me_threshold range, fixes assertion failure
...
Originally committed as revision 4082 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
71434945f2
more checks, fixes assertion failure
...
Originally committed as revision 4081 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
3ed4046fad
create temporary file in current directory if it failed in /tmp
...
Originally committed as revision 4075 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago