Aurelien Jacobs
429eeecd5a
matroskadec: add correct extradata offset for V_MS/VFW/FOURCC tracks
...
Originally committed as revision 19694 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Aurelien Jacobs
e26444079c
matroskadec: factorize some code
...
Originally committed as revision 19693 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
deb1b2b699
Add necessary #include for config.h.
...
Originally committed as revision 19692 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
b662e8395b
PPC: simplify loading some values into altivec registers
...
Instead of filling a local array with the desired value and loading it,
load a single element and vec_splat() it to fill the vector.
Originally committed as revision 19691 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
1feec476aa
Add missing header to fix 'make checkheaders'.
...
Originally committed as revision 19690 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Ramiro Polla
89fb9516af
swscale-example: Rename src->ref so as to not confuse with src being used in doTest().
...
Originally committed as revision 29548 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Ramiro Polla
7da35acdab
swscale-example: Use SWS_BILINEAR instead of hardcoded value.
...
Originally committed as revision 29547 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Måns Rullgård
d98fe8ecf5
Add myself as maintainer for AVR32 and MIPS
...
Originally committed as revision 19689 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
98ef60791d
configure: fix filter() function when matching multiple patterns
...
This makes comma-separated patters to --disable-decoder and friends
work correctly with POSIX-compliant shells.
Originally committed as revision 19688 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
bce7b696a2
Add PIC flags early so tests they affect give correct results
...
This is mainly the checks for ebx on x86, but possibly others too.
Originally committed as revision 19687 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
c7312933ce
Include required headers in {mips,ppc}/mathops.h
...
Originally committed as revision 19686 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
95f2c769c3
Skip headers requiring external libs not present in checkheaders
...
Originally committed as revision 19685 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
566ae9fbc2
configure: simplify directory creation for out of tree builds
...
Originally committed as revision 19684 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
b7c10b2a2b
Fix dependency generation for yasm assembler files
...
Originally committed as revision 19683 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Vitor Sessak
7bd4733588
TwinVQ decoder
...
Originally committed as revision 19682 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Ramiro Polla
a48ce2c3a7
Fix inconsistent indentation.
...
Originally committed as revision 29545 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Ivan Schreter
a8dd8dc6e9
Use generic multi-stream key frame finding routine to implement read_seek2 and map
...
read_seek to read_seek2.
Originally committed as revision 19681 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Ivan Schreter
101036adb9
Support for generic multi-stream key frame finding for new seek API.
...
Originally committed as revision 19680 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Loren Merritt
50b1785a57
bring back some randomness in fft-test. (regression in r18070)
...
Originally committed as revision 19679 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Sascha Sommer
31c57185c5
Add some more wmapro decoder hunks
...
Originally committed as revision 19678 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
7056883be9
Replace redundant GNUC_PREREQ macro by AV_GCC_VERSION_AT_LEAST from libavutil.
...
Originally committed as revision 19677 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
f2d702e109
Replace #ifdef PIC checks with the more appropriate HAVE_EBX_AVAILABLE/HAVE_7REGS.
...
Originally committed as revision 19676 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
da47f0eecb
Add missing #includes to pass 'make checkheaders'.
...
Originally committed as revision 19675 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Bartlomiej Wolowiec
ab1eff9c5c
Add support for S/PDIF encapsulation.
...
Originally committed as revision 19674 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
29d7eef7dc
Always allocate a buffer of AVPALETTE_SIZE for palette in the subtitle
...
decoders instead of as small as possible.
This avoids completely unnecessary issues with e.g. libswscale.
Originally committed as revision 19673 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Ramiro Polla
1b03a9d607
Check return values of sws_allocVec() and sws_getConstVec().
...
Originally committed as revision 29543 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Måns Rullgård
8a3c86277b
configure: add --enable-pic flag
...
Using this flag enables position-independent code even when not strictly
required. It is impossible to use --disable-pic to forcibly disable PIC
when other properties mandate it.
Originally committed as revision 19672 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
90d43b52e1
Get rid of large stack array in rd8x8_c()
...
Originally committed as revision 19671 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
0314dead4e
eval: replace variable-length array with av_malloc/free
...
There is a theoretical possibility to pass a very long string to ff_parse,
which could crash if allocated from the stack. This allows the allocation
to be checked properly.
Originally committed as revision 19670 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
8313e17976
flacdec: change variable-length array to fixed length
...
pred_order can never exceed 32, so always allocating that amount is safe
and not very wasteful.
Originally committed as revision 19669 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Reimar Döffinger
64d39b7c76
Free initial swscale context, too. Avoids a valgrind warning.
...
Originally committed as revision 29538 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Reimar Döffinger
7b67bd92f4
Remove useless casts of malloc return value.
...
Originally committed as revision 29537 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Diego Biurrun
386eaeb43f
Remove disabled code cruft.
...
Originally committed as revision 19668 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Ramiro Polla
1aff375d41
Introduce and use sws_allocVec().
...
Originally committed as revision 29536 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Ramiro Polla
20484b90ec
Reuse sws_getConstVec() where possible.
...
Originally committed as revision 29535 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Måns Rullgård
b7904f78c1
AVR32: optimised mathops.h
...
44% faster MP3 decoding
Originally committed as revision 19667 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Ramiro Polla
6b052ba88f
swscale-example: Make selection of dstW, dstH, and flags more clear.
...
Originally committed as revision 29527 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Alex Converse
0cc4701a3a
Use the AOT enum instead of integer literals for setting and comparing audio
...
object types.
Originally committed as revision 19666 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
d691da9508
AVR32: optimisations for intreadwrite.h
...
Originally committed as revision 19665 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
e482c2e2fb
AVR32: inline asm for bswap.h
...
Originally committed as revision 19664 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
fdcd782dd9
configure: add AVR32 names for --cpu flag
...
Recognise AVR32 processor names as well as the generic "ap" and "uc"
family names as values for --cpu. Also define two subtypes, avr32_ap
and avr32_uc.
Originally committed as revision 19663 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Alex Converse
8ba939d702
Mark the AOT escape value as supported.
...
Originally committed as revision 19662 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Alex Converse
08dac48d61
Add USAC and SAOC AOTs to the AudioObjectType enum.
...
Originally committed as revision 19661 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Ramiro Polla
c255994b29
More indentation changes leftover from r29522:
...
- Align asm code to the column 4 spaces after the call to __asm__();
- Align cases in switch statements to the same column as "switch".
Originally committed as revision 29524 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Ramiro Polla
dd68318cee
Cosmetics:
...
- Place curly brackets in the same line as while/for/if/switch/else/do;
- Place curly brackets at column 0 in the next line starting a function.
Originally committed as revision 29523 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
15 years ago
Måns Rullgård
9dc6bb7b9f
MIPS: 100L: fix AV_[RW]N64 on MIPS64
...
Originally committed as revision 19660 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
4a051891f6
cosmetics: reformat intreadwrite.h
...
Originally committed as revision 19659 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
63826ceb32
intreadwrite: ensure arch-specific versions are always used if defined
...
The per-arch headers can define any combination of B/L/N variants.
This ensures that whatever is defined in an arch header gets used
for all equivalents not defined there. E.g. on a little-endian
machine, AV_RN and AV_RL should give the same code.
Originally committed as revision 19658 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
57c36bdcea
intreadwrite: allow arch-specific 24-bit access macros
...
Originally committed as revision 19657 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
e6956a6e48
ARM: first value loaded in AV_RN64 needs to be early-clobber
...
Originally committed as revision 19656 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago