Thu, 12 Oct 2006 11:54:24 +0000 |
bcoudurier |
fix SHOW_SBITS for ALT_BITSTREAM_READER_LE, patch by Gregory Montoir %cyx A users P sourceforge P net%
libavcodec
|
Thu, 12 Oct 2006 11:51:34 +0000 |
diego |
Rename internal.h --> xvid_internal.h, it clashes with libavutil/internal.h.
libavcodec
|
Thu, 12 Oct 2006 10:26:07 +0000 |
lu_zero |
ppc generic prefetch
libavcodec
|
Thu, 12 Oct 2006 07:51:18 +0000 |
gpoirier |
adds some useful comments after some of the #else, #elseif,
libavcodec
|
Wed, 11 Oct 2006 23:17:58 +0000 |
diego |
Rename ABS macro to FFABS.
libavcodec
|
Wed, 11 Oct 2006 21:34:15 +0000 |
lorenm |
more prefetches, 2% faster h264
libavcodec
|
Wed, 11 Oct 2006 17:59:40 +0000 |
michael |
slightly faster on P3 slightly slower on athlon and probably faster on P4
libavcodec
|
Wed, 11 Oct 2006 17:14:02 +0000 |
bcoudurier |
update doc, changelog, and increase libavcodec version for .cin files support
libavcodec
|
Wed, 11 Oct 2006 16:57:00 +0000 |
bcoudurier |
support for Delphine Software .cin files demuxing / audio and video decoding, by Gregory Montoir %cyx A users P sourceforge P net%
libavcodec
|
Wed, 11 Oct 2006 16:39:50 +0000 |
michael |
moving lps state transition code a little up in the branched asm code (1% faster on P3)
libavcodec
|
Wed, 11 Oct 2006 16:11:41 +0000 |
michael |
write cabac low and range variables as early as possible to prevent stalls from reading them before they where written, the P4 is said to disslike that alot, on P3 its 2% faster (START/STOP_TIMER over decode_residual)
libavcodec
|
Wed, 11 Oct 2006 15:20:08 +0000 |
michael |
use ecx instead of cl (no speed change on P3 but might avoid partial register stalls on some cpus)
libavcodec
|
Wed, 11 Oct 2006 14:44:17 +0000 |
michael |
make state transition tables global as they are constant and the code is slightly faster that way
libavcodec
|
Wed, 11 Oct 2006 13:25:29 +0000 |
michael |
10l
libavcodec
|
Wed, 11 Oct 2006 13:21:42 +0000 |
michael |
make lps_range a global table its constant anyway (saves 1 addition for accessing it)
libavcodec
|
Wed, 11 Oct 2006 12:23:40 +0000 |
michael |
enable CMOV_IS_FAST as its faster or equal speed on every cpu (duron, athlon, PM, P3) from which ive seen benchmarks, it might be slower on P4 but noone has posted benchmarks ...
libavcodec
|
Wed, 11 Oct 2006 10:29:00 +0000 |
michael |
doxy
libavcodec
|
Wed, 11 Oct 2006 08:30:13 +0000 |
diego |
Move CFLAGS handling to common.mak.
libavcodec
|
Wed, 11 Oct 2006 07:47:59 +0000 |
diego |
Switch to the LGPL as agreed to by the author according to the
libavcodec
|
Wed, 11 Oct 2006 04:15:04 +0000 |
kostya |
Targa image decoder
libavcodec
|
Tue, 10 Oct 2006 12:07:25 +0000 |
diego |
Rename SIGN macro to the more fitting UNFOLD.
libavcodec
|
Tue, 10 Oct 2006 08:16:41 +0000 |
diego |
BRANCHLESS_CABAD --> BRANCHLESS_CABAC_DECODER
libavcodec
|
Tue, 10 Oct 2006 08:01:19 +0000 |
gpoirier |
Move TRANSPOSE8 macro to dsputil_altivec.h.
libavcodec
|
Tue, 10 Oct 2006 06:56:51 +0000 |
michael |
moving another bit&1 out, this is as fast as with it in there, but it makes more sense with it outside of the loop
libavcodec
|
Tue, 10 Oct 2006 01:17:39 +0000 |
michael |
move the &1 out of the asm so gcc can optimize it away in inlined cases (yes this is slightly faster)
libavcodec
|
Tue, 10 Oct 2006 01:08:39 +0000 |
michael |
replace a few and/sub/... by cmov
libavcodec
|
Mon, 09 Oct 2006 21:57:10 +0000 |
michael |
reading 8bit mem into a 8bit register needs 2 uops on P4, 8bit->32bit with zero extension needs just 1
libavcodec
|
Mon, 09 Oct 2006 21:39:07 +0000 |
michael |
on the P4 inc needs twice as much time a add
libavcodec
|
Mon, 09 Oct 2006 21:21:10 +0000 |
michael |
10l
libavcodec
|
Mon, 09 Oct 2006 21:14:16 +0000 |
michael |
reverse remainder of the failed attempt to optimize *state=c->mps_state[s]
libavcodec
|
Mon, 09 Oct 2006 20:51:33 +0000 |
michael |
x86 branchless cabac decoder
libavcodec
|
Mon, 09 Oct 2006 20:44:11 +0000 |
michael |
optimize branchless C CABAC decoder
libavcodec
|
Mon, 09 Oct 2006 18:29:46 +0000 |
lu_zero |
removing ALTIVEC_USE_REFERENCE_C_CODE, since has no use anymore
libavcodec
|
Mon, 09 Oct 2006 18:20:00 +0000 |
michael |
move outcommented START/STOP_TIMER to a hopefully better place for benchmarking ...
libavcodec
|
Mon, 09 Oct 2006 15:52:17 +0000 |
michael |
drop failed attempt to optimize *state= c->mps_state[s];
libavcodec
|
Mon, 09 Oct 2006 14:15:53 +0000 |
michael |
10l bugfix for some disabled code
libavcodec
|
Mon, 09 Oct 2006 14:15:14 +0000 |
michael |
first try of a handwritten get_cabac() for x86, this is 10-20% faster on P3 depening on if you try to subtract the START/STOP_TIMER overhead
libavcodec
|
Mon, 09 Oct 2006 13:37:43 +0000 |
lu_zero |
add_bytes passes tests
libavcodec
|
Mon, 09 Oct 2006 12:25:24 +0000 |
michael |
remove bytestream_end checks, seems to work fine without them and the bitstream reader doesnt check for the end either
libavcodec
|
Mon, 09 Oct 2006 11:36:42 +0000 |
gpoirier |
fix AC3 5.1 being decoded as mono
libavcodec
|
Mon, 09 Oct 2006 07:31:27 +0000 |
diego |
Fix GPL/LGPL license version mismatch.
libavcodec
|
Mon, 09 Oct 2006 00:59:42 +0000 |
michael |
decrease ff_h264_norm_shift[] size
libavcodec
|
Sun, 08 Oct 2006 21:26:19 +0000 |
rathann |
Fixes:
libavcodec
|
Sun, 08 Oct 2006 21:26:08 +0000 |
michael |
cleanup
libavcodec
|
Sun, 08 Oct 2006 21:25:22 +0000 |
rathann |
Fixes:
libavcodec
|
Sun, 08 Oct 2006 21:23:57 +0000 |
rathann |
Fixes:
libavcodec
|
Sun, 08 Oct 2006 21:11:03 +0000 |
rathann |
Fixes:
libavcodec
|
Sun, 08 Oct 2006 14:32:27 +0000 |
reimar |
Avoid void *-arithmetic
libavcodec
|
Sun, 08 Oct 2006 13:55:02 +0000 |
lu_zero |
Non Altivec optimizations already present at the top
libavcodec
|
Sun, 08 Oct 2006 13:20:22 +0000 |
michael |
branchless renormalization (1% faster get_cabac) old branchless renormalization wasnt faster because gcc was scared of the shift variable (missusing bit variable now)
libavcodec
|
Sun, 08 Oct 2006 11:24:37 +0000 |
michael |
5% faster get_cabac()
libavcodec
|
Sun, 08 Oct 2006 10:11:58 +0000 |
diego |
output typo fixes
libavcodec
|
Sun, 08 Oct 2006 09:41:00 +0000 |
diego |
Compilation fix: pix_abs16x16_c was undeclared.
libavcodec
|
Sun, 08 Oct 2006 09:38:22 +0000 |
diego |
Compilation fix, printf gets redefined to please_use_av_log.
libavcodec
|
Sat, 07 Oct 2006 22:37:34 +0000 |
michael |
disable benchmarking code
libavcodec
|
Sat, 07 Oct 2006 22:34:32 +0000 |
michael |
renorm_cabac_decoder_once START/STOP_TIMER scores for athlon
libavcodec
|
Sat, 07 Oct 2006 19:14:25 +0000 |
lu_zero |
fix the dcbz check and move it in configure
libavcodec
|
Sat, 07 Oct 2006 15:44:14 +0000 |
michael |
refill cabac variables in 16bit steps, 3% faster get_cabac()
libavcodec
|
Sat, 07 Oct 2006 15:30:46 +0000 |
diego |
Change license headers to say 'FFmpeg' instead of 'this program/this library'
libavcodec
|
Sat, 07 Oct 2006 12:41:55 +0000 |
michael |
() 10l
libavcodec
|
Sat, 07 Oct 2006 11:46:35 +0000 |
lu_zero |
fix a warning
libavcodec
|
Sat, 07 Oct 2006 11:30:24 +0000 |
diego |
Compilation fix, printf gets redefined to please_use_av_log.
libavcodec
|
Sat, 07 Oct 2006 11:15:10 +0000 |
michael |
several x86 renorm_cabac_decoder_once optimizations
libavcodec
|
Sat, 07 Oct 2006 09:22:44 +0000 |
diego |
Replace -I../-I. by -I$(BUILD_ROOT).
libavcodec
|
Sat, 07 Oct 2006 08:10:47 +0000 |
diego |
cosmetics: Add backslashes to the last line of continued lines to make
libavcodec
|
Fri, 06 Oct 2006 11:33:57 +0000 |
michael |
fix decoding of ED-small-sample-file.ogg
libavcodec
|
Thu, 05 Oct 2006 19:27:18 +0000 |
michael |
fix buffer underflows by reencoding the current frame with a higher QP
libavcodec
|
Thu, 05 Oct 2006 18:15:17 +0000 |
diego |
message typo fixes
libavcodec
|
Thu, 05 Oct 2006 17:10:33 +0000 |
diego |
Simplify test program build.
libavcodec
|
Thu, 05 Oct 2006 09:58:33 +0000 |
diego |
Also ignore cpuid_test.
libavcodec
|
Thu, 05 Oct 2006 01:28:25 +0000 |
diego |
Fix imgresample-test compilation.
libavcodec
|
Thu, 05 Oct 2006 00:51:40 +0000 |
diego |
imgresample-test depends on $(LIB).
libavcodec
|
Thu, 05 Oct 2006 00:32:56 +0000 |
diego |
Simplify EXTRALIBS handling.
libavcodec
|
Thu, 05 Oct 2006 00:23:24 +0000 |
diego |
Switch idct_mmx_xvid.c from GPL to LGPL as permitted by the
libavcodec
|
Wed, 04 Oct 2006 21:42:31 +0000 |
diego |
cosmetics: Put all OBJS on a line of their own for nicer-looking diffs.
libavcodec
|
Wed, 04 Oct 2006 13:13:07 +0000 |
bcoudurier |
change extradata type to uint8_t *
libavcodec
|
Wed, 04 Oct 2006 12:49:52 +0000 |
bcoudurier |
mjpeg 4:2:2 encoding support
libavcodec
|
Wed, 04 Oct 2006 07:16:10 +0000 |
lorenm |
don't try to inline cabac functions. gcc ignored the hint anyway, and forcing it would make h264 slower.
libavcodec
|
Wed, 04 Oct 2006 07:08:26 +0000 |
lorenm |
simplify write_back_motion for skip mbs
libavcodec
|
Wed, 04 Oct 2006 02:57:43 +0000 |
lorenm |
10l in r6412
libavcodec
|
Tue, 03 Oct 2006 19:23:39 +0000 |
diego |
Move EXTRALIBS handling to common.mak.
libavcodec
|
Tue, 03 Oct 2006 18:03:45 +0000 |
diego |
Slightly simplify apiexample compilation command line.
libavcodec
|
Tue, 03 Oct 2006 17:59:10 +0000 |
diego |
Also remove cpuid_test on clean.
libavcodec
|
Tue, 03 Oct 2006 17:50:02 +0000 |
diego |
Remove bogus dependency information.
libavcodec
|
Tue, 03 Oct 2006 17:42:17 +0000 |
diego |
Mark all phony targets as such.
libavcodec
|
Tue, 03 Oct 2006 17:12:48 +0000 |
diego |
Remove unused variables and the corresponding warnings along with them.
libavcodec
|
Mon, 02 Oct 2006 11:55:24 +0000 |
ods15 |
more forgotten free's.
libavcodec
|
Mon, 02 Oct 2006 11:47:10 +0000 |
ods15 |
10l, wrong order in freeing
libavcodec
|
Mon, 02 Oct 2006 11:31:52 +0000 |
michael |
slightly saner indention
libavcodec
|
Mon, 02 Oct 2006 10:23:59 +0000 |
diego |
Fix quantiSer --> quantiZer typo.
libavcodec
|
Mon, 02 Oct 2006 06:56:39 +0000 |
ods15 |
add vorbis_enc_data.h, remove codebook data from vorbis_enc.c
libavcodec
|
Mon, 02 Oct 2006 06:18:02 +0000 |
ods15 |
Add vorbis encoder to ffmpeg
libavcodec
|
Mon, 02 Oct 2006 06:09:52 +0000 |
ods15 |
Original Commit: r114 | ods15 | 2006-10-01 21:38:37 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:49 +0000 |
ods15 |
Original Commit: r113 | ods15 | 2006-10-01 21:35:47 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:47 +0000 |
ods15 |
Original Commit: r112 | ods15 | 2006-10-01 20:48:39 +0200 (Sun, 01 Oct 2006) | 3 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:45 +0000 |
ods15 |
Original Commit: r111 | ods15 | 2006-10-01 19:40:50 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:43 +0000 |
ods15 |
Original Commit: r110 | ods15 | 2006-10-01 19:17:32 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:41 +0000 |
ods15 |
Original Commit: r109 | ods15 | 2006-10-01 19:14:52 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:39 +0000 |
ods15 |
Original Commit: r108 | ods15 | 2006-10-01 18:46:06 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:36 +0000 |
ods15 |
Original Commit: r107 | ods15 | 2006-10-01 18:13:12 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:33 +0000 |
ods15 |
Original Commit: r106 | ods15 | 2006-10-01 18:11:55 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:30 +0000 |
ods15 |
Original Commit: r105 | ods15 | 2006-10-01 18:09:55 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:28 +0000 |
ods15 |
Original Commit: r104 | ods15 | 2006-10-01 18:04:08 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:24 +0000 |
ods15 |
Original Commit: r103 | ods15 | 2006-10-01 18:00:43 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:22 +0000 |
ods15 |
Original Commit: r102 | ods15 | 2006-10-01 17:58:38 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:20 +0000 |
ods15 |
Original Commit: r101 | ods15 | 2006-10-01 14:15:00 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:18 +0000 |
ods15 |
Original Commit: r100 | ods15 | 2006-10-01 14:01:27 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:14 +0000 |
ods15 |
Original Commit: r99 | ods15 | 2006-10-01 11:12:44 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:12 +0000 |
ods15 |
Original Commit: r98 | ods15 | 2006-10-01 10:15:33 +0200 (Sun, 01 Oct 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:10 +0000 |
ods15 |
Original Commit: r97 | ods15 | 2006-09-30 23:32:19 +0300 (Sat, 30 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:08 +0000 |
ods15 |
Original Commit: r96 | ods15 | 2006-09-30 23:25:18 +0300 (Sat, 30 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:06 +0000 |
ods15 |
Original Commit: r95 | ods15 | 2006-09-30 22:11:08 +0300 (Sat, 30 Sep 2006) | 3 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:04 +0000 |
ods15 |
Original Commit: r94 | ods15 | 2006-09-30 22:09:33 +0300 (Sat, 30 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:09:02 +0000 |
ods15 |
Original Commit: r93 | ods15 | 2006-09-30 22:02:21 +0300 (Sat, 30 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:59 +0000 |
ods15 |
Original Commit: r92 | ods15 | 2006-09-30 12:13:47 +0300 (Sat, 30 Sep 2006) | 3 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:57 +0000 |
ods15 |
Original Commit: r91 | ods15 | 2006-09-30 10:05:16 +0300 (Sat, 30 Sep 2006) | 4 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:55 +0000 |
ods15 |
Original Commit: r90 | ods15 | 2006-09-29 22:14:40 +0300 (Fri, 29 Sep 2006) | 3 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:53 +0000 |
ods15 |
Original Commit: r88 | ods15 | 2006-09-29 21:10:36 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:51 +0000 |
ods15 |
Original Commit: r87 | ods15 | 2006-09-29 21:10:05 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:48 +0000 |
ods15 |
Original Commit: r86 | ods15 | 2006-09-29 21:08:42 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:46 +0000 |
ods15 |
Original Commit: r85 | ods15 | 2006-09-29 21:07:58 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:44 +0000 |
ods15 |
Original Commit: r84 | ods15 | 2006-09-29 21:07:07 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:41 +0000 |
ods15 |
Original Commit: r83 | ods15 | 2006-09-29 21:06:13 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:39 +0000 |
ods15 |
Original Commit: r82 | ods15 | 2006-09-29 21:03:43 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:36 +0000 |
ods15 |
Original Commit: r81 | ods15 | 2006-09-29 21:02:09 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:33 +0000 |
ods15 |
Original Commit: r80 | ods15 | 2006-09-29 15:44:22 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:31 +0000 |
ods15 |
Original Commit: r79 | ods15 | 2006-09-29 15:15:26 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:28 +0000 |
ods15 |
Original Commit: r78 | ods15 | 2006-09-29 15:14:28 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:25 +0000 |
ods15 |
Original Commit: r77 | ods15 | 2006-09-29 15:12:56 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:23 +0000 |
ods15 |
Original Commit: r76 | ods15 | 2006-09-29 13:16:37 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:21 +0000 |
ods15 |
Original Commit: r75 | ods15 | 2006-09-29 13:03:51 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:19 +0000 |
ods15 |
Original Commit: r74 | ods15 | 2006-09-29 13:03:31 +0300 (Fri, 29 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:16 +0000 |
ods15 |
Original Commit: r73 | ods15 | 2006-09-28 21:01:59 +0300 (Thu, 28 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:14 +0000 |
ods15 |
Original Commit: r72 | ods15 | 2006-09-28 21:00:47 +0300 (Thu, 28 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:11 +0000 |
ods15 |
Original Commit: r71 | ods15 | 2006-09-28 21:00:24 +0300 (Thu, 28 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:09 +0000 |
ods15 |
Original Commit: r70 | ods15 | 2006-09-28 19:07:36 +0300 (Thu, 28 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:07 +0000 |
ods15 |
Original Commit: r69 | ods15 | 2006-09-27 20:27:50 +0300 (Wed, 27 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:03 +0000 |
ods15 |
Original Commit: r68 | ods15 | 2006-09-25 21:15:09 +0300 (Mon, 25 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:08:01 +0000 |
ods15 |
Original Commit: r67 | ods15 | 2006-09-25 20:33:06 +0300 (Mon, 25 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:59 +0000 |
ods15 |
Original Commit: r66 | ods15 | 2006-09-25 18:42:13 +0300 (Mon, 25 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:57 +0000 |
ods15 |
Original Commit: r65 | ods15 | 2006-09-25 18:40:19 +0300 (Mon, 25 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:55 +0000 |
ods15 |
Original Commit: r64 | ods15 | 2006-09-25 18:39:30 +0300 (Mon, 25 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:53 +0000 |
ods15 |
Original Commit: r63 | ods15 | 2006-09-25 13:51:44 +0300 (Mon, 25 Sep 2006) | 3 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:51 +0000 |
ods15 |
Original Commit: r62 | ods15 | 2006-09-25 13:12:07 +0300 (Mon, 25 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:49 +0000 |
ods15 |
Original Commit: r61 | ods15 | 2006-09-25 13:10:56 +0300 (Mon, 25 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:46 +0000 |
ods15 |
Original Commit: r60 | ods15 | 2006-09-25 12:46:30 +0300 (Mon, 25 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:44 +0000 |
ods15 |
Original Commit: r59 | ods15 | 2006-09-24 17:40:40 +0300 (Sun, 24 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:42 +0000 |
ods15 |
Original Commit: r58 | ods15 | 2006-09-24 17:35:28 +0300 (Sun, 24 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:40 +0000 |
ods15 |
Original Commit: r56 | ods15 | 2006-09-24 13:55:01 +0300 (Sun, 24 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:38 +0000 |
ods15 |
Original Commit: r55 | ods15 | 2006-09-24 13:54:43 +0300 (Sun, 24 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:36 +0000 |
ods15 |
Original Commit: r54 | ods15 | 2006-09-24 13:54:12 +0300 (Sun, 24 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:34 +0000 |
ods15 |
Original Commit: r52 | ods15 | 2006-09-23 17:38:43 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:32 +0000 |
ods15 |
Original Commit: r51 | ods15 | 2006-09-23 16:32:30 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:30 +0000 |
ods15 |
Original Commit: r50 | ods15 | 2006-09-23 16:24:51 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:28 +0000 |
ods15 |
Original Commit: r49 | ods15 | 2006-09-23 12:52:21 +0300 (Sat, 23 Sep 2006) | 3 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:26 +0000 |
ods15 |
Original Commit: r48 | ods15 | 2006-09-23 12:45:25 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 06:07:24 +0000 |
ods15 |
Original Commit: r47 | ods15 | 2006-09-23 12:34:48 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:40 +0000 |
ods15 |
Original Commit: r46 | ods15 | 2006-09-23 11:36:32 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:37 +0000 |
ods15 |
Original Commit: r44 | ods15 | 2006-09-23 10:54:43 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:35 +0000 |
ods15 |
Original Commit: r43 | ods15 | 2006-09-23 10:53:46 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:32 +0000 |
ods15 |
Original Commit: r42 | ods15 | 2006-09-23 10:53:16 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:30 +0000 |
ods15 |
Original Commit: r41 | ods15 | 2006-09-23 10:52:34 +0300 (Sat, 23 Sep 2006) | 4 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:27 +0000 |
ods15 |
Original Commit: r40 | ods15 | 2006-09-23 09:36:30 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:25 +0000 |
ods15 |
Original Commit: r39 | ods15 | 2006-09-23 09:36:11 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:23 +0000 |
ods15 |
Original Commit: r38 | ods15 | 2006-09-23 09:02:34 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:21 +0000 |
ods15 |
Original Commit: r37 | ods15 | 2006-09-23 08:43:43 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:18 +0000 |
ods15 |
Original Commit: r36 | ods15 | 2006-09-23 08:43:09 +0300 (Sat, 23 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:16 +0000 |
ods15 |
Original Commit: r35 | ods15 | 2006-09-22 18:53:22 +0300 (Fri, 22 Sep 2006) | 4 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:14 +0000 |
ods15 |
Original Commit: r34 | ods15 | 2006-09-22 18:46:57 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:12 +0000 |
ods15 |
Original Commit: r32 | ods15 | 2006-09-22 18:37:50 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:10 +0000 |
ods15 |
Original Commit: r31 | ods15 | 2006-09-22 18:33:17 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:07 +0000 |
ods15 |
Original Commit: r30 | ods15 | 2006-09-22 18:24:04 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:05 +0000 |
ods15 |
Original Commit: r27 | ods15 | 2006-09-22 14:19:51 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:03 +0000 |
ods15 |
Original Commit: r26 | ods15 | 2006-09-22 14:18:22 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:56:01 +0000 |
ods15 |
Original Commit: r25 | ods15 | 2006-09-22 14:06:04 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:59 +0000 |
ods15 |
Original Commit: r24 | ods15 | 2006-09-22 13:57:09 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:57 +0000 |
ods15 |
Original Commit: r23 | ods15 | 2006-09-22 13:55:48 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:55 +0000 |
ods15 |
Original Commit: r22 | ods15 | 2006-09-22 13:49:56 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:52 +0000 |
ods15 |
Original Commit: r21 | ods15 | 2006-09-22 13:40:31 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:49 +0000 |
ods15 |
Original Commit: r20 | ods15 | 2006-09-22 13:12:48 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:47 +0000 |
ods15 |
Original Commit: r19 | ods15 | 2006-09-22 12:54:18 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:45 +0000 |
ods15 |
Original Commit: r18 | ods15 | 2006-09-22 12:29:26 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:43 +0000 |
ods15 |
Original Commit: r17 | ods15 | 2006-09-22 12:28:28 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:41 +0000 |
ods15 |
Original Commit: r16 | ods15 | 2006-09-22 12:27:17 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:39 +0000 |
ods15 |
Original Commit: r15 | ods15 | 2006-09-22 12:26:42 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:37 +0000 |
ods15 |
Original Commit: r14 | ods15 | 2006-09-22 12:26:17 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:35 +0000 |
ods15 |
Original Commit: r13 | ods15 | 2006-09-22 09:29:38 +0300 (Fri, 22 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:33 +0000 |
ods15 |
Original Commit: r12 | ods15 | 2006-09-22 09:28:30 +0300 (Fri, 22 Sep 2006) | 5 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:30 +0000 |
ods15 |
Original Commit: r11 | ods15 | 2006-09-17 19:41:28 +0300 (Sun, 17 Sep 2006) | 4 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:28 +0000 |
ods15 |
Original Commit: r10 | ods15 | 2006-09-17 19:37:17 +0300 (Sun, 17 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:26 +0000 |
ods15 |
Original Commit: r9 | ods15 | 2006-09-17 18:56:41 +0300 (Sun, 17 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:24 +0000 |
ods15 |
Original Commit: r8 | ods15 | 2006-09-17 09:43:38 +0300 (Sun, 17 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:22 +0000 |
ods15 |
Original Commit: r7 | ods15 | 2006-09-17 08:50:47 +0300 (Sun, 17 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:20 +0000 |
ods15 |
Original Commit: r6 | ods15 | 2006-09-16 20:36:31 +0300 (Sat, 16 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:18 +0000 |
ods15 |
Original Commit: r5 | ods15 | 2006-09-16 17:29:04 +0300 (Sat, 16 Sep 2006) | 4 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:16 +0000 |
ods15 |
Original Commit: r4 | ods15 | 2006-09-16 15:36:03 +0300 (Sat, 16 Sep 2006) | 3 lines
libavcodec
|
Mon, 02 Oct 2006 05:55:14 +0000 |
ods15 |
Original Commit: r3 | ods15 | 2006-09-16 11:49:07 +0300 (Sat, 16 Sep 2006) | 2 lines
libavcodec
|
Mon, 02 Oct 2006 05:54:55 +0000 |
ods15 |
skeleton for vorbis_enc.c
libavcodec
|
Sun, 01 Oct 2006 21:25:17 +0000 |
lorenm |
approximate qpel functions: sacrifice some quality for some decoding speed. enabled on B-frames with -lavdopts fast.
libavcodec
|
Sun, 01 Oct 2006 18:19:49 +0000 |
diego |
Fix compilation with --disable-encoders.
libavcodec
|
Sun, 01 Oct 2006 17:38:07 +0000 |
ods15 |
remove render_line from vorbis.h, add ff_vorbis_floor1_render_list instead
libavcodec
|
Sun, 01 Oct 2006 13:53:08 +0000 |
ods15 |
prevent warning in vorbis_data.c
libavcodec
|
Sun, 01 Oct 2006 13:45:17 +0000 |
ods15 |
100l, broke ffmpeg compilation, ABS() and uint* types not defined in vorbis_data.c
libavcodec
|
Sun, 01 Oct 2006 11:59:33 +0000 |
ods15 |
make some more functions global so they can be shared with vorbis_enc.c
libavcodec
|
Sun, 01 Oct 2006 11:11:30 +0000 |
ods15 |
make ready_floor1_list() shared for vorbis_enc.c
libavcodec
|
Sun, 01 Oct 2006 05:09:20 +0000 |
kostya |
1l: correct argument order in avcodec_check_dimensions
libavcodec
|
Sat, 30 Sep 2006 23:49:09 +0000 |
michael |
palette (if we memcpy it into AVFrame) must be uint32_t
libavcodec
|
Sat, 30 Sep 2006 18:47:15 +0000 |
ods15 |
vorbis.h -> vorbis_data.c
libavcodec
|
Sat, 30 Sep 2006 18:16:38 +0000 |
michael |
marking AVPaletteControl as deprecated due to thread saftey amongth other issues (it doesnt work if theres any delay between demuxer and decoder)
libavcodec
|
Sat, 30 Sep 2006 16:00:27 +0000 |
michael |
seems only 3 bits are used for the number of resolutions, some rv30 files have this set to 10 even though there are just 2 resolutions in the extradata
libavcodec
|
Sat, 30 Sep 2006 11:45:09 +0000 |
michael |
ignore sub_id
libavcodec
|
Sat, 30 Sep 2006 11:35:14 +0000 |
michael |
big endian fix
libavcodec
|
Sat, 30 Sep 2006 11:31:15 +0000 |
michael |
support resolution switching, fixes rv20errors.rm
libavcodec
|
Fri, 29 Sep 2006 23:57:03 +0000 |
michael |
simplify
libavcodec
|
Fri, 29 Sep 2006 23:34:42 +0000 |
michael |
fix rv20 b frames (broke since r5264 Mon Apr 3 07:52:24 2006 UTC 2x faster ff_mpeg4_set_direct_mv)
libavcodec
|
Fri, 29 Sep 2006 19:48:27 +0000 |
takis |
Add forgotten eval.h...
libavcodec
|
Fri, 29 Sep 2006 19:39:19 +0000 |
takis |
Move the ratecontrol related code from mpegvideo.h to a separate header file.
libavcodec
|
Fri, 29 Sep 2006 19:36:12 +0000 |
takis |
Reformat the output of the list of available AVOptions, by indenting the
libavcodec
|
Fri, 29 Sep 2006 19:34:53 +0000 |
takis |
Remove the override of lmin and lmax, so the actual option value provided will
libavcodec
|
Fri, 29 Sep 2006 19:33:04 +0000 |
takis |
Pull out the ff_eval* from the mpegvideo header, as it doesn't belong there and
libavcodec
|
Thu, 28 Sep 2006 22:03:52 +0000 |
mru |
remove extraneous #ifdef CONFIG_ENCODERS/DECODERS
libavcodec
|
Thu, 28 Sep 2006 17:46:25 +0000 |
takis |
Remove the "mblmax" OptionDef. The equally named AVOption takes over its
libavcodec
|
Thu, 28 Sep 2006 17:45:51 +0000 |
takis |
Remove the "mblmin" OptionDef. The equally named AVOption takes over its
libavcodec
|
Thu, 28 Sep 2006 05:01:02 +0000 |
kostya |
Handle case of get_bits(0)
libavcodec
|
Wed, 27 Sep 2006 22:13:44 +0000 |
mru |
dc_val should be signed
libavcodec
|
Wed, 27 Sep 2006 22:12:08 +0000 |
mru |
return 0 from encode_picture() and estimate_qp() on success
libavcodec
|
Wed, 27 Sep 2006 20:08:36 +0000 |
takis |
Break compatibility only when first part of version number changes, in this
libavcodec
|
Wed, 27 Sep 2006 20:01:39 +0000 |
takis |
Make AVOption parsign code use ff_eval2()
libavcodec
|
Wed, 27 Sep 2006 19:54:07 +0000 |
mru |
add some #ifdef CONFIG_ENCODERS/DECODERS
libavcodec
|
Wed, 27 Sep 2006 19:47:39 +0000 |
mru |
fix some signedness warnings
libavcodec
|
Wed, 27 Sep 2006 19:46:19 +0000 |
takis |
Make ratecontrol use ff_eval2().
libavcodec
|
Wed, 27 Sep 2006 11:09:35 +0000 |
takis |
Fix compilation by postponing deprecation of ff_eval() until the next version
libavcodec
|
Wed, 27 Sep 2006 04:37:57 +0000 |
kostya |
free memory before return
libavcodec
|
Wed, 27 Sep 2006 04:31:39 +0000 |
kostya |
bump lavc version for WavPack decoder
libavcodec
|
Tue, 26 Sep 2006 22:23:33 +0000 |
michael |
fix decoding of bastard3.rm (ver=0x10003001 ver0=0x9000000)
libavcodec
|
Tue, 26 Sep 2006 22:01:33 +0000 |
takis |
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
libavcodec
|
Tue, 26 Sep 2006 20:26:22 +0000 |
mru |
ARMv5TE optimized IDCT
libavcodec
|
Tue, 26 Sep 2006 20:24:13 +0000 |
michael |
fix decoding of bastard1.rm (rv ver=0x10003001 ver0=0x8000000)
libavcodec
|
Tue, 26 Sep 2006 18:31:43 +0000 |
mru |
fix MUL16 macro
libavcodec
|
Tue, 26 Sep 2006 14:04:36 +0000 |
takis |
Handle possible failure of ff_eval.
libavcodec
|
Tue, 26 Sep 2006 08:49:24 +0000 |
michael |
mpeg1 b_strategy=2 segfault fix
libavcodec
|
Tue, 26 Sep 2006 03:41:51 +0000 |
kostya |
WavPack lossless audio decoder
libavcodec
|
Mon, 25 Sep 2006 22:57:34 +0000 |
reimar |
remove get_le16 and get_le32, get_bits and get_bits_long can just be used directly.
libavcodec
|
Mon, 25 Sep 2006 22:54:19 +0000 |
reimar |
Get rid of get_bits_long_le, get_bits_long was fixed and now behaves the same way.
libavcodec
|
Mon, 25 Sep 2006 22:53:11 +0000 |
reimar |
Changes needed due to show_bits_long behaviour changes/fixes
libavcodec
|
Mon, 25 Sep 2006 22:47:55 +0000 |
reimar |
Fix get_bits_long to work with ALT_BITSTREAM_READER_LE.
libavcodec
|
Mon, 25 Sep 2006 18:54:18 +0000 |
aurel |
rename vector to vect to avoid clash with Apple gcc
libavcodec
|
Mon, 25 Sep 2006 15:23:40 +0000 |
lu_zero |
move memory functions from avcodec to avutil
libavcodec
|
Sun, 24 Sep 2006 10:58:06 +0000 |
ods15 |
fix to vorbis decoder for book==0
libavcodec
|
Sun, 24 Sep 2006 10:53:54 +0000 |
takis |
Missing extern declaration for av_strtod.
libavcodec
|
Sun, 24 Sep 2006 10:41:25 +0000 |
michael |
cosmetic
libavcodec
|
Sun, 24 Sep 2006 10:38:14 +0000 |
michael |
segfault fix
libavcodec
|
Sat, 23 Sep 2006 08:50:50 +0000 |
takis |
Define NAN -if not already defined- as 0.0/0.0
libavcodec
|
Fri, 22 Sep 2006 15:57:23 +0000 |
lu_zero |
Use mathops
libavcodec
|
Fri, 22 Sep 2006 15:05:27 +0000 |
takis |
Remove the "error" OptionDef. The equally named AVOption takes over its
libavcodec
|
Fri, 22 Sep 2006 15:04:56 +0000 |
takis |
Remove the "mepc" OptionDef. The equally named AVOption takes over its function.
libavcodec
|
Fri, 22 Sep 2006 13:55:56 +0000 |
takis |
Remove the "mb_threshold" OptionDef. The equally named AVOption takes over its
libavcodec
|
Thu, 21 Sep 2006 17:43:09 +0000 |
lorenm |
cosmetics (indentation)
libavcodec
|
Thu, 21 Sep 2006 17:42:23 +0000 |
lorenm |
tweak ff_imdct_calc_3dn2
libavcodec
|
Thu, 21 Sep 2006 16:37:39 +0000 |
lorenm |
sse implementation of imdct.
libavcodec
|
Thu, 21 Sep 2006 04:46:11 +0000 |
kostya |
Finally enable B-frame decoding as all known samples work perfect
libavcodec
|
Thu, 21 Sep 2006 04:44:35 +0000 |
kostya |
For B-frames if the second reference frame signals intensity compensation
libavcodec
|
Thu, 21 Sep 2006 04:38:47 +0000 |
kostya |
Reorder MV order in B-frames so no swapping in vc1_b_mc() is needed
libavcodec
|
Thu, 21 Sep 2006 04:28:46 +0000 |
kostya |
Zero number of current scan after decoding one picture.
libavcodec
|
Thu, 21 Sep 2006 01:08:05 +0000 |
michael |
1000l copy and paste typo
libavcodec
|
Wed, 20 Sep 2006 21:17:37 +0000 |
michael |
set supported pixel formats for a few encoders (fixes crashes with grayscale)
libavcodec
|
Wed, 20 Sep 2006 08:39:56 +0000 |
takis |
Remove the "qsquish" OptionDef. The AVOption min/max value is changed to match
libavcodec
|
Wed, 20 Sep 2006 08:36:33 +0000 |
takis |
Remove the "qmax" OptionDef.
libavcodec
|
Wed, 20 Sep 2006 08:34:58 +0000 |
takis |
Remove the "qmin" OptionDef.
libavcodec
|
Wed, 20 Sep 2006 08:34:13 +0000 |
takis |
Remove the "bf" OptionDef parameter so the equally named AVOption will take
libavcodec
|
Wed, 20 Sep 2006 08:28:24 +0000 |
takis |
Inform the user that a certain AVOption is out of range.
libavcodec
|
Wed, 20 Sep 2006 08:27:18 +0000 |
takis |
Correct the constraints of some AVOptions. These had a default value of zero,
libavcodec
|
Tue, 19 Sep 2006 22:22:29 +0000 |
lu_zero |
New single instruction math operation header
libavcodec
|
Tue, 19 Sep 2006 09:31:00 +0000 |
michael |
use correct rounding functions
libavcodec
|
Mon, 18 Sep 2006 11:35:48 +0000 |
takis |
Add support for SI (k, M, ...) and IEC/IEEE (Ki, Mi, ...) units.
libavcodec
|
Sun, 17 Sep 2006 10:22:01 +0000 |
michael |
K prefix
libavcodec
|
Sun, 17 Sep 2006 08:52:41 +0000 |
michael |
support SI and some non SI prefixes
libavcodec
|
Sat, 16 Sep 2006 22:26:09 +0000 |
diego |
ADI Blackfin optimizations
libavcodec
|
Sat, 16 Sep 2006 00:51:49 +0000 |
mru |
remove junk characters in comment
libavcodec
|
Fri, 15 Sep 2006 23:20:58 +0000 |
mru |
clean up #ifdef HAVE_IPP
libavcodec
|
Fri, 15 Sep 2006 21:57:19 +0000 |
takis |
Correct the i_qfactor minimum, which was current set higher then the default
libavcodec
|
Fri, 15 Sep 2006 13:53:26 +0000 |
diego |
Fix Indel --> Intel typo.
libavcodec
|
Fri, 15 Sep 2006 10:57:20 +0000 |
takis |
Rename the AVOption's names to the shorter OptionDef names.
libavcodec
|
Fri, 15 Sep 2006 10:28:23 +0000 |
bcoudurier |
remove unused, uninitialized free format frame size
libavcodec
|
Thu, 14 Sep 2006 22:13:23 +0000 |
aurel |
disable vp3 mmx idct for theora files to avoid artifacts
libavcodec
|
Thu, 14 Sep 2006 14:02:32 +0000 |
takis |
Synchronize the defaults specified in the AVOptions[] array to the defaults
libavcodec
|
Thu, 14 Sep 2006 13:51:54 +0000 |
takis |
Make OFFSET() reuse offsetof
libavcodec
|
Thu, 14 Sep 2006 11:23:41 +0000 |
takis |
Allow parameter values (AVOptions) to use the 'k', 'M', 'G'
libavcodec
|
Thu, 14 Sep 2006 00:38:03 +0000 |
diego |
Remove the LGPL exception clause as discussed on ffmpeg-devel
libavcodec
|
Wed, 13 Sep 2006 21:39:41 +0000 |
diego |
Proper armv5te instructions support detection.
libavcodec
|
Wed, 13 Sep 2006 20:16:33 +0000 |
aurel |
replaces back some C code by dsp.put_pixels_tab[0][0] (revert r6231)
libavcodec
|
Wed, 13 Sep 2006 09:28:48 +0000 |
gpoirier |
corrects the type of the AVOption parameter "bugs", patch by Takis
libavcodec
|
Wed, 13 Sep 2006 09:03:13 +0000 |
gpoirier |
adds descriptions to the libavcodec AVOptions array, taken from the
libavcodec
|
Tue, 12 Sep 2006 20:58:17 +0000 |
aurel |
Enables back the mmx/sse optimized version of the vp3 idct.
libavcodec
|
Tue, 12 Sep 2006 04:35:11 +0000 |
kostya |
Swap back and forward motion vectors to achieve correct picture
libavcodec
|
Tue, 12 Sep 2006 04:29:37 +0000 |
kostya |
Set motion vectors used in B-frames to zero by default
libavcodec
|
Tue, 12 Sep 2006 04:19:07 +0000 |
kostya |
Use h264_chroma funcs in B-frames MC too
libavcodec
|
Tue, 12 Sep 2006 04:16:28 +0000 |
kostya |
Fix edge emulation for bicubic MC in B frames
libavcodec
|
Tue, 12 Sep 2006 04:13:00 +0000 |
kostya |
2989l: Set avctx->has_b_frames value in header and don't change it
libavcodec
|
Mon, 11 Sep 2006 23:29:24 +0000 |
aurel |
don't use dsp.put_pixels_tab[0][0] with unaligned ptr (fix artifacts on altivec)
libavcodec
|
Sun, 10 Sep 2006 22:29:02 +0000 |
diego |
armv5 optimizations
libavcodec
|
Sun, 10 Sep 2006 21:51:08 +0000 |
gpoirier |
Use and set sane AVOption defaults
libavcodec
|
Sun, 10 Sep 2006 20:46:20 +0000 |
gpoirier |
adds doxygen docs to av_opt_set_defaults. Patch by Takis
libavcodec
|
Sun, 10 Sep 2006 20:21:40 +0000 |
gpoirier |
make AVOptions default value field work.
libavcodec
|
Sun, 10 Sep 2006 18:16:19 +0000 |
diego |
Remove unused variable.
libavcodec
|
Sun, 10 Sep 2006 15:36:53 +0000 |
lu_zero |
Cleanup, from Emanuele Giaquinta <exg@gentoo.org>
libavcodec
|
Sun, 10 Sep 2006 14:02:42 +0000 |
diego |
Add official LGPL license headers to the files that were missing them.
libavcodec
|
Sun, 10 Sep 2006 04:24:53 +0000 |
kostya |
Disable B-frames decoding until they produce correct picture
libavcodec
|
Sat, 09 Sep 2006 22:53:44 +0000 |
aurel |
rename vector to vect to avoid clash with Apple gcc
libavcodec
|
Sat, 09 Sep 2006 22:04:43 +0000 |
diego |
Add proper GPL headers.
libavcodec
|
Sat, 09 Sep 2006 17:19:37 +0000 |
aurel |
VP5 and VP6 video decoder
libavcodec
|
Sat, 09 Sep 2006 11:40:41 +0000 |
kostya |
Drop unneeded checks before av_free() and change to av_freep() where it's more suitable.
libavcodec
|
Sat, 09 Sep 2006 11:32:36 +0000 |
kostya |
Support for BI-frames in Advanced Profile
libavcodec
|
Sat, 09 Sep 2006 11:29:17 +0000 |
kostya |
Don't print header bits by default
libavcodec
|
Sat, 09 Sep 2006 11:28:02 +0000 |
kostya |
[Cosmetics] Remove if(profile < PROFILE_ADVANCED) from decode_sequence_header()
libavcodec
|
Sat, 09 Sep 2006 11:23:44 +0000 |
kostya |
[Cosmetics] Remove some done TODOs/FIXMEs from comments
libavcodec
|
Sat, 09 Sep 2006 11:21:56 +0000 |
kostya |
Proper support for B/BI frames
libavcodec
|
Sat, 09 Sep 2006 08:49:28 +0000 |
gpoirier |
undefines a few temporary defines which were not undefined after their usage.
libavcodec
|
Fri, 08 Sep 2006 08:27:51 +0000 |
michael |
print more correct error messges
libavcodec
|
Thu, 07 Sep 2006 04:08:34 +0000 |
kostya |
Handle the rest of known blocks (by skipping them)
libavcodec
|
Thu, 07 Sep 2006 04:05:04 +0000 |
kostya |
Tests for overreading input data
libavcodec
|
Thu, 07 Sep 2006 04:01:42 +0000 |
kostya |
Cursor drawing support
libavcodec
|
Wed, 06 Sep 2006 10:17:28 +0000 |
diego |
Switch license from GPL to LGPL. The original author agreed to this as
libavcodec
|
Tue, 05 Sep 2006 21:17:30 +0000 |
rtogni |
Fix buffer handling for stereo mace files, fixes some random sig11
libavcodec
|
Tue, 05 Sep 2006 15:46:06 +0000 |
corey |
second pass encoding changes:
libavcodec
|
Tue, 05 Sep 2006 13:50:36 +0000 |
diego |
Mark this file properly as LGPL as allowed by its author Leon van Stuivenberg.
libavcodec
|
Tue, 05 Sep 2006 07:31:53 +0000 |
kostya |
Try to handle all chunks, previous scheme was not correct.
libavcodec
|
Tue, 05 Sep 2006 07:29:26 +0000 |
kostya |
Handle raw blocks correctly (both updating pointer and storing to memory)
libavcodec
|
Tue, 05 Sep 2006 04:37:14 +0000 |
kostya |
VMware Video decoder (fourcc: VMnc)
libavcodec
|
Mon, 04 Sep 2006 21:11:54 +0000 |
michael |
seems the output of that code is never used
libavcodec
|
Mon, 04 Sep 2006 17:25:38 +0000 |
mru |
inline align_get_bits()
libavcodec
|
Mon, 04 Sep 2006 17:08:20 +0000 |
corey |
error message spelling typo
libavcodec
|
Mon, 04 Sep 2006 09:37:28 +0000 |
diego |
Exchange informal GPL notice by official license header.
libavcodec
|
Mon, 04 Sep 2006 04:24:49 +0000 |
kostya |
VC-1 Advanced Profile support (progressive only, tested on WVC1 samples)
libavcodec
|
Mon, 04 Sep 2006 03:33:11 +0000 |
romansh |
* Restructuring the division of labor between DV codec and DV format
libavcodec
|
Sun, 03 Sep 2006 22:16:54 +0000 |
diego |
The license of this file is LGPL, as clarified by Fabrice.
libavcodec
|
Sun, 03 Sep 2006 16:15:29 +0000 |
diego |
Add copyright notice from the Independent JPEG Group instead of referring
libavcodec
|
Sun, 03 Sep 2006 15:59:08 +0000 |
jbr |
Fix 2 bit allocation bugs. One fix enables using a higher bandwidth code. The other fixes an issue with floorcod=7.
libavcodec
|
Sun, 03 Sep 2006 04:44:50 +0000 |
kostya |
AltiVec version of put_no_rnd_h264_chroma_pixels_tab[0] (slightly changed version of put_h264_chroma_pixels_tab[0])
libavcodec
|
Sat, 02 Sep 2006 23:10:28 +0000 |
mru |
remove redundant declarations
libavcodec
|
Sat, 02 Sep 2006 04:58:51 +0000 |
kostya |
Drop put_vc1_qpel_pixels_tab as they won't be needed anymore.
libavcodec
|
Sat, 02 Sep 2006 04:53:49 +0000 |
kostya |
Replace usage of put_*_vc1_qpel_pixels_tab with put_*_h264_chroma_pixels_tab
libavcodec
|
Sat, 02 Sep 2006 04:52:00 +0000 |
kostya |
New function for chroma MC (will be used in VC-1)
libavcodec
|
Fri, 01 Sep 2006 22:02:38 +0000 |
lorenm |
snow cosmetics: merge the sliced and non-sliced versions of add_yblock
libavcodec
|
Fri, 01 Sep 2006 21:51:35 +0000 |
lorenm |
fix snow 1pass rc: the qlog used and the one written to the bitstream weren't always the same.
libavcodec
|
Thu, 31 Aug 2006 19:14:00 +0000 |
lu_zero |
Align the input buffer in ffplay, introduce a public macro for aligned declarations
libavcodec
|
Thu, 31 Aug 2006 15:44:37 +0000 |
lu_zero |
Proper fix for the corner case that would have been corrected before, praise&blame to me and exg in equal shares
libavcodec
|
Thu, 31 Aug 2006 15:27:26 +0000 |
lu_zero |
Revert previous commit
libavcodec
|
Thu, 31 Aug 2006 15:15:14 +0000 |
lu_zero |
Fix float_to_int16, unaligned case, broken by the previous commit
libavcodec
|
Thu, 31 Aug 2006 04:44:54 +0000 |
kostya |
New qpel MC functions conforming to VC-1 standard.
libavcodec
|
Thu, 31 Aug 2006 04:42:13 +0000 |
kostya |
Spelling
libavcodec
|
Thu, 31 Aug 2006 04:39:27 +0000 |
kostya |
Motion compensation for luma always use halfpel precision.
libavcodec
|
Wed, 30 Aug 2006 21:18:17 +0000 |
michael |
fix b pyramid in mp4 muxing if no dts are provided to the muxer
libavcodec
|
Tue, 29 Aug 2006 21:23:27 +0000 |
nicodvb |
install opt.h
libavcodec
|
Tue, 29 Aug 2006 03:07:58 +0000 |
lorenm |
slightly faster deblock
libavcodec
|
Mon, 28 Aug 2006 22:25:30 +0000 |
aurel |
use the A32_BITSTREAM_READER by default on ARM (faster)
libavcodec
|
Mon, 28 Aug 2006 18:46:01 +0000 |
aurel |
force usage of ALT_BITSTREAM_READER where needed
libavcodec
|
Mon, 28 Aug 2006 18:44:49 +0000 |
aurel |
move some functions to bitstream.h to avoid conflicts
libavcodec
|
Mon, 28 Aug 2006 16:15:40 +0000 |
michael |
fix buffer handling
libavcodec
|
Mon, 28 Aug 2006 14:56:47 +0000 |
lucabe |
Minimal support for the new pixel formats in libavcodec
libavcodec
|
Mon, 28 Aug 2006 09:33:01 +0000 |
lorenm |
mmx implementation of deblocking strength decision.
libavcodec
|
Sun, 27 Aug 2006 21:45:26 +0000 |
michael |
overread AV_LOG_ERROR -> AV_LOG_DEBUG
libavcodec
|
Sun, 27 Aug 2006 11:42:40 +0000 |
michael |
fix low bitrate mp3
libavcodec
|
Sun, 27 Aug 2006 09:19:02 +0000 |
lorenm |
tweak cabac. 0.5% faster h264.
libavcodec
|
Sun, 27 Aug 2006 07:19:11 +0000 |
michael |
check the validity of the amount of the remaining bytes in the bitsteam before memcpy
libavcodec
|
Sat, 26 Aug 2006 20:16:54 +0000 |
michael |
unused var
libavcodec
|
Sat, 26 Aug 2006 18:56:24 +0000 |
michael |
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
libavcodec
|
Sat, 26 Aug 2006 18:12:16 +0000 |
aurel |
Fix A32_BITSTREAM_READER compilation on x86
libavcodec
|
Sat, 26 Aug 2006 18:02:52 +0000 |
michael |
make mpa_decode_header() 10 times faster
libavcodec
|
Sat, 26 Aug 2006 17:29:31 +0000 |
michael |
another silly typo which surprisingly neither valgrind nor cmp of the file output cought
libavcodec
|
Sat, 26 Aug 2006 15:24:13 +0000 |
michael |
10l found by valgrind
libavcodec
|
Sat, 26 Aug 2006 12:19:05 +0000 |
michael |
remove duplicated parser, people who pass random gibblets of the bitstream into the decoder will have to pass it through a AVParser like for all other codecs too
libavcodec
|
Sat, 26 Aug 2006 11:50:23 +0000 |
michael |
2nd try of skip_bits_long() for the ALT reader
libavcodec
|
Sat, 26 Aug 2006 11:37:33 +0000 |
michael |
make A32 reader align its ptr during init no matter what missaligned mess is given to it
libavcodec
|
Sat, 26 Aug 2006 11:26:54 +0000 |
michael |
3rd try :)
libavcodec
|
Sat, 26 Aug 2006 11:06:33 +0000 |
michael |
2nd try for a skip_bits_long() for the A32 reader
libavcodec
|
Sat, 26 Aug 2006 10:26:14 +0000 |
michael |
move align_get_bits() to .h to avoid conflicts between different bitstream readers in different codecs
libavcodec
|
Sat, 26 Aug 2006 09:34:02 +0000 |
michael |
prevent bitstream reader to be overriden
libavcodec
|
Fri, 25 Aug 2006 14:42:32 +0000 |
michael |
avoid branch
libavcodec
|
Fri, 25 Aug 2006 13:58:27 +0000 |
michael |
move variable declarations so that their scope is smaller
libavcodec
|
Fri, 25 Aug 2006 13:46:56 +0000 |
michael |
move the +400 out of the innermost loop
libavcodec
|
Fri, 25 Aug 2006 13:36:27 +0000 |
michael |
avoid reading exponent twice
libavcodec
|
Fri, 25 Aug 2006 12:26:34 +0000 |
michael |
reduce size of vlc table, thats slightly faster here
libavcodec
|
Fri, 25 Aug 2006 11:55:20 +0000 |
michael |
try to avoid l3_unscale() by using a table
libavcodec
|
Fri, 25 Aug 2006 10:00:30 +0000 |
michael |
replace l3_unscale(1, exponents[pos]) by LUT
libavcodec
|
Fri, 25 Aug 2006 02:40:52 +0000 |
michael |
maybe fixing the segfault on ARM
libavcodec
|
Thu, 24 Aug 2006 21:59:20 +0000 |
aurel |
cook shouldn't try to enforce the bitstream reader type
libavcodec
|
Thu, 24 Aug 2006 14:13:57 +0000 |
bcoudurier |
add codec id and tag for JPEG 2000
libavcodec
|
Thu, 24 Aug 2006 12:35:53 +0000 |
michael |
10l typo
libavcodec
|
Thu, 24 Aug 2006 11:18:41 +0000 |
michael |
avoid a few if(x==0) checks in the inner loops
libavcodec
|
Thu, 24 Aug 2006 09:24:50 +0000 |
michael |
fix non ALT bitstream reader
libavcodec
|
Thu, 24 Aug 2006 08:40:09 +0000 |
michael |
optimize reorder_block() though this function seems to be executed too rarely for this to make much difference
libavcodec
|
Thu, 24 Aug 2006 08:39:07 +0000 |
michael |
simplify
libavcodec
|
Thu, 24 Aug 2006 06:57:32 +0000 |
michael |
dont copy the whole GetBitContext around
libavcodec
|
Thu, 24 Aug 2006 01:12:26 +0000 |
michael |
faster handling of zero coeffs in the low freq decode
libavcodec
|
Thu, 24 Aug 2006 01:01:39 +0000 |
michael |
optimizing high freq decode
libavcodec
|
Thu, 24 Aug 2006 00:03:51 +0000 |
michael |
use memset() instead of slow c loops
libavcodec
|
Wed, 23 Aug 2006 23:40:03 +0000 |
michael |
simplify
libavcodec
|
Wed, 23 Aug 2006 23:39:27 +0000 |
aurel |
fix arm asm compilation in mpegaudiodec
libavcodec
|
Tue, 22 Aug 2006 16:23:56 +0000 |
banan |
Alignment of the LT window, segfault fix patch by Baptiste Coudurier.
libavcodec
|
Tue, 22 Aug 2006 13:25:09 +0000 |
michael |
MUL* for ARM code based on a patch by Siarhei Siamashka
libavcodec
|
Tue, 22 Aug 2006 12:07:02 +0000 |
michael |
replace MULL with asm too, no significnat speedup but its probably better to not take any chances, some versions of gcc will almost certainly mess it up too if they can
libavcodec
|
Tue, 22 Aug 2006 11:51:09 +0000 |
michael |
replacing MULH by asm for x86
libavcodec
|
Tue, 22 Aug 2006 11:16:47 +0000 |
michael |
indent preprocessor directives
libavcodec
|
Tue, 22 Aug 2006 11:11:04 +0000 |
michael |
make high precission synth filter 3 times faster on x86
libavcodec
|
Tue, 22 Aug 2006 06:24:59 +0000 |
michael |
replace MULL by MULH + shift in dct32() (code is very slightly faster, and the compiler should be able to optimize the shift away on 64bit archs)
libavcodec
|
Mon, 21 Aug 2006 12:12:43 +0000 |
michael |
replace a few MULL by MULH
libavcodec
|
Sun, 20 Aug 2006 22:18:26 +0000 |
michael |
reorder butterflies to reduce memory load/store
libavcodec
|
Sun, 20 Aug 2006 19:08:05 +0000 |
banan |
Added codec id for QCELP.
libavcodec
|
Sat, 19 Aug 2006 23:12:10 +0000 |
michael |
cosmetics
libavcodec
|
Sat, 19 Aug 2006 20:55:02 +0000 |
michael |
SWAP
libavcodec
|
Sat, 19 Aug 2006 20:22:57 +0000 |
michael |
audio format conversion
libavcodec
|
Sat, 19 Aug 2006 15:14:44 +0000 |
lucabe |
Allow swscale emulation header to be included by C++ programs
libavcodec
|
Sat, 19 Aug 2006 08:46:52 +0000 |
banan |
SIMD vector optimizations. 3% faster overall decoding.
libavcodec
|
Sat, 19 Aug 2006 02:42:20 +0000 |
lorenm |
use ff_fft_calc_3dn2 instead of sse on a K8.
libavcodec
|
Fri, 18 Aug 2006 23:53:49 +0000 |
lorenm |
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
libavcodec
|
Fri, 18 Aug 2006 13:38:24 +0000 |
diego |
Explicitly include fastmemcpy.h from libvo/.
libavcodec
|
Fri, 18 Aug 2006 10:43:23 +0000 |
michael |
simplify
libavcodec
|
Fri, 18 Aug 2006 07:55:08 +0000 |
gpoirier |
Add YV12 support, patch by Steve Lhomme % steve P lhomme A free P fr %
libavcodec
|
Thu, 17 Aug 2006 16:32:08 +0000 |
diego |
Move all internal -I parameters to the front of CFLAGS to avoid using external
libavcodec
|
Thu, 17 Aug 2006 08:08:28 +0000 |
michael |
cleanup
libavcodec
|
Thu, 17 Aug 2006 07:49:22 +0000 |
michael |
insufficient alignment
libavcodec
|
Tue, 15 Aug 2006 20:36:05 +0000 |
lu_zero |
10l, thanks to Emanuele Giaquinta <exg@gentoo.org> for testing and finding the issue
libavcodec
|
Tue, 15 Aug 2006 14:59:27 +0000 |
gpoirier |
Compile fix (for GCC<3.3) when encoders are disabled
libavcodec
|
Mon, 14 Aug 2006 22:55:11 +0000 |
lu_zero |
altivec float optimizations
libavcodec
|
Mon, 14 Aug 2006 18:17:14 +0000 |
michael |
fix codec timebase and timestamps
libavcodec
|
Mon, 14 Aug 2006 17:58:30 +0000 |
michael |
fix h261 parsing bug
libavcodec
|
Sun, 13 Aug 2006 10:10:06 +0000 |
diego |
Fix building with --disable-opts but MMX enabled.
libavcodec
|
Sun, 13 Aug 2006 08:26:43 +0000 |
lu_zero |
Clean up:make dsputil subfile names consistent
libavcodec
|
Sat, 12 Aug 2006 16:37:31 +0000 |
gpoirier |
Support for MacIntel, last part: balign directives
libavcodec
|
Sat, 12 Aug 2006 16:31:17 +0000 |
gpoirier |
Fix CHECK_BIDIR macro so it works with Intel's Compiler
libavcodec
|
Fri, 11 Aug 2006 18:19:37 +0000 |
lorenm |
vorbis simd tweaks
libavcodec
|
Fri, 11 Aug 2006 04:41:30 +0000 |
kostya |
Disable B-frames decoding until I return and finish their proper decoding.
libavcodec
|
Fri, 11 Aug 2006 02:56:32 +0000 |
lu_zero |
keep in sync with dsputil, makes --disable-decoder=vorbis build
libavcodec
|
Thu, 10 Aug 2006 21:57:30 +0000 |
lorenm |
vorbis cosmetics: mdct0,mdct1 => mdct[2]
libavcodec
|
Thu, 10 Aug 2006 21:55:31 +0000 |
lorenm |
misc tweaks in vorbis_residue_decode().
libavcodec
|
Thu, 10 Aug 2006 20:24:58 +0000 |
michael |
convert vector_fmul_reverse_sse2 and vector_fmul_add_add_sse2 to sse
libavcodec
|
Thu, 10 Aug 2006 19:06:25 +0000 |
lorenm |
sse and 3dnow implementations of float->int conversion and mdct windowing.
libavcodec
|
Thu, 10 Aug 2006 18:49:47 +0000 |
lorenm |
r5954 broke fft on cpus with 3dnow but without mm3dnow.h
libavcodec
|
Thu, 10 Aug 2006 16:05:29 +0000 |
lu_zero |
Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
libavcodec
|
Thu, 10 Aug 2006 15:26:18 +0000 |
gpoirier |
Support for MacIntel, take xx: '/nop' illegal for old versions of GAS
libavcodec
|
Thu, 10 Aug 2006 11:29:57 +0000 |
gpoirier |
Add support for Mac OS X Intel part 2: Assembler macros in fdct_mmx.c
libavcodec
|
Thu, 10 Aug 2006 09:06:06 +0000 |
gpoirier |
Support for Mac OS X Intel, part 3: binary integer constants:
libavcodec
|
Wed, 09 Aug 2006 07:52:28 +0000 |
diego |
Correct wrong memset invocation.
libavcodec
|
Wed, 09 Aug 2006 06:37:25 +0000 |
lorenm |
emms -> femms
libavcodec
|
Wed, 09 Aug 2006 06:33:49 +0000 |
lorenm |
gcc 2.95 and 3.4.x on x86 32bit without fomit-frame-pointer can't even find 5 registers for asm input.
libavcodec
|
Tue, 08 Aug 2006 21:47:11 +0000 |
lorenm |
slightly faster ff_imdct_calc_3dn2() on amd64. (gcc added a bunch of useless movsxd)
libavcodec
|
Tue, 08 Aug 2006 18:51:38 +0000 |
lucabe |
Enable swscale usage in ffmpeg
libavcodec
|
Tue, 08 Aug 2006 12:03:51 +0000 |
michael |
change vorbis_inverse_coupling_sse2() so it works on sse1 cpus
libavcodec
|
Tue, 08 Aug 2006 10:24:26 +0000 |
diego |
Fix some "'static' is not at beginning of declaration" warnings.
libavcodec
|
Tue, 08 Aug 2006 04:01:04 +0000 |
lorenm |
3dnow2 implementation of imdct.
libavcodec
|
Sun, 06 Aug 2006 23:15:32 +0000 |
lu_zero |
Cosmetics: 2->4 spaces and some braces
libavcodec
|
Sun, 06 Aug 2006 03:44:31 +0000 |
kostya |
Correct MC for B-frames and some improvements (not 100% complete though)
libavcodec
|
Sun, 06 Aug 2006 03:42:39 +0000 |
kostya |
Bicubic interpolation requires two additional pixels for block
libavcodec
|
Fri, 04 Aug 2006 22:51:20 +0000 |
melanson |
printf -> av_log, only occurs in DEBUG cases
libavcodec
|
Fri, 04 Aug 2006 19:11:12 +0000 |
lu_zero |
Yet another typo
libavcodec
|
Fri, 04 Aug 2006 19:03:01 +0000 |
lu_zero |
Fix a stupid typo and another error, thanks to Emanuele Giaquinta <exg@gentoo.org> for pointing out the issue and the patch
libavcodec
|
Fri, 04 Aug 2006 03:31:01 +0000 |
kostya |
100l: intensity compensation must be also done in 4-MV mode
libavcodec
|
Thu, 03 Aug 2006 16:19:13 +0000 |
lu_zero |
standalone snow dsputil init
libavcodec
|
Thu, 03 Aug 2006 16:13:50 +0000 |
lu_zero |
Almost cosmetic changes in dsputil_init_ppc and vorbis_inverse_coupling_altivec:
libavcodec
|
Thu, 03 Aug 2006 14:37:58 +0000 |
lu_zero |
Minor fix
libavcodec
|
Thu, 03 Aug 2006 13:21:13 +0000 |
lu_zero |
avoid alignment hacks, luckly gcc does the right thing on arches different from x86
libavcodec
|
Thu, 03 Aug 2006 13:19:32 +0000 |
lu_zero |
vorbis_inverse_coupling_altivec
libavcodec
|
Thu, 03 Aug 2006 13:00:37 +0000 |
lu_zero |
Cleanup
libavcodec
|
Thu, 03 Aug 2006 07:09:29 +0000 |
lorenm |
10l, vorbis_inverse_coupling_sse() was really 3dnow
libavcodec
|
Thu, 03 Aug 2006 06:07:13 +0000 |
lorenm |
another div -> fastdiv, another 2% faster vorbis.
libavcodec
|
Thu, 03 Aug 2006 05:15:50 +0000 |
kostya |
Looks like to be a good time to re-enable WMV3 decoder
libavcodec
|
Thu, 03 Aug 2006 05:09:36 +0000 |
kostya |
Don't try to decode P-frames from old WMV3 variant until their format is figured
libavcodec
|
Thu, 03 Aug 2006 05:02:31 +0000 |
kostya |
Some AltiVec optimizations for VC-1
libavcodec
|
Thu, 03 Aug 2006 03:18:47 +0000 |
lorenm |
sse & sse2 implementations of vorbis channel coupling.
libavcodec
|
Thu, 03 Aug 2006 02:18:07 +0000 |
lorenm |
int16_t is faster than int_fast16_t for division.
libavcodec
|
Wed, 02 Aug 2006 22:48:50 +0000 |
michael |
set supported pixel formats correctly
libavcodec
|
Wed, 02 Aug 2006 21:37:38 +0000 |
lu_zero |
avoid possible segfault situations
libavcodec
|
Wed, 02 Aug 2006 11:18:10 +0000 |
lu_zero |
Cosmetics
libavcodec
|
Tue, 01 Aug 2006 04:00:14 +0000 |
kostya |
Forgot to update LIBAVCODEC_VERSION_INT
libavcodec
|
Mon, 31 Jul 2006 20:56:15 +0000 |
mru |
remove libtheora wrapper
libavcodec
|
Mon, 31 Jul 2006 03:32:59 +0000 |
kostya |
Fix overflows in bicubic interpolation.
libavcodec
|
Sun, 30 Jul 2006 03:50:31 +0000 |
kostya |
Use bicubic MC (should also remove those ringing artifacts) when needed
libavcodec
|
Sun, 30 Jul 2006 03:47:26 +0000 |
kostya |
Use functions from DSPContext in vc1.c
libavcodec
|
Sun, 30 Jul 2006 03:45:02 +0000 |
kostya |
New functions in DSPContext for VC-1 decoding
libavcodec
|
Sat, 29 Jul 2006 20:47:47 +0000 |
diego |
Remove spurious references to Ogg Theora encoder, such a thing never existed.
libavcodec
|
Sat, 29 Jul 2006 08:45:33 +0000 |
stefang |
some MMX optimizations for the CAVS decoder
libavcodec
|
Sat, 29 Jul 2006 03:11:14 +0000 |
kostya |
Set MpegEncContext->mspel flag (here it indicates that bicubic MC will be use)
libavcodec
|
Sat, 29 Jul 2006 03:07:30 +0000 |
kostya |
Support range reduced frames
libavcodec
|
Sat, 29 Jul 2006 03:05:29 +0000 |
kostya |
Support grayscale decoding.
libavcodec
|
Fri, 28 Jul 2006 03:27:37 +0000 |
kostya |
Add rounding for overlap filters
libavcodec
|
Thu, 27 Jul 2006 20:37:21 +0000 |
lorenm |
10l in r5768 (broke mbaff)
libavcodec
|
Thu, 27 Jul 2006 12:31:31 +0000 |
lucabe |
Remove sws_global_init() from swscaler emulation
libavcodec
|
Wed, 26 Jul 2006 01:12:26 +0000 |
diego |
Fix FSF postal address.
libavcodec
|
Tue, 25 Jul 2006 15:23:44 +0000 |
lucabe |
Fix a corner case in sws emulation
libavcodec
|
Mon, 24 Jul 2006 04:24:53 +0000 |
kostya |
Some B-frames support (parsing and decoding only, no motion compesation is done)
libavcodec
|
Mon, 24 Jul 2006 04:20:49 +0000 |
kostya |
Some fixes for decode_p_mb()
libavcodec
|
Sun, 23 Jul 2006 20:45:20 +0000 |
diego |
Remove obsolete and misleading warning.
libavcodec
|
Sun, 23 Jul 2006 18:22:29 +0000 |
reimar |
Do not crash when the first frame is not a keyframe (and thus none of the
libavcodec
|
Sun, 23 Jul 2006 04:57:36 +0000 |
kostya |
Correct edge MC for chroma
libavcodec
|
Sat, 22 Jul 2006 03:57:53 +0000 |
kostya |
Replace code for clipping MV vectors (which is wrong to use here) with clipping source coords.
libavcodec
|
Sat, 22 Jul 2006 03:54:00 +0000 |
kostya |
Don't do non-uniform quantization on zero coeffs.
libavcodec
|
Fri, 21 Jul 2006 04:06:06 +0000 |
kostya |
1000l: scale DC predictors instead of predicted value.
libavcodec
|
Fri, 21 Jul 2006 04:03:56 +0000 |
kostya |
Set DC = 0 for skipped MB as it interferes DC prediction
libavcodec
|
Fri, 21 Jul 2006 03:58:48 +0000 |
kostya |
Set correctly quantizer and transform mode when parsing frame header.
libavcodec
|
Wed, 19 Jul 2006 23:51:11 +0000 |
michael |
avoid 4 +
libavcodec
|
Wed, 19 Jul 2006 23:21:20 +0000 |
michael |
remove 166 useless underscores, and make this file valid c code as a result
libavcodec
|
Wed, 19 Jul 2006 23:17:18 +0000 |
michael |
remove a few useless casts and avoid the useless t1/t2 variables
libavcodec
|
Wed, 19 Jul 2006 22:42:31 +0000 |
michael |
simplify
libavcodec
|
Wed, 19 Jul 2006 22:21:45 +0000 |
michael |
more simplifications
libavcodec
|
Wed, 19 Jul 2006 21:20:56 +0000 |
michael |
simplification
libavcodec
|
Wed, 19 Jul 2006 21:05:42 +0000 |
michael |
iabs -> ABS
libavcodec
|
Wed, 19 Jul 2006 20:57:44 +0000 |
michael |
simplify
libavcodec
|
Wed, 19 Jul 2006 20:41:16 +0000 |
michael |
fix loop filter
libavcodec
|
Wed, 19 Jul 2006 09:49:21 +0000 |
michael |
disable the vp3 mmx and sse2 idcts, their output doesnt match the c idct (tested with -f crc) and the theora spec does not allow different idcts not to mention the difference is quite vissible ...
libavcodec
|
Wed, 19 Jul 2006 07:28:58 +0000 |
lucabe |
Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutil
libavcodec
|
Tue, 18 Jul 2006 11:00:55 +0000 |
lucabe |
Move av_log() & friends to libavutil
libavcodec
|
Tue, 18 Jul 2006 01:29:43 +0000 |
lorenm |
sync to x264 r537
libavcodec
|
Mon, 17 Jul 2006 13:09:45 +0000 |
michael |
parse all QIS values (we still ignore them though ...)
libavcodec
|
Mon, 17 Jul 2006 11:06:09 +0000 |
michael |
100l for me
libavcodec
|
Mon, 17 Jul 2006 10:44:53 +0000 |
michael |
fix playback of theora.ogg on mphq patch by (matthieu castet %% castet dat matthieu ot free dat fr %%)
libavcodec
|
Mon, 17 Jul 2006 09:51:59 +0000 |
michael |
attempt to implement xiphs useless and stupid quantization matrix mess
libavcodec
|
Mon, 17 Jul 2006 08:09:08 +0000 |
michael |
replace *_dequant (2 intra, 1 inter) by qmat (3 intra, 3 inter) (needed for theora according to spec)
libavcodec
|
Sun, 16 Jul 2006 21:09:32 +0000 |
michael |
use RSHIFT
libavcodec
|
Sun, 16 Jul 2006 21:00:38 +0000 |
michael |
useless memcpy
libavcodec
|
Sun, 16 Jul 2006 20:47:48 +0000 |
michael |
some fixmes if someone ever wants to implement theora support correctly ...
libavcodec
|
Sun, 16 Jul 2006 20:30:39 +0000 |
michael |
check how many bits are left after decoding extradata
libavcodec
|
Sun, 16 Jul 2006 19:21:59 +0000 |
michael |
cleanup
libavcodec
|
Sun, 16 Jul 2006 18:55:18 +0000 |
lorenm |
slightly faster h264 fill_caches()
libavcodec
|
Sun, 16 Jul 2006 17:08:25 +0000 |
jbr |
cosmetic change to adjust alignment.
libavcodec
|
Sun, 16 Jul 2006 17:04:54 +0000 |
jbr |
Modify preset compression levels to utilize log search.
libavcodec
|
Sun, 16 Jul 2006 16:23:12 +0000 |
mru |
cosmetics
libavcodec
|
Sun, 16 Jul 2006 15:46:45 +0000 |
michael |
log prediction order search method
libavcodec
|
Sun, 16 Jul 2006 13:34:47 +0000 |
jbr |
Add lpc order search. This creates new compression levels 6 to 12.
libavcodec
|
Sun, 16 Jul 2006 03:50:00 +0000 |
kostya |
Don't pass block[6][64] parameter to decode_p_mb as we always use s->block
libavcodec
|
Sun, 16 Jul 2006 03:47:34 +0000 |
kostya |
Correct inverse quantization for P-frames
libavcodec
|
Sun, 16 Jul 2006 03:45:04 +0000 |
kostya |
Rounding control for motion compensation.
libavcodec
|
Sat, 15 Jul 2006 23:43:38 +0000 |
michael |
calculate all coefficients for several orders during cholesky factorization, the resulting coefficients are not strictly optimal though as there is a small difference in the autocorrelation matrixes which is ignored for the smaller orders
libavcodec
|
Fri, 14 Jul 2006 19:31:58 +0000 |
stefang |
avoid double copying of left border in luma prediction
libavcodec
|
Fri, 14 Jul 2006 19:15:08 +0000 |
stefang |
replace run by run+1 in VLC tables
libavcodec
|
Fri, 14 Jul 2006 19:14:25 +0000 |
michael |
cleanup
libavcodec
|
Fri, 14 Jul 2006 18:56:17 +0000 |
stefang |
change partition flags SYM -> FWD|SYM
libavcodec
|
Fri, 14 Jul 2006 18:48:50 +0000 |
stefang |
set mvP2 also in PSKIP macroblock
libavcodec
|
Fri, 14 Jul 2006 18:48:38 +0000 |
michael |
optionally (use_lpc=2) support Cholesky factorization for finding the lpc coeficients
libavcodec
|
Fri, 14 Jul 2006 18:38:23 +0000 |
stefang |
avoid overflows of qp and pic_type
libavcodec
|
Thu, 13 Jul 2006 23:10:01 +0000 |
mru |
replace -D_GNU_SOURCE with -D_ISOC9X_SOURCE to avoid accidental use
libavcodec
|
Thu, 13 Jul 2006 11:41:52 +0000 |
michael |
dither lpc cpeffs
libavcodec
|
Wed, 12 Jul 2006 16:49:14 +0000 |
mru |
rename AMR config variables to CONFIG_AMR*
libavcodec
|
Wed, 12 Jul 2006 15:19:51 +0000 |
diego |
Remove MPlayer-specific include option hacks.
libavcodec
|
Tue, 11 Jul 2006 21:45:45 +0000 |
diego |
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
libavcodec
|
Sun, 09 Jul 2006 22:41:42 +0000 |
michael |
simplify
libavcodec
|
Sun, 09 Jul 2006 15:35:06 +0000 |
michael |
avoid redundant local variables
libavcodec
|
Sun, 09 Jul 2006 15:20:18 +0000 |
michael |
simplify
libavcodec
|
Sun, 09 Jul 2006 15:12:45 +0000 |
diego |
FastUVMV vs FastUVMC typo, noticed by bond
libavcodec
|
Sun, 09 Jul 2006 13:01:06 +0000 |
mru |
make some tables const
libavcodec
|
Sun, 09 Jul 2006 12:02:15 +0000 |
mru |
--enable/disable parsers. Warning: some combinations are broken.
libavcodec
|
Sun, 09 Jul 2006 10:33:49 +0000 |
michael |
remove STATS code (probably hasnt been used for years ..., and its not completely clear what it was good for anyway)
libavcodec
|
Sun, 09 Jul 2006 03:00:57 +0000 |
kostya |
Check if 4-MV MB should not be decoded.
libavcodec
|
Sun, 09 Jul 2006 02:56:40 +0000 |
kostya |
MVRANGE may occur in all frames and RESPIC in all but B-frames
libavcodec
|
Sun, 09 Jul 2006 02:51:13 +0000 |
kostya |
Fix mquant selection for ALL_MBS mode
libavcodec
|
Sun, 09 Jul 2006 02:47:09 +0000 |
kostya |
Use overlap filter instead of loop filter.
libavcodec
|
Sun, 09 Jul 2006 02:44:05 +0000 |
kostya |
Use s->first_slice_line in checks instead of s->mb_y
libavcodec
|
Sun, 09 Jul 2006 01:08:13 +0000 |
mru |
10l: make disabling all pcm/adpcm codecs work
libavcodec
|
Sat, 08 Jul 2006 23:05:12 +0000 |
mru |
only build dpcm.o if its codecs are enabled
libavcodec
|
Sat, 08 Jul 2006 22:38:35 +0000 |
mru |
forgot to remove adx.o from objs always built
libavcodec
|
Sat, 08 Jul 2006 22:31:14 +0000 |
mru |
make the adx adpcm codec available
libavcodec
|
Sat, 08 Jul 2006 21:15:50 +0000 |
mru |
enable/disable pcm and adpcm codecs
libavcodec
|
Sat, 08 Jul 2006 16:41:52 +0000 |
mru |
cosmetic: sort codec list alphabetically
libavcodec
|
Sat, 08 Jul 2006 16:39:58 +0000 |
jbr |
allows user-settable block size and fixes related typo
libavcodec
|
Sat, 08 Jul 2006 16:39:49 +0000 |
mru |
rewrite kconfig-style
libavcodec
|
Sat, 08 Jul 2006 16:36:21 +0000 |
mru |
Sun mlib works fine. Remove comment stating otherwise.
libavcodec
|
Sat, 08 Jul 2006 15:29:33 +0000 |
diego |
Remove bogus IPP section that is not referenced anywhere.
libavcodec
|
Sat, 08 Jul 2006 07:14:00 +0000 |
aurel |
set proper bits_per_sample value for ADPCM codecs
libavcodec
|
Fri, 07 Jul 2006 23:54:13 +0000 |
mru |
remove -fforce-addr as it to generate slightly slower code
libavcodec
|
Fri, 07 Jul 2006 22:43:32 +0000 |
michael |
moving utf8 reading function to libavutil
libavcodec
|
Fri, 07 Jul 2006 22:42:36 +0000 |
aurel |
simplify the voc demuxer using av_get_bits_per_sample()
libavcodec
|
Fri, 07 Jul 2006 22:41:43 +0000 |
michael |
seems i forgot to commit this simplification ...
libavcodec
|
Fri, 07 Jul 2006 17:50:09 +0000 |
bcoudurier |
av_get_bits_per_sample and due simplifications
libavcodec
|
Fri, 07 Jul 2006 11:08:58 +0000 |
diego |
Fix compilation with --disable-decoders.
libavcodec
|
Fri, 07 Jul 2006 10:50:14 +0000 |
michael |
table contains vlc with 19 bits and 8*2 < 19
libavcodec
|
Fri, 07 Jul 2006 05:02:01 +0000 |
kostya |
Improve chroma MC: correct case for FASTUVMC=1, use slower but correct /2, and always use halfpel MC.
libavcodec
|
Fri, 07 Jul 2006 04:51:50 +0000 |
kostya |
Enable coefficient scaling
libavcodec
|
Fri, 07 Jul 2006 04:50:13 +0000 |
kostya |
Don't read out-of-bounds values.
libavcodec
|
Thu, 06 Jul 2006 21:41:54 +0000 |
mru |
simplify
libavcodec
|
Thu, 06 Jul 2006 20:32:19 +0000 |
mru |
build mpegaudio.c and ac3enc.c only if needed
libavcodec
|
Thu, 06 Jul 2006 19:23:21 +0000 |
stefang |
hopefully better for platforms not supporting misaligned read
libavcodec
|
Thu, 06 Jul 2006 19:21:00 +0000 |
stefang |
make use of 16x16 motion comp functions, 16x8 and 8x16 do not seem to be worth it
libavcodec
|
Thu, 06 Jul 2006 15:35:29 +0000 |
michael |
increasing version for AVBitStreamFilters
libavcodec
|
Thu, 06 Jul 2006 15:28:17 +0000 |
michael |
noise bitstream filter
libavcodec
|
Thu, 06 Jul 2006 15:04:46 +0000 |
michael |
AVBitStreamFilter (some thingy which can modify the bitstream like add or remove global headers or change the headers or ...)
libavcodec
|
Thu, 06 Jul 2006 13:53:07 +0000 |
diego |
Mark some read-only datastructures as const.
libavcodec
|
Thu, 06 Jul 2006 03:42:51 +0000 |
kostya |
Fix one case of choosing MV for chroma
libavcodec
|
Wed, 05 Jul 2006 22:56:45 +0000 |
diego |
spelling typo
libavcodec
|
Wed, 05 Jul 2006 19:34:26 +0000 |
mru |
use $(LIBOBJFLAGS) when compiling sparc/*.c
libavcodec
|
Wed, 05 Jul 2006 19:31:01 +0000 |
mru |
#define SBUTTERFLY outside CONFIG_ENCODERS
libavcodec
|
Wed, 05 Jul 2006 17:11:55 +0000 |
stefang |
even more cbp safety
libavcodec
|
Wed, 05 Jul 2006 17:08:13 +0000 |
stefang |
missed removing this line in my last commit
libavcodec
|
Wed, 05 Jul 2006 14:12:00 +0000 |
diego |
cosmetics: Break overly long lines.
libavcodec
|
Tue, 04 Jul 2006 22:43:35 +0000 |
michael |
add rounding bias earlier in the idct, avoids many adds
libavcodec
|
Tue, 04 Jul 2006 19:15:47 +0000 |
banan |
Mark read-only data as const. Patch by stefan huehner org.
libavcodec
|
Tue, 04 Jul 2006 17:08:35 +0000 |
michael |
return -1 on bitstream errors instead of continuing, as the following stuff almost always will be useless until the next startcode
libavcodec
|
Tue, 04 Jul 2006 17:06:43 +0000 |
michael |
simplify intra prediction mode decoding
libavcodec
|
Tue, 04 Jul 2006 16:42:22 +0000 |
michael |
check cbp for validity, avoids possible out of array reads / segfaults
libavcodec
|
Tue, 04 Jul 2006 16:30:14 +0000 |
michael |
minor simplificationn
libavcodec
|
Tue, 04 Jul 2006 15:40:09 +0000 |
kostya |
Implement intensity compensation
libavcodec
|
Tue, 04 Jul 2006 15:39:21 +0000 |
kostya |
Correctly choose global transform mode, MV mode and fix bitplane decoding
libavcodec
|
Tue, 04 Jul 2006 15:33:28 +0000 |
kostya |
Optimizations suggested by Michael Niedermayer
libavcodec
|
Mon, 03 Jul 2006 18:43:45 +0000 |
stefang |
cleanup macroblock layer: merged decode of skipped MBs
libavcodec
|
Mon, 03 Jul 2006 17:37:57 +0000 |
stefang |
cosmetic patch:
libavcodec
|
Mon, 03 Jul 2006 17:22:18 +0000 |
kostya |
Correctly detect when use hpel or qpel mode
libavcodec
|
Mon, 03 Jul 2006 17:21:18 +0000 |
kostya |
4-MV mode final fixes (now it works for non-exotic modes)
libavcodec
|
Mon, 03 Jul 2006 17:17:25 +0000 |
kostya |
vc1_decode_intra_block() simplifications and corrections
libavcodec
|
Mon, 03 Jul 2006 10:52:07 +0000 |
lucabe |
Move REG_* macros from libavcodec/i386/mmx.h to libavutil/x86_cpu.h
libavcodec
|
Mon, 03 Jul 2006 09:20:26 +0000 |
michael |
porder patch by (Justin Ruggles jruggle a t earthlink d ot net)
libavcodec
|
Mon, 03 Jul 2006 02:38:08 +0000 |
kostya |
4-MV decoding support
libavcodec
|
Mon, 03 Jul 2006 00:16:45 +0000 |
michael |
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
libavcodec
|
Sun, 02 Jul 2006 22:01:31 +0000 |
mru |
remove redundant macro definitions
libavcodec
|
Sun, 02 Jul 2006 21:53:30 +0000 |
mru |
kill warning
libavcodec
|
Sun, 02 Jul 2006 14:58:17 +0000 |
michael |
CODEC_ID_CAVS (part of the cavs patch by Stefan Gehrer stefan.gehrer gmx de)
libavcodec
|
Sun, 02 Jul 2006 14:50:23 +0000 |
michael |
staric frame_rate_tab -> non static ff_frame_rate_tab part of the cavs patch by (Stefan Gehrer stefan.gehrer gmx de)
libavcodec
|
Sun, 02 Jul 2006 13:14:04 +0000 |
michael |
3 lines while -> 1 line for loop
libavcodec
|
Sun, 02 Jul 2006 13:10:08 +0000 |
michael |
simplify
libavcodec
|
Sun, 02 Jul 2006 13:01:01 +0000 |
michael |
simplify compute_autocorr
libavcodec
|
Sun, 02 Jul 2006 12:40:39 +0000 |
michael |
dont use memcpy for copying structs
libavcodec
|
Sun, 02 Jul 2006 11:06:27 +0000 |
michael |
simplify
libavcodec
|
Sun, 02 Jul 2006 10:22:31 +0000 |
michael |
flac-lpc patch by (Justin Ruggles jruggle earthlink net)
libavcodec
|
Sun, 02 Jul 2006 09:30:51 +0000 |
michael |
simplify
libavcodec
|
Sun, 02 Jul 2006 02:05:35 +0000 |
banan |
ff_fft_init now double checks that the system has mm3dnow.h before
libavcodec
|
Sun, 02 Jul 2006 01:52:40 +0000 |
mru |
remove unneeded casts
libavcodec
|
Sun, 02 Jul 2006 01:39:38 +0000 |
mru |
get rid of veccpy(), replace with simple assignment
libavcodec
|
Sat, 01 Jul 2006 22:52:56 +0000 |
michael |
new files for the CAVS decoder by (Stefan Gehrer <stefan gehrer gmx de)
libavcodec
|
Sat, 01 Jul 2006 17:33:48 +0000 |
mru |
fill_mbaff_ref_list is missing a return statement, its return value
libavcodec
|
Sat, 01 Jul 2006 07:22:29 +0000 |
kostya |
Adjust AC prediction if (some) predictors are not available.
libavcodec
|
Sat, 01 Jul 2006 07:13:52 +0000 |
kostya |
0xFFFF l of cola. Now P-frames are decoded almost without distortions.
libavcodec
|
Sat, 01 Jul 2006 03:19:28 +0000 |
kostya |
Remove unused variable (and it wasn't free'd too)
libavcodec
|
Sat, 01 Jul 2006 03:17:54 +0000 |
kostya |
Use MpegEncContext->mbskip_table instead of custom bitplane.
libavcodec
|
Fri, 30 Jun 2006 08:00:01 +0000 |
gpoirier |
* Allocating 16 bytes more for the MEMALIGN_HACK is enough. There's no
libavcodec
|
Fri, 30 Jun 2006 07:50:30 +0000 |
gpoirier |
Disable w53 and w97 cmp methods when snow encoder is disabled
libavcodec
|
Fri, 30 Jun 2006 05:53:28 +0000 |
reynaldo |
anothe useless sizeof(char)
libavcodec
|
Fri, 30 Jun 2006 03:19:31 +0000 |
kostya |
Slightly reworked MC code, it gives better picture.
libavcodec
|
Fri, 30 Jun 2006 03:17:31 +0000 |
kostya |
typo
libavcodec
|
Fri, 30 Jun 2006 02:47:36 +0000 |
diego |
spelling fixes courtesy of "Herv«± W." H.O.W.aka.V+ffmpeg (at) gmail (dot) com
libavcodec
|
Thu, 29 Jun 2006 11:17:50 +0000 |
kostya |
Fix initialization of vc1_decoder (the same as wmv3_decoder).
libavcodec
|
Thu, 29 Jun 2006 11:05:33 +0000 |
kostya |
Some optimization and fixes - mostly reworked MC and bitplanes.
libavcodec
|
Thu, 29 Jun 2006 11:02:33 +0000 |
kostya |
This should make P-frames decoding work on x86 (by avoiding get_bits(0))
libavcodec
|
Tue, 27 Jun 2006 21:01:21 +0000 |
michael |
flacenc - rice param search patch by (Justin Ruggles jruggle earthlink net
libavcodec
|
Tue, 27 Jun 2006 15:37:48 +0000 |
kostya |
Added loop filtering as ersatz for overlap filter (improves picture quality for coarse quantization).
libavcodec
|
Tue, 27 Jun 2006 15:34:14 +0000 |
kostya |
VC1 Intra blocks in P-frames use different zigzag table than I-frames.
libavcodec
|
Tue, 27 Jun 2006 12:13:01 +0000 |
reimar |
Do not read full byte when less than 8 bits are still to be read.
libavcodec
|
Tue, 27 Jun 2006 12:09:58 +0000 |
reimar |
Ignore overrun in spectral RLE decoding, fixes
libavcodec
|
Tue, 27 Jun 2006 03:11:51 +0000 |
kostya |
VC-1 decoder with I-frames support and partial P-frames decoding
libavcodec
|
Tue, 27 Jun 2006 02:55:54 +0000 |
kostya |
Rename VC9 to VC1 as there is no such thing as VC9
libavcodec
|
Mon, 26 Jun 2006 06:00:07 +0000 |
michael |
stereo decorrelation support by (Justin Ruggles jruggle earthlink net>)
libavcodec
|
Sun, 25 Jun 2006 21:22:25 +0000 |
michael |
10l
libavcodec
|
Sun, 25 Jun 2006 17:37:12 +0000 |
lu_zero |
cleanup patch from Diego Petten«Ò <flameeyes@gentoo.org>
libavcodec
|
Sat, 24 Jun 2006 20:09:49 +0000 |
lu_zero |
minor cleanup
libavcodec
|
Sat, 24 Jun 2006 13:56:29 +0000 |
michael |
simplify & optimize things a little
libavcodec
|
Sat, 24 Jun 2006 10:20:15 +0000 |
michael |
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
libavcodec
|
Sat, 24 Jun 2006 09:25:21 +0000 |
michael |
CODEC_CAP_SMALL_LAST_FRAME patch by Justin Ruggles jruggle earthlink net
libavcodec
|
Wed, 21 Jun 2006 00:21:26 +0000 |
lu_zero |
fix 24bit flac support, revised from Thibaut Mattern <thibaut.mattern@gmail.com>
libavcodec
|
Tue, 20 Jun 2006 10:35:30 +0000 |
lu_zero |
Make gcc-3 happy again, thanks to Olivier Castan <castan.o@free.fr> for pointing the issue
libavcodec
|
Tue, 20 Jun 2006 10:26:00 +0000 |
diego |
Remove unused FFMPEG_VERSION_INT.
libavcodec
|
Tue, 20 Jun 2006 10:24:08 +0000 |
diego |
Use Subversion revision for FFMPEG_VERSION.
libavcodec
|
Sun, 18 Jun 2006 11:33:14 +0000 |
diego |
Add const to (mostly) char* and make some functions static, which aren't used
libavcodec
|
Sat, 17 Jun 2006 18:46:06 +0000 |
lu_zero |
Cosmetics: should not hurt performance, scream if are
libavcodec
|
Sat, 17 Jun 2006 09:27:36 +0000 |
diego |
Rename version from CVS to the more sensible HEAD.
libavcodec
|
Fri, 16 Jun 2006 20:41:33 +0000 |
mru |
The AAC frame header uses 13 bits for the frame size, so the buffer should
libavcodec
|
Thu, 15 Jun 2006 09:20:31 +0000 |
michael |
10l to whoever wrote this
libavcodec
|
Mon, 12 Jun 2006 21:34:43 +0000 |
mru |
MIPS doesn't like unaligned accesses
libavcodec
|
Mon, 12 Jun 2006 09:30:17 +0000 |
lorenm |
h264: accept rbsp_trailing longer than 1 byte
libavcodec
|
Fri, 09 Jun 2006 22:26:03 +0000 |
mru |
use ifeq(...,yes) instead of ifdef
libavcodec
|
Fri, 09 Jun 2006 13:10:37 +0000 |
bcoudurier |
fix closed gop flag
libavcodec
|
Sun, 04 Jun 2006 21:54:58 +0000 |
michael |
support doing motion estimation and compensation without any residual transform or coding
libavcodec
|
Sat, 03 Jun 2006 22:18:03 +0000 |
lu_zero |
put_pixels16_l2_altivec and avg_pixels16_l2_altivec
libavcodec
|
Sat, 03 Jun 2006 19:04:56 +0000 |
lorenm |
ADPCM: trellis quantization
libavcodec
|
Sat, 03 Jun 2006 06:26:04 +0000 |
corey |
Make B-frame reduction sensitivity by b_strategy/vb_strategy = 1
libavcodec
|
Sat, 03 Jun 2006 04:38:11 +0000 |
lorenm |
adpcm_ima & adpcm_yamaha: improved quantization
libavcodec
|
Fri, 02 Jun 2006 07:50:12 +0000 |
banan |
Fixed a possible bug, checked against the assembly.
libavcodec
|
Thu, 01 Jun 2006 23:22:07 +0000 |
diego |
Ignore all generated files.
libavcodec
|
Thu, 01 Jun 2006 21:57:44 +0000 |
mru |
remove redundant make variable SUBDIR
libavcodec
|
Thu, 01 Jun 2006 21:37:48 +0000 |
diego |
libavcodec/libpostproc ---> libpostproc
libavcodec
|
Thu, 01 Jun 2006 07:31:59 +0000 |
banan |
Flash Screen Video decoder (fourcc:FSV1)
libavcodec
|
Wed, 31 May 2006 04:52:02 +0000 |
kostya |
Palette support for newer KMVC
libavcodec
|
Tue, 30 May 2006 19:45:12 +0000 |
lorenm |
Snow: don't try to encode lossless with 9/7 wavelet, because it isn't lossless.
libavcodec
|
Tue, 30 May 2006 19:40:28 +0000 |
lorenm |
Snow: cosmetics
libavcodec
|
Tue, 30 May 2006 16:42:29 +0000 |
lorenm |
Snow: scale predicted mv based on which reference frame the neighbors used.
libavcodec
|
Tue, 30 May 2006 06:49:15 +0000 |
lorenm |
Snow: cosmetics
libavcodec
|
Tue, 30 May 2006 05:44:22 +0000 |
lorenm |
Snow: fix subband weighting in wavelet cmp functions. use 32x32 cmp in iterative motion estimation.
libavcodec
|
Tue, 30 May 2006 04:51:58 +0000 |
lorenm |
Snow: 10l. 1pass ratecontrol failed to set snow's internal quant.
libavcodec
|
Mon, 29 May 2006 22:44:16 +0000 |
corey |
Make b_frame_strategy not fail on pass 2, but still print a notice.
libavcodec
|
Mon, 29 May 2006 19:25:46 +0000 |
rtogni |
10000l don't reuse outer loop index in inner loops
libavcodec
|
Mon, 29 May 2006 16:50:37 +0000 |
michael |
fabs is better then abs for floats ...
libavcodec
|
Mon, 29 May 2006 16:39:40 +0000 |
michael |
typo me thinks ...
libavcodec
|
Mon, 29 May 2006 16:30:56 +0000 |
michael |
cbp must be >0 here or we are in troubble
libavcodec
|
Sun, 28 May 2006 22:44:14 +0000 |
lorenm |
h264: MBAFF interlaced decoding
libavcodec
|
Sun, 28 May 2006 22:28:08 +0000 |
lorenm |
h264: faster fill_rectangle()
libavcodec
|
Sun, 28 May 2006 21:44:47 +0000 |
lorenm |
Snow multiple reference frames
libavcodec
|
Sun, 28 May 2006 12:38:10 +0000 |
lorenm |
Snow 1pass ratecontrol
libavcodec
|
Fri, 26 May 2006 15:44:29 +0000 |
bcoudurier |
fix mbd bits bug, finally
libavcodec
|
Fri, 26 May 2006 15:37:11 +0000 |
diego |
Remove all .cvsignore files, they are no longer necessary.
libavcodec
|
Wed, 17 May 2006 03:03:53 +0000 |
kostya |
Now MPlayer should understand Smacker audio and video codecs.
libavcodec
|
Tue, 16 May 2006 15:19:54 +0000 |
bcoudurier |
MPEG-2 4:2:2 encoding support
libavcodec
|
Tue, 16 May 2006 14:24:45 +0000 |
gpoirier |
fix compilation of 3dnowext instinsincs, both on ia32 and AMD64.
libavcodec
|
Sun, 14 May 2006 22:00:03 +0000 |
gpoirier |
Add 3dnow intrinsic support for AMD64 machines: -march=athlon means IA32 for GCC, so use -m3dnow instead.
libavcodec
|
Sun, 14 May 2006 14:21:06 +0000 |
bcoudurier |
add quicktime uncompressed 8bit 4:2:2 support
libavcodec
|
Sat, 13 May 2006 17:16:58 +0000 |
bcoudurier |
add MPEG-2 intra vlc support
libavcodec
|
Sat, 13 May 2006 15:43:51 +0000 |
bcoudurier |
remove unused variable
libavcodec
|
Sat, 13 May 2006 10:45:26 +0000 |
michael |
sanity checks, some might have been exploitable ...
libavcodec
|
Thu, 11 May 2006 23:17:23 +0000 |
mru |
add unaligned16() and unaligned64()
libavcodec
|
Thu, 11 May 2006 00:28:30 +0000 |
banan |
Cosmetics. Add the defines needed for debug output.
libavcodec
|
Thu, 11 May 2006 00:06:50 +0000 |
lorenm |
fix a crash on x86_64
libavcodec
|
Wed, 10 May 2006 11:59:09 +0000 |
bcoudurier |
fix alac decoder on little endian
libavcodec
|
Wed, 10 May 2006 11:05:03 +0000 |
michael |
cosmetics (initalize variables where they are used)
libavcodec
|
Wed, 10 May 2006 10:57:27 +0000 |
michael |
decoders should (IMHO) not duplicate frames, the application can do this if it wants
libavcodec
|
Tue, 09 May 2006 08:40:38 +0000 |
michael |
allow insane gop sizes if the user doesnt care about playable streams (doesnt want compliance to any standard)
libavcodec
|
Mon, 08 May 2006 13:44:54 +0000 |
michael |
add outcommented chunk of code to handle stuffing MBs at the end of slices (IMHO the standard doesnt allow this and there are no real world files which need it)
libavcodec
|
Sun, 07 May 2006 17:30:00 +0000 |
bcoudurier |
vorbis 5:1 decoding fix, fix mi2_vorbis51.mp4, patch by Denes Balatoni <dbalatoni at programozo dot hu>
libavcodec
|
Sun, 07 May 2006 11:48:07 +0000 |
michael |
make zero motion vector threshold user setable
libavcodec
|
Sat, 06 May 2006 10:57:38 +0000 |
diego |
Further simplify AMR build.
libavcodec
|
Fri, 05 May 2006 18:08:01 +0000 |
lorenm |
reinit quant matrices if pps is overwritten by another of the same pps_id.
libavcodec
|
Fri, 05 May 2006 10:27:44 +0000 |
diego |
Ignore errors from recursive AMR cleans.
libavcodec
|
Fri, 05 May 2006 09:41:06 +0000 |
diego |
Unconditionally clean AMR subdirs.
libavcodec
|
Tue, 02 May 2006 18:45:04 +0000 |
lu_zero |
Macosx fix
libavcodec
|
Tue, 02 May 2006 09:03:22 +0000 |
michael |
d10 decoding fix
libavcodec
|
Mon, 01 May 2006 00:28:36 +0000 |
aurel |
clip_uint8 now return an uint8_t so no need to &0xFF
libavcodec
|
Sun, 30 Apr 2006 19:31:45 +0000 |
lorenm |
warn on interlaced streams
libavcodec
|
Sat, 29 Apr 2006 00:43:15 +0000 |
lorenm |
don't force asserts in release builds. 2% faster h264.
libavcodec
|
Fri, 28 Apr 2006 23:16:42 +0000 |
lorenm |
memory leak.
libavcodec
|
Fri, 28 Apr 2006 17:29:07 +0000 |
michael |
use previous qscale for intra_dc_threshold check
libavcodec
|
Fri, 28 Apr 2006 17:03:52 +0000 |
michael |
missmatch control for mpeg2 intra dequantization if bitexact=1
libavcodec
|
Fri, 28 Apr 2006 14:19:11 +0000 |
banan |
Revert bad ac3enc commit, the commited code was bigger and slower.
libavcodec
|
Fri, 28 Apr 2006 07:46:13 +0000 |
gpoirier |
Remove unused and unsupported Cyrix's "Extended MMX",
libavcodec
|
Thu, 27 Apr 2006 11:49:15 +0000 |
diego |
Enable AMR_NB decoder/encoder when either AMR_NB or AMR_NB_FIXED is defined.
libavcodec
|
Thu, 27 Apr 2006 03:31:26 +0000 |
diego |
Fix amr_nb-fixed build.
libavcodec
|
Thu, 27 Apr 2006 02:33:27 +0000 |
diego |
Disentangle dependencies between amr_nb and amr_nb-fixed: amr_nb-fixed does
libavcodec
|
Thu, 27 Apr 2006 02:23:42 +0000 |
diego |
cosmetics: Group all AMR variables together, add some newlines.
libavcodec
|
Thu, 27 Apr 2006 02:19:42 +0000 |
diego |
Misplaced CLEANAMR.
libavcodec
|
Thu, 27 Apr 2006 02:10:49 +0000 |
diego |
CLEANAMRWB --> CLEANAMR typo
libavcodec
|
Tue, 25 Apr 2006 19:54:02 +0000 |
lu_zero |
13% faster inner_add_yblock
libavcodec
|
Tue, 25 Apr 2006 17:29:31 +0000 |
lu_zero |
40% faster decode
libavcodec
|
Sun, 23 Apr 2006 21:11:31 +0000 |
rtognimp |
Vorbis specs requires blocksize_1 >= blocksize_0, error if it's false.
libavcodec
|
Sat, 22 Apr 2006 21:21:16 +0000 |
banan |
Patch to generate the ac3 window, based on code by Justin Ruggles.
libavcodec
|
Fri, 21 Apr 2006 19:22:14 +0000 |
lorenm |
10l in h264 vismb/vismv (broke on 2006-03-09)
libavcodec
|
Thu, 20 Apr 2006 19:23:57 +0000 |
rtognimp |
dtsdec.c copies one input packet at a time to a (static) buffer of size
libavcodec
|
Wed, 19 Apr 2006 19:51:56 +0000 |
reimar |
make "size" variable in avpicture_alloc signed, since avpicture_get_size
libavcodec
|
Tue, 18 Apr 2006 03:48:30 +0000 |
gpoirier |
gcc-2.95 compile fix, patch by Wolfram Gloger <wmglo A dent PIS med PIS uni-muenchen PIS de>
libavcodec
|
Sun, 16 Apr 2006 03:40:04 +0000 |
lu_zero |
typo in the gcc handmade regalloc trigger
libavcodec
|
Sat, 15 Apr 2006 15:05:53 +0000 |
diego |
Have EXTRALIBS appear after other link options, fixes shared build on Cygwin.
libavcodec
|
Sat, 15 Apr 2006 14:15:09 +0000 |
diego |
Revert Windows "warning" message.
libavcodec
|
Sat, 15 Apr 2006 12:52:01 +0000 |
diego |
Fix SIGSEGV in rv10-null-pointer-500k.rm.
libavcodec
|
Fri, 14 Apr 2006 20:45:08 +0000 |
michael |
fix "concealing 0 DC, 0 AC, 0 MV errors" bug
libavcodec
|
Fri, 14 Apr 2006 10:37:40 +0000 |
michael |
ffv1 and ffvhuff havnt changed since a long time and noone proposed any
libavcodec
|
Mon, 10 Apr 2006 12:12:26 +0000 |
banan |
AC3 encoding volume fix, by Justin Ruggles jruggle earthlink net.
libavcodec
|
Mon, 10 Apr 2006 07:45:29 +0000 |
lucabe |
Baptiste COUDURIER's padding patch (reworked by me a little bit).
libavcodec
|
Sun, 09 Apr 2006 06:53:40 +0000 |
rfelker |
signedness error caused broken decoding
libavcodec
|
Sun, 09 Apr 2006 06:04:00 +0000 |
rfelker |
100l to loren. at least this fixes the compile error, but the code is still broken (decoding buggy/crashing)
libavcodec
|
Fri, 07 Apr 2006 21:08:34 +0000 |
rtognimp |
Add missing external declaration for kmvc codec
libavcodec
|
Fri, 07 Apr 2006 16:59:57 +0000 |
kostya |
KMVC (used in Worms games) decoder. Works fine with samples from MPHQ
libavcodec
|
Fri, 07 Apr 2006 12:40:28 +0000 |
lu_zero |
hadamard8_diff* enabled on linux/ppc
libavcodec
|
Wed, 05 Apr 2006 18:56:22 +0000 |
mru |
s/SAMPLT_FMT_NONE/SAMPLE_FMT_NONE/
libavcodec
|
Wed, 05 Apr 2006 04:13:41 +0000 |
lorenm |
gmc_mmx tweaks
libavcodec
|
Tue, 04 Apr 2006 12:35:55 +0000 |
lucabe |
Introduce swscale interface in libavcodec
libavcodec
|
Tue, 04 Apr 2006 09:23:45 +0000 |
lorenm |
mmx implementation of 3-point GMC. (5x faster than C)
libavcodec
|
Mon, 03 Apr 2006 07:52:24 +0000 |
lorenm |
2x faster ff_mpeg4_set_direct_mv
libavcodec
|
Mon, 03 Apr 2006 00:51:09 +0000 |
corey |
AC3: support encoding fractional frame sizes
libavcodec
|
Fri, 31 Mar 2006 20:43:37 +0000 |
michael |
remove mpegvideo.c img resample dependancy
libavcodec
|
Fri, 31 Mar 2006 20:40:22 +0000 |
michael |
get_xbits() optimization
libavcodec
|
Fri, 31 Mar 2006 18:22:35 +0000 |
michael |
remove useless code
libavcodec
|
Fri, 31 Mar 2006 18:04:36 +0000 |
michael |
simplify loop a little
libavcodec
|
Fri, 31 Mar 2006 17:43:28 +0000 |
michael |
do UPDATE_CACHE only when needed (which should be VERY rare)
libavcodec
|
Fri, 31 Mar 2006 17:01:58 +0000 |
michael |
+ (sign&1) -> -sign (1 instruction less)
libavcodec
|
Fri, 31 Mar 2006 16:50:43 +0000 |
michael |
avoid hard to predict branch (idea by arpi)
libavcodec
|
Fri, 31 Mar 2006 13:06:24 +0000 |
michael |
warn user about crappy OS patch by (Steve Lhomme <steve.lhomme@free.fr>)
libavcodec
|
Fri, 31 Mar 2006 09:59:53 +0000 |
lu_zero |
Proper typecast for vector bool
libavcodec
|
Thu, 30 Mar 2006 16:24:38 +0000 |
lucabe |
move enum PixelFormat from libavcodec to libavutil
libavcodec
|
Thu, 30 Mar 2006 14:58:36 +0000 |
michael |
reverting 1.31->1.33
libavcodec
|
Thu, 30 Mar 2006 14:13:03 +0000 |
michael |
dont forget table_size in the decode_frame return value
libavcodec
|
Thu, 30 Mar 2006 04:33:05 +0000 |
corey |
- Add new file internal.h for common internal-use-only functions.
libavcodec
|
Wed, 29 Mar 2006 21:11:57 +0000 |
michael |
fix gcc 2.95 compilation
libavcodec
|
Wed, 29 Mar 2006 18:42:50 +0000 |
lu_zero |
Cast cruft in order to support Apple gcc
libavcodec
|
Wed, 29 Mar 2006 11:01:17 +0000 |
diego |
Ignore apiexample and test programs.
libavcodec
|
Wed, 29 Mar 2006 10:59:09 +0000 |
diego |
EXTRALIBS already contains -lm, no need to add it explicitly.
libavcodec
|
Wed, 29 Mar 2006 09:20:44 +0000 |
michael |
avoid if(i>=63) check at the end of decode_block()
libavcodec
|
Wed, 29 Mar 2006 09:13:43 +0000 |
michael |
avoid i++ in decode_block()
libavcodec
|
Wed, 29 Mar 2006 08:41:53 +0000 |
michael |
minor optimization of decode_block()
libavcodec
|
Wed, 29 Mar 2006 01:59:24 +0000 |
michael |
optimizations by arpi
libavcodec
|
Mon, 27 Mar 2006 22:22:50 +0000 |
reimar |
NuppelVideo/MythTVVideo support, including rtjpeg decoder
libavcodec
|
Mon, 27 Mar 2006 12:51:19 +0000 |
lu_zero |
altivec support for snow
libavcodec
|
Mon, 27 Mar 2006 12:45:27 +0000 |
lu_zero |
altivec support for snow
libavcodec
|
Sun, 26 Mar 2006 17:07:02 +0000 |
banan |
Use a more descriptive error message.
libavcodec
|
Sat, 25 Mar 2006 15:37:08 +0000 |
kostya |
Don't use get_vlc2() when tree is one symbol. This fixes audio decoding
libavcodec
|
Sat, 25 Mar 2006 09:46:43 +0000 |
lorenm |
10l in 1.199 (write_back_motion with B-pyramid + spatial)
libavcodec
|
Sat, 25 Mar 2006 08:41:14 +0000 |
lorenm |
simplified and slightly faster h264_chroma_mc8_mmx
libavcodec
|
Fri, 24 Mar 2006 01:33:22 +0000 |
mru |
ST16 is undefined for non-GNU compilers.
libavcodec
|
Thu, 23 Mar 2006 21:54:46 +0000 |
lorenm |
prefetch pixels for future motion compensation. 4-10% faster mpeg1/2/4 decoding (on an athlon-xp).
libavcodec
|
Thu, 23 Mar 2006 20:16:36 +0000 |
lorenm |
prefetch pixels for future motion compensation. 2-5% faster h264.
libavcodec
|
Wed, 22 Mar 2006 22:08:28 +0000 |
lorenm |
10l
libavcodec
|
Wed, 22 Mar 2006 22:05:00 +0000 |
lorenm |
added mmx implementation of h264_chroma_mc2
libavcodec
|
Wed, 22 Mar 2006 12:41:02 +0000 |
lorenm |
1.5x faster write_back_motion, 1-3% overall
libavcodec
|
Wed, 22 Mar 2006 12:08:35 +0000 |
gpoirier |
add MMX and SSE versions of ff_snow_inner_add_yblock
libavcodec
|
Tue, 21 Mar 2006 21:51:07 +0000 |
corey |
snow mmx+sse2 optimizations, part 4
libavcodec
|
Tue, 21 Mar 2006 17:27:47 +0000 |
kostya |
Smacker demuxer and decoder.
libavcodec
|
Mon, 20 Mar 2006 22:48:08 +0000 |
mru |
since Michael prefers to keep dsputil.h private to libavcodec
libavcodec
|
Mon, 20 Mar 2006 22:27:59 +0000 |
gpoirier |
Add the mmx and sse2 implementations of ff_snow_vertical_compose().
libavcodec
|
Mon, 20 Mar 2006 05:52:23 +0000 |
corey |
Snow mmx + sse2 part 2
libavcodec
|
Mon, 20 Mar 2006 01:18:56 +0000 |
michael |
fixing interlaced direct mode field select values
libavcodec
|
Sun, 19 Mar 2006 11:49:37 +0000 |
michael |
various fixes for xvid_rc
libavcodec
|
Sat, 18 Mar 2006 20:43:48 +0000 |
michael |
fix frametypes with xvid_rc
libavcodec
|
Sat, 18 Mar 2006 02:46:39 +0000 |
michael |
fixing bquant_offset
libavcodec
|
Sat, 18 Mar 2006 02:29:58 +0000 |
michael |
segfault fix
libavcodec
|
Fri, 17 Mar 2006 16:40:10 +0000 |
corey |
make ff_rate_control_init() bail out if rc_strategy==1 and lavc wasn't
libavcodec
|
Fri, 17 Mar 2006 12:08:46 +0000 |
gpoirier |
10l: Only set *compose97i *add_yblock to dsputils context if we are building with Snow enabled
libavcodec
|
Thu, 16 Mar 2006 19:18:18 +0000 |
gpoirier |
First part of a series of speed-enchancing patches.
libavcodec
|
Tue, 14 Mar 2006 00:22:05 +0000 |
michael |
dont pass intra flag if its always 0
libavcodec
|
Mon, 13 Mar 2006 23:46:47 +0000 |
michael |
fixing coverity warnig CID: 253 (reading over the end of the aspect_ratio array for illegal aspect ratios)
libavcodec
|
Mon, 13 Mar 2006 23:29:00 +0000 |
michael |
fix coverity warning CID: 255 (uninitalized variable used to build tables which arent used, well there is a slight change of a FPU exception maybe ...)
libavcodec
|
Mon, 13 Mar 2006 01:27:13 +0000 |
lorenm |
seed iterative_me with mvs from conventional search.
libavcodec
|
Mon, 13 Mar 2006 01:26:06 +0000 |
lorenm |
obey vqscale in 2nd pass
libavcodec
|
Sun, 12 Mar 2006 19:55:52 +0000 |
michael |
reset interlaced_dct flag
libavcodec
|
Sat, 11 Mar 2006 04:26:55 +0000 |
kostya |
16-bit DPCM and stereo support for Sierra VMD
libavcodec
|
Sat, 11 Mar 2006 00:19:32 +0000 |
michael |
av_free -> av_freep
libavcodec
|
Sat, 11 Mar 2006 00:18:43 +0000 |
michael |
fix %8 != 0 w/h
libavcodec
|
Fri, 10 Mar 2006 22:00:36 +0000 |
michael |
asserts to check if assumed conditions really are true
libavcodec
|
Fri, 10 Mar 2006 21:20:49 +0000 |
michael |
out of array read fix
libavcodec
|
Fri, 10 Mar 2006 20:58:42 +0000 |
michael |
out of array read fix
libavcodec
|
Fri, 10 Mar 2006 20:40:52 +0000 |
michael |
cleanup picture / debug output code
libavcodec
|
Fri, 10 Mar 2006 19:42:51 +0000 |
michael |
fixing out of array access (only cosmetic, this should never have had a end user vissible effect)
libavcodec
|
Fri, 10 Mar 2006 19:10:46 +0000 |
michael |
add assert to clarify that we know what we are doing
libavcodec
|
Fri, 10 Mar 2006 18:40:41 +0000 |
michael |
fixing uninitalized dc_pred_dir
libavcodec
|
Fri, 10 Mar 2006 18:37:18 +0000 |
michael |
very minor optimization
libavcodec
|
Fri, 10 Mar 2006 18:34:51 +0000 |
michael |
unused variable
libavcodec
|
Fri, 10 Mar 2006 13:55:48 +0000 |
bcoudurier |
Fix cropping, depending on enc pix fmt
libavcodec
|
Thu, 09 Mar 2006 08:05:45 +0000 |
diego |
Alignment fixes, caused problems on SPARC.
libavcodec
|
Wed, 08 Mar 2006 11:43:10 +0000 |
diego |
(f)printf --> av_log conversion
libavcodec
|
Wed, 08 Mar 2006 09:26:57 +0000 |
banan |
Init simplification and 2% faster wma_decode_block on amd64 with tables use
libavcodec
|
Wed, 08 Mar 2006 04:13:55 +0000 |
corey |
3DNow! & Extended 3DNow! versions of FFT
libavcodec
|
Tue, 07 Mar 2006 22:45:56 +0000 |
lorenm |
h264_idct8_add_mmx
libavcodec
|
Tue, 07 Mar 2006 22:33:32 +0000 |
lorenm |
h264_idct_add only needs mmx1
libavcodec
|
Mon, 06 Mar 2006 22:06:33 +0000 |
diego |
Proper mangling information for symbols in OS X Mach-O shared objects.
libavcodec
|
Mon, 06 Mar 2006 15:09:04 +0000 |
michael |
switch flac to av_crc
libavcodec
|
Mon, 06 Mar 2006 14:53:13 +0000 |
michael |
switch ac3enc to av_crc
libavcodec
|
Mon, 06 Mar 2006 14:13:01 +0000 |
michael |
generic crc calculation code
libavcodec
|
Mon, 06 Mar 2006 09:54:09 +0000 |
romansh |
I still don't think this should be here. Note: without this code DV encoder
libavcodec
|
Mon, 06 Mar 2006 08:54:33 +0000 |
romansh |
DVCPRO50 support.
libavcodec
|
Sun, 05 Mar 2006 20:25:18 +0000 |
gpoirier |
use xorps instead of mulps to toggle the sign of a float, as suggested by Software Optimization Guide for AMD64 Processors.
libavcodec
|
Sun, 05 Mar 2006 19:02:35 +0000 |
lorenm |
gcc2.95 workaround
libavcodec
|
Sun, 05 Mar 2006 12:32:24 +0000 |
mru |
Make faac_decode_frame return -1 on error and not 0 which avoids
libavcodec
|
Sat, 04 Mar 2006 19:56:01 +0000 |
lorenm |
remove some useless instructions
libavcodec
|
Sat, 04 Mar 2006 17:34:17 +0000 |
diego |
Make -xy help output consistent, output an empty line before and after.
libavcodec
|
Sat, 04 Mar 2006 03:57:33 +0000 |
lorenm |
keyframe flag was wrong if SEIs followed the keyframe
libavcodec
|
Fri, 03 Mar 2006 21:33:06 +0000 |
michael |
PAL8 support (fixed BLUR8.AVI)
libavcodec
|
Fri, 03 Mar 2006 20:36:08 +0000 |
michael |
fix segfault with BLUR8.AVI
libavcodec
|
Thu, 02 Mar 2006 21:47:53 +0000 |
michael |
fix infinite loop
libavcodec
|
Thu, 02 Mar 2006 13:55:49 +0000 |
michael |
cleanup IMA-ADPCM WAV decoder
libavcodec
|
Thu, 02 Mar 2006 08:21:08 +0000 |
lorenm |
4% faster h264_qpel_mc
libavcodec
|
Wed, 01 Mar 2006 23:19:04 +0000 |
kabi |
* bugfixing call reference
libavcodec
|
Wed, 01 Mar 2006 22:59:22 +0000 |
michael |
fix decoding of mpeg2-trunc.vob
libavcodec
|
Tue, 28 Feb 2006 21:55:18 +0000 |
aurel |
use vec_splat_u32 to initialise a v16ui (patch by Likai Liu < liulk _at_ cs.bu.edu >)
libavcodec
|
Tue, 28 Feb 2006 02:54:48 +0000 |
romansh |
Assign class 2 to most macroblocks by default, instead of a more conservative
libavcodec
|
Mon, 27 Feb 2006 12:17:20 +0000 |
banan |
64bit fixes for the tta decoder, sizeof(long) is 8 on amd64, 4 on x86, the patch
libavcodec
|
Mon, 27 Feb 2006 05:04:05 +0000 |
romansh |
Not that we're that far from being an *initial* implementation, but
libavcodec
|
Mon, 27 Feb 2006 04:50:06 +0000 |
romansh |
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
libavcodec
|
Sun, 26 Feb 2006 15:40:08 +0000 |
michael |
remove wrong assert()
libavcodec
|
Sun, 26 Feb 2006 15:24:42 +0000 |
michael |
replace for loop with 2 asserts()
libavcodec
|
Sat, 25 Feb 2006 22:58:26 +0000 |
michael |
size[0-3] are not initialized (and can get random negative trash
libavcodec
|
Sat, 25 Feb 2006 22:41:31 +0000 |
mru |
kill some warnings
libavcodec
|
Sat, 25 Feb 2006 22:15:24 +0000 |
lorenm |
fix a memory leak on seeking.
libavcodec
|
Fri, 24 Feb 2006 09:16:26 +0000 |
michael |
10l (forgot EOBs)
libavcodec
|
Thu, 23 Feb 2006 13:05:37 +0000 |
michael |
dont lowwer qnos of more blocks then needed
libavcodec
|
Thu, 23 Feb 2006 10:07:41 +0000 |
gpoirier |
Give a hint about what is the expected the data type of command line options.
libavcodec
|
Thu, 23 Feb 2006 08:56:53 +0000 |
michael |
fixing dv_guess_qnos()
libavcodec
|
Thu, 23 Feb 2006 00:16:45 +0000 |
michael |
print a big warning if we mess up and run out of space ...
libavcodec
|
Wed, 22 Feb 2006 05:59:44 +0000 |
lorenm |
minor simplifications in cabac_mb_type
libavcodec
|
Tue, 21 Feb 2006 22:24:19 +0000 |
diego |
Fix AltiVec H.264 decoding on FSF gcc.
libavcodec
|
Tue, 21 Feb 2006 22:05:13 +0000 |
alex |
added none/8bit/24bit audio formats and defaulting to s16 for now (once the system works like pix_fmt, the defaulting should be changed to SAMPLE_FMT_NONE)
libavcodec
|
Tue, 21 Feb 2006 00:03:10 +0000 |
alex |
explain extradata and pass avctx to av_log's
libavcodec
|
Mon, 20 Feb 2006 23:22:02 +0000 |
diego |
ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
libavcodec
|
Mon, 20 Feb 2006 19:01:29 +0000 |
mru |
pass noise reduction option to x264
libavcodec
|
Sun, 19 Feb 2006 22:44:35 +0000 |
diego |
Increase maximum number of B-frames, necessary for H.264 encoding.
libavcodec
|
Sun, 19 Feb 2006 10:20:27 +0000 |
michael |
RMP4 ("xvid fork") decoding support
libavcodec
|
Fri, 17 Feb 2006 19:48:11 +0000 |
mellum |
Change license header to LGPL for consistency.
libavcodec
|
Fri, 17 Feb 2006 03:17:42 +0000 |
melanson |
complete AVS playback system (from Creature Shock computer game),
libavcodec
|
Thu, 16 Feb 2006 01:16:12 +0000 |
lorenm |
don't arbitrarily limit delta_qp
libavcodec
|
Thu, 16 Feb 2006 00:09:23 +0000 |
aurel |
add Creative 8 bits ADPCM schemes support
libavcodec
|
Tue, 14 Feb 2006 05:40:53 +0000 |
lorenm |
fix some crashes on negative nalsize.
libavcodec
|
Mon, 13 Feb 2006 18:13:13 +0000 |
lorenm |
fix some crashes when missing frames
libavcodec
|
Mon, 13 Feb 2006 12:53:25 +0000 |
mru |
move common parts of makefiles into common.mak
libavcodec
|
Mon, 13 Feb 2006 12:00:27 +0000 |
alex |
increase audio buffer to 1second of 48khz float audio
libavcodec
|
Sun, 12 Feb 2006 17:47:30 +0000 |
melanson |
add another set of zlib guards
libavcodec
|
Sun, 12 Feb 2006 16:56:06 +0000 |
melanson |
make TSCC endian-safe, PPC testing courtesy of Diego B.
libavcodec
|
Sun, 12 Feb 2006 08:53:29 +0000 |
melanson |
dosbox native ZMBV decoder, courtesy of Kostya
libavcodec
|
Sun, 12 Feb 2006 06:49:40 +0000 |
melanson |
complete American Laser Games MM playback system, courtesy of Peter Ross
libavcodec
|
Sun, 12 Feb 2006 02:15:19 +0000 |
alex |
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change MAX_AUDIO_FRAME_SIZE)
libavcodec
|
Sat, 11 Feb 2006 21:42:11 +0000 |
diego |
Move libpostproc compilation to the top-level Makefile.
libavcodec
|
Sat, 11 Feb 2006 20:54:40 +0000 |
diego |
Quote all installation paths to protect against spaces in the path.
libavcodec
|
Sat, 11 Feb 2006 20:53:55 +0000 |
diego |
libpostproc installs into a different directory that needs to be created.
libavcodec
|
Sat, 11 Feb 2006 20:40:01 +0000 |
diego |
100l typo: forgotten $
libavcodec
|
Sat, 11 Feb 2006 19:39:05 +0000 |
henry |
- fix insufficient code length for exp_vlc
libavcodec
|
Sat, 11 Feb 2006 19:30:55 +0000 |
diego |
Simplify header installation.
libavcodec
|
Sat, 11 Feb 2006 18:50:45 +0000 |
diego |
Separate library install into static and shared installation.
libavcodec
|
Sat, 11 Feb 2006 17:44:06 +0000 |
diego |
Separate header file installation from the general install target.
libavcodec
|
Sat, 11 Feb 2006 16:50:45 +0000 |
diego |
Add installlib and install-headers targets like everywhere else.
libavcodec
|
Sat, 11 Feb 2006 16:46:09 +0000 |
diego |
Install static libpostproc if CONFIG_PP is set.
libavcodec
|
Sat, 11 Feb 2006 16:17:27 +0000 |
diego |
Install libpostproc headers if CONFIG_PP is set.
libavcodec
|
Fri, 10 Feb 2006 11:59:38 +0000 |
al |
Don't use pow/powf functions where we just need integer arithmetic.
libavcodec
|
Fri, 10 Feb 2006 06:55:25 +0000 |
lorenm |
h264: special case dc-only idct. ~1% faster overall
libavcodec
|
Fri, 10 Feb 2006 01:19:54 +0000 |
mru |
use get_bits1/skip_bits[1] in ac3 and aac parsers
libavcodec
|
Thu, 09 Feb 2006 09:38:03 +0000 |
michael |
fix segfault on broken streams
libavcodec
|
Thu, 09 Feb 2006 02:43:23 +0000 |
lorenm |
10l in 1.12
libavcodec
|
Wed, 08 Feb 2006 07:04:32 +0000 |
lorenm |
slightly faster loopfilter
libavcodec
|
Wed, 08 Feb 2006 01:11:48 +0000 |
mru |
bump version numbers and update docs for adts aac support
libavcodec
|
Wed, 08 Feb 2006 01:10:07 +0000 |
mru |
create adts stream if CODEC_FLAG_GLOBAL_HEADER not set
libavcodec
|
Wed, 08 Feb 2006 00:50:22 +0000 |
mru |
adts aac parser
libavcodec
|
Wed, 08 Feb 2006 00:30:58 +0000 |
mru |
decode adts aac streams
libavcodec
|
Tue, 07 Feb 2006 16:10:48 +0000 |
lorenm |
10l (x86_64)
libavcodec
|
Tue, 07 Feb 2006 10:52:25 +0000 |
lorenm |
18% faster put_h264_qpel16_mc[13]2_mmx2
libavcodec
|
Tue, 07 Feb 2006 07:35:03 +0000 |
lorenm |
11% faster put_h264_qpel16_v_lowpass_mmx2
libavcodec
|
Tue, 07 Feb 2006 06:25:14 +0000 |
lorenm |
15% faster put_h264_qpel16_hv_lowpass_mmx2
libavcodec
|
Mon, 06 Feb 2006 11:21:26 +0000 |
michael |
1 goto 1 fix
libavcodec
|
Mon, 06 Feb 2006 11:21:10 +0000 |
banan |
Fix broken cosmetics commit and add a check for valid headers.
libavcodec
|
Mon, 06 Feb 2006 11:03:37 +0000 |
banan |
Small cosmetics and better variable names.
libavcodec
|
Sun, 05 Feb 2006 13:35:17 +0000 |
diego |
MSVC-compatible __align8/__align16 declaration
libavcodec
|
Sun, 05 Feb 2006 10:16:20 +0000 |
al |
Correct the relation between floors of type 0 and block sizes.
libavcodec
|
Sat, 04 Feb 2006 22:18:45 +0000 |
michael |
simplify
libavcodec
|
Sat, 04 Feb 2006 20:32:02 +0000 |
michael |
faster find_startcode()
libavcodec
|
Sat, 04 Feb 2006 10:04:13 +0000 |
al |
Cosmetic: Fix indentation.
libavcodec
|
Sat, 04 Feb 2006 09:59:48 +0000 |
al |
10l (malloc check with the wrong pointer)
libavcodec
|
Sat, 04 Feb 2006 08:55:34 +0000 |
al |
Added support for vorbis files containing floor type 0.
libavcodec
|
Thu, 02 Feb 2006 18:38:47 +0000 |
michael |
output last ac3 frame and simplify
libavcodec
|
Thu, 02 Feb 2006 13:07:30 +0000 |
michael |
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
libavcodec
|
Thu, 02 Feb 2006 09:24:13 +0000 |
diego |
Set interlaced_frame and top_field_first according to coded_frame.
libavcodec
|
Thu, 02 Feb 2006 02:36:27 +0000 |
michael |
list of supported pix_fmts
libavcodec
|
Thu, 02 Feb 2006 02:28:33 +0000 |
michael |
JPEG-LS codec by (Kostya | kostya.forjunk gmail com)
libavcodec
|
Tue, 31 Jan 2006 00:17:13 +0000 |
diego |
Fix silly typos.
libavcodec
|
Mon, 30 Jan 2006 23:41:27 +0000 |
mru |
add static keyword to some functions
libavcodec
|
Mon, 30 Jan 2006 23:33:19 +0000 |
mru |
add static keyword to some functions
libavcodec
|
Mon, 30 Jan 2006 22:59:09 +0000 |
mru |
long is better than int for pointer differences
libavcodec
|
Mon, 30 Jan 2006 00:22:41 +0000 |
diego |
On MinGW it is not possible to build shared and static libraries at once.
libavcodec
|
Sun, 29 Jan 2006 18:32:55 +0000 |
diego |
Simplify LDFLAGS handling for MinGW.
libavcodec
|
Sat, 28 Jan 2006 16:05:06 +0000 |
aurel |
make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)
libavcodec
|
Sat, 28 Jan 2006 00:57:59 +0000 |
lorenm |
fix crash on height < 16 pixels.
libavcodec
|
Fri, 27 Jan 2006 23:24:24 +0000 |
corey |
Add a newline to b_frame_strategy error message.
libavcodec
|
Fri, 27 Jan 2006 13:19:13 +0000 |
michael |
fixing bframe strategy 2
libavcodec
|
Thu, 26 Jan 2006 23:42:30 +0000 |
diego |
Remove obscure Makefile.bak entry from distclean rules.
libavcodec
|
Wed, 25 Jan 2006 22:10:13 +0000 |
diego |
warning fixes by Luca Abeni, lucabe72 ##@## email ##.## it
libavcodec
|
Wed, 25 Jan 2006 02:16:27 +0000 |
michael |
10l forgot #ifdef CONFIG_XVID
libavcodec
|
Tue, 24 Jan 2006 21:57:26 +0000 |
michael |
xvid ratecontrol support
libavcodec
|
Tue, 24 Jan 2006 10:33:14 +0000 |
diego |
Remove all stray tabs and trailing whitespace, this time for good.
libavcodec
|
Mon, 23 Jan 2006 06:40:08 +0000 |
banan |
Mjpeg interlaced decoding fix, height was wrong while decoding (/2).
libavcodec
|
Sun, 22 Jan 2006 20:54:52 +0000 |
corey |
sc_factor support for encoding.
libavcodec
|
Sun, 22 Jan 2006 19:10:12 +0000 |
reimar |
faster copy functions for lzo decoder that also need padding
libavcodec
|
Sat, 21 Jan 2006 18:19:47 +0000 |
mru |
native ac3 parser
libavcodec
|
Sat, 21 Jan 2006 17:09:23 +0000 |
banan |
Implement audio cutoff frequency to the vorbis encoder.
libavcodec
|
Sat, 21 Jan 2006 02:35:03 +0000 |
lorenm |
fix convergence of snow iterative_me
libavcodec
|
Sat, 21 Jan 2006 02:33:01 +0000 |
lorenm |
revert 1.83 because it's not needed
libavcodec
|
Fri, 20 Jan 2006 23:06:35 +0000 |
banan |
Silence warnings, these came when some tables got declared as const.
libavcodec
|
Fri, 20 Jan 2006 21:20:46 +0000 |
mru |
place SPS/PPS in extradata if GLOBAL_HEADER flag is set
libavcodec
|
Thu, 19 Jan 2006 09:21:39 +0000 |
lorenm |
detect when iterative_me fails to converge, and stop searching
libavcodec
|
Thu, 19 Jan 2006 00:19:15 +0000 |
mru |
interpret H264 VUI timing info correctly
libavcodec
|
Tue, 17 Jan 2006 08:27:39 +0000 |
lorenm |
obmc-aware 4mv
libavcodec
|
Mon, 16 Jan 2006 14:59:54 +0000 |
diego |
Make clean/distclean consistent throughout all the Makefiles.
libavcodec
|
Sun, 15 Jan 2006 21:33:06 +0000 |
reimar |
10l, get_byte returning 0 on error can cause a hang. So let's try with 1 instead...
libavcodec
|
Sun, 15 Jan 2006 00:28:36 +0000 |
diego |
Don't use 'rm -f *$(SLIBSUF)' in a clean rule, $(SLIBSUF) might be empty.
libavcodec
|
Sat, 14 Jan 2006 18:17:19 +0000 |
diego |
Define separate version number for libpostproc.
libavcodec
|
Sat, 14 Jan 2006 18:07:36 +0000 |
diego |
Remove redundant --enable-shared-pp configure option and make the PP code
libavcodec
|