Michael Niedermayer
cb37931d78
dont set sub_id as its completly redundant and silly
...
Originally committed as revision 6393 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
f457965c20
ignore sub_id
...
Originally committed as revision 6392 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
fb3d155c31
big endian fix
...
Originally committed as revision 6391 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
113533a582
support resolution switching, fixes rv20errors.rm
...
Originally committed as revision 6390 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
78a5ec27aa
simplify
...
Originally committed as revision 6389 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
6d3124961b
fix rv20 b frames (broke since r5264 Mon Apr 3 07:52:24 2006 UTC 2x faster ff_mpeg4_set_direct_mv)
...
Originally committed as revision 6388 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
b2f86c170d
Add forgotten eval.h...
...
Originally committed as revision 6387 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
0de9926f62
Move the ratecontrol related code from mpegvideo.h to a separate header file.
...
Originally committed as revision 6386 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
d70ef6d761
Reformat the output of the list of available AVOptions, by indenting the
...
parameters of certain options and displaying them _right after_ the actual
option taking the parameter.
Originally committed as revision 6385 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
6d6f42d202
Remove the override of lmin and lmax, so the actual option value provided will
...
be used.
Originally committed as revision 6384 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
4d7b4613a1
Pull out the ff_eval* from the mpegvideo header, as it doesn't belong there and
...
put it in a separate file.
Originally committed as revision 6383 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
3a6ccf4f3e
rudimentary binary seek
...
Originally committed as revision 6382 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
1159f6340a
add another data definition ul
...
Originally committed as revision 6381 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
dd202ff65d
use a data definition uls table to fetch codec type
...
Originally committed as revision 6380 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
996c9ad0a4
add string param to PRINT_KEY for debug
...
Originally committed as revision 6379 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
94c12d458f
shut up gcc about incompatible pointer type
...
Originally committed as revision 6378 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
9a630c2532
remove useless casts
...
Originally committed as revision 6377 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
626a8fe724
remove gcc warnings about void * used in arithmetic
...
Originally committed as revision 6376 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
f28748e671
remove extraneous #ifdef CONFIG_ENCODERS/DECODERS
...
Originally committed as revision 6375 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Benjamin Larsson
3841e813dc
-interlace -> -ilme This has been wrong in the docs for years,
...
the description might not be totally correct though.
Originally committed as revision 6374 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
9770089d34
move sample size adjusting code after audio stsd v2 parsing to let v2 set correct channel number, fix Sony-hdv2.mov
...
Originally committed as revision 6373 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
e6f4c806e3
add lpcm fourcc
...
Originally committed as revision 6372 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Baptiste Coudurier
0299a87c41
change codec id if sample size field is set to 24 in stsd, fix Sony-mx5p.mov
...
Originally committed as revision 6371 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
720442981b
Remove the "mblmax" OptionDef. The equally named AVOption takes over its
...
function. A unit change is involved, but as AVOption parameters are now parsed
with ff_eval2(), you can use the QP2LAMBDA constant to ease the change.
Originally committed as revision 6370 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
93b26b6381
Remove the "mblmin" OptionDef. The equally named AVOption takes over its
...
function. A unit change is involved, but as AVOption parameters are now parsed
with ff_eval2(), you can use the QP2LAMBDA constant to ease the change.
Originally committed as revision 6369 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
0eba70acab
Remove the "lmin" OptionDef. The equally named AVOption takes over its function.
...
A unit change is involved, but as AVOption parameters are now parsed with
ff_eval2(), you can use the QP2LAMBDA constant to ease the change, f.e.:
ffmpeg -i src.ext -lmin 21*QP2LAMBDA dst.ext
Originally committed as revision 6368 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
494cf83702
Remove the "lmax" OptionDef. The equally named AVOption takes over its function.
...
A unit change is involved, but as AVOption parameters are now parsed with
ff_eval2(), you can use the QP2LAMBDA constant to ease the change:
ffmpeg -i src.ext -lmax 21*QP2LAMBDA dst.ext
Originally committed as revision 6367 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Siarhei Siamashka
eeebe6ad1f
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
...
Patch by Siarhei Siamashka %siarhei P siamashka A gmail P com%
Original thread:
Date: Sep 28, 2006 2:26 AM
Subject: [Ffmpeg-devel] [PATCH] ARM implementation of FASTDIV
Originally committed as revision 6366 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Kostya Shishkov
8db0c25d95
Handle case of get_bits(0)
...
Originally committed as revision 6365 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
b86216de4c
dc_val should be signed
...
Originally committed as revision 6364 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
bca99b47bf
return 0 from encode_picture() and estimate_qp() on success
...
Originally committed as revision 6363 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
be0d52ab78
make sure we can create and execute files in $TMPDIR
...
Originally committed as revision 6362 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
5b11e08171
prevent infinite loop with VORC012.WMA
...
Originally committed as revision 6361 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
854fdb51e6
put ARM feature tests next to other CPU tests
...
Originally committed as revision 6360 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
c7ae634596
try to stop people blindly using --cross-compile
...
Originally committed as revision 6359 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
0ec6065a34
Break compatibility only when first part of version number changes, in this
...
specific case for ff_eval deprecation.
Originally committed as revision 6358 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
95c9943081
Make AVOption parsign code use ff_eval2()
...
Originally committed as revision 6357 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
62bb489b13
add some #ifdef CONFIG_ENCODERS/DECODERS
...
Originally committed as revision 6356 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
191e8ca752
fix some signedness warnings
...
Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
d80f243ae9
Make ratecontrol use ff_eval2().
...
Originally committed as revision 6354 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
0c6309225d
remove useless memset()
...
Originally committed as revision 6353 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Luca Abeni
44cdb42386
Add support for YUVJ formats
...
Originally committed as revision 19993 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
18 years ago
Panagiotis Issaris
a2eb288ac7
Fix compilation by postponing deprecation of ff_eval() until the next version
...
increment.
Originally committed as revision 6352 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Kostya Shishkov
050b60b2cc
free memory before return
...
Originally committed as revision 6351 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Kostya Shishkov
1dbb339db3
bump lavc version for WavPack decoder
...
Originally committed as revision 6350 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
c38a29a448
fix decoding of bastard3.rm (ver=0x10003001 ver0=0x9000000)
...
Originally committed as revision 6349 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Panagiotis Issaris
ae41e29b5b
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
...
Instead, error messages are passed upward by means of a struct member variable.
Originally committed as revision 6348 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Måns Rullgård
a0403006f8
ARMv5TE optimized IDCT
...
Originally committed as revision 6347 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
e2887363e1
fix decoding of bastard1.rm (rv ver=0x10003001 ver0=0x8000000)
...
Originally committed as revision 6346 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
730ba4067c
fix r_frame_rate init code for groundhog.vob
...
Originally committed as revision 6345 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago