Baptiste Coudurier
2dae1dd0dd
add \n to error message
...
Originally committed as revision 13592 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
2453f40602
Prevent scalefactors from overflowing.
...
fixes issue351
Originally committed as revision 13591 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
fb2b88a816
cosmetics: add a comment, remove a comment
...
Originally committed as revision 13590 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
9b57545934
simplify
...
Originally committed as revision 13589 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
6e74513a48
set lfe params at frame init instead of in every block
...
Originally committed as revision 13588 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
b85a15fe73
only calculate number of exponent groups when exponents are not reused.
...
Originally committed as revision 13587 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
aa148649a4
cosmetics: remove unneeded braces
...
Originally committed as revision 13586 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
7e13b31c19
10l: cosmetics
...
Originally committed as revision 13585 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
e25973a1fd
new dba values requires running last 2 bit allocation stages
...
Originally committed as revision 13584 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Stefano Sabatini
e992fba4ba
Add a few newlines to 'ffmpeg -h' output to make it more readable.
...
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13583 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
ff5d419e2f
get_transform_coeffs() never returns an error, so make the function and its children return void.
...
Originally committed as revision 13582 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Vitor Sessak
2f7d6835b6
Add doxy comments to eq() and do_voice()
...
Originally committed as revision 13581 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
fbe52e4188
use enum value for CRC error
...
Originally committed as revision 13580 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Justin Ruggles
c78c6d6c58
move header error logging to after CRC check
...
Originally committed as revision 13579 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Vitor Sessak
4dc471c30c
Minor simplification
...
Originally committed as revision 13578 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Vitor Sessak
9765b44c50
Rename variable
...
Originally committed as revision 13577 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Vitor Sessak
208a2a60b9
Remove useless intermediate variable
...
Originally committed as revision 13576 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Vitor Sessak
9d283aee83
Remove ra144.o dependency added in revision r13500, now reverted
...
Originally committed as revision 13575 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Peter Ross
750066ea1c
flvenc.o depends on avc.o (for H.264 support functions).
...
patch by Peter Ross, pross xvid org
Originally committed as revision 13574 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Peter Ross
418a0b9fc4
Compiling ffmpeg.c fails when when the .ffm demuxer is enabled, but the .ffm
...
muxer is disabled. The cause is an incorrect #ifdef that assumes that the
ffm_nopts symbol (global define in ffmenc) is present when either ffm muxer
OR demuxer is enabled.
patch by Peter Ross, pross xvid org
Originally committed as revision 13573 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
b13ddb3bca
unused
...
Originally committed as revision 13572 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
b9c8388710
As *_static are not deallocated anymore except on program termination
...
we do not need to keep track of them anymore.
Fixes CID117 RUN2 and various race conditions.
Originally committed as revision 13571 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
83422c1940
unused
...
Originally committed as revision 13570 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
65de23d1b6
Remove non C code.
...
Originally committed as revision 13569 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
09dafaeba1
Move *_static to bitstream.c which is the only file left which needs
...
them.
Originally committed as revision 13568 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
ceaaf78bb7
Change init_vlc_rl() so it does not use *alloc_static() anymore.
...
Originally committed as revision 13567 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
2d80ce2bdf
Change init_2d_vlc_rl() to not use *alloc_static().
...
Originally committed as revision 13566 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
573e8cb309
Remove incorrect usage of av_free_static(), ffmpeg.c is not a
...
windows dll which can be unloaded and loaded again.
Originally committed as revision 13565 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
9ef3193df1
Remove constant argument.
...
Originally committed as revision 13564 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
f76605e880
Switch to INIT_VLC_USE_NEW_STATIC.
...
Note, if code you maintain still uses INIT_VLC_USE_STATIC please change
it as well! Iam not volunteering to clean all codecs up ...
Originally committed as revision 13563 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
d05b24ff89
Little helper macro to make the use of INIT_VLC_USE_NEW_STATIC easier.
...
Originally committed as revision 13562 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
ccc54864fe
Make init_vlc* support proper static tables instead of this broken beyond
...
imagination alloc_static() trash.
Originally committed as revision 13561 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Vitor Sessak
27f19ed501
Revert r13499, log:
...
Make lpc coefficients 16 bit wide
Only one of my samples didn't decode bit-exact after this change,
but better be safe than sorry.
Originally committed as revision 13560 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
180b7026b9
2nd try fix got_key_frame when video+audio
...
Originally committed as revision 13559 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Ramiro Polla
16e861e3ee
raw mlp demuxer
...
Based on patch by Jeff Muizelaar <jrmuizel <at> gmail.org>
http://article.gmane.org/gmane.comp.video.ffmpeg.devel/57797
Originally committed as revision 13558 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Quoc Cuong Pham
dd0f776c98
Detect "tif" suffix as TIFF.
...
Patch by Quoc Cuong Pham: Quoc-Cuong D PHAM AT cea D fr
Originally committed as revision 13557 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Diego Biurrun
3ed1a2ee88
cosmetics: Remove useless backslashes.
...
Originally committed as revision 13556 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Diego Biurrun
b006b26c83
Implement a proper configure test for AltiVec vector declaration syntax.
...
Originally committed as revision 13555 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Diego Biurrun
81a5cdde80
Simplify altivec.h test.
...
Originally committed as revision 13554 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Diego Biurrun
de3e16ee14
10l: Add useless backslashes in AltiVec CFLAGS test.
...
Originally committed as revision 13553 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
78728064c3
fix got_key_frame when stream is audio
...
Originally committed as revision 13552 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
0332f54945
set got_key_frame when packet is video, fix first video packet with index 0 and 2 streams
...
Originally committed as revision 13551 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
79c7968726
update regressions tests, should be stable now
...
Originally committed as revision 13550 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
626932fd83
sleep seems needed to wait for feed to be setup
...
Originally committed as revision 13549 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
3766ed7214
log error when writing frame to output
...
Originally committed as revision 13548 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
c1593d0e56
wake up connections to stop waiting when feed is being closed
...
Originally committed as revision 13547 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
084a891292
fix timestamps rescaling, index in source format might be different
...
Originally committed as revision 13546 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
ddb41f3f58
take over ffserver maintenance
...
Originally committed as revision 13545 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
929a9b7544
log some errors
...
Originally committed as revision 13544 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
58bd615ff5
set is_streamed before writing data to output file
...
Originally committed as revision 13543 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago