Diego Biurrun [Sat, 11 Feb 2006 17:44:06 +0000 (17:44 +0000)]
Separate header file installation from the general install target.
Originally committed as revision 4981 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 11 Feb 2006 17:17:37 +0000 (17:17 +0000)]
Fix for url_fclose() being called on an already closed file based on a patch by (<Colin Ward> hitman codehq org)
Originally committed as revision 4980 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Sat, 11 Feb 2006 17:15:11 +0000 (17:15 +0000)]
The install-progs target should depend on $(PROG).
Originally committed as revision 4979 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Sat, 11 Feb 2006 17:06:59 +0000 (17:06 +0000)]
Separate program installation into its own target.
Originally committed as revision 4978 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Sat, 11 Feb 2006 16:50:45 +0000 (16:50 +0000)]
Add installlib and install-headers targets like everywhere else.
Originally committed as revision 4977 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Sat, 11 Feb 2006 16:46:09 +0000 (16:46 +0000)]
Install static libpostproc if CONFIG_PP is set.
Originally committed as revision 4976 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Sat, 11 Feb 2006 16:17:27 +0000 (16:17 +0000)]
Install libpostproc headers if CONFIG_PP is set.
Originally committed as revision 4975 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alan Curry [Sat, 11 Feb 2006 14:16:10 +0000 (14:16 +0000)]
Move the v{Y,C}CoeffsBank vectors into the SwsContext, filling them in just
once when the scaler is initialized, instead of building them and freeing
them over and over. This gives massive performance improvements.
patch by Alan Curry, pacman*at*TheWorld*dot*com
Originally committed as revision 17589 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diego Biurrun [Sat, 11 Feb 2006 13:42:54 +0000 (13:42 +0000)]
cosmetics: indentation fixes
Originally committed as revision 17588 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Alan Curry [Sat, 11 Feb 2006 13:35:46 +0000 (13:35 +0000)]
Fix big-endian color permutation problems.
patch by Alan Curry, pacman_at_TheWorld_dot_com
Originally committed as revision 17587 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Michael Niedermayer [Sat, 11 Feb 2006 09:27:00 +0000 (09:27 +0000)]
mpeg-ps probe 2nd try
Originally committed as revision 4974 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alexander Strasser [Fri, 10 Feb 2006 11:59:38 +0000 (11:59 +0000)]
Don't use pow/powf functions where we just need integer arithmetic.
approved by Benjamin
Originally committed as revision 4973 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Fri, 10 Feb 2006 08:21:13 +0000 (08:21 +0000)]
add adtsenc.c with myself as maintainer
Originally committed as revision 4972 to svn://svn.ffmpeg.org/ffmpeg/trunk
Loren Merritt [Fri, 10 Feb 2006 06:55:25 +0000 (06:55 +0000)]
h264: special case dc-only idct. ~1% faster overall
Originally committed as revision 4971 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Fri, 10 Feb 2006 01:24:32 +0000 (01:24 +0000)]
generate adts frame headers if required
Originally committed as revision 4970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Fri, 10 Feb 2006 01:19:54 +0000 (01:19 +0000)]
use get_bits1/skip_bits[1] in ac3 and aac parsers
Originally committed as revision 4969 to svn://svn.ffmpeg.org/ffmpeg/trunk
Aurelien Jacobs [Thu, 9 Feb 2006 23:53:07 +0000 (23:53 +0000)]
voc: set bits_per_sample correctly (fix mplayer playback)
Originally committed as revision 4968 to svn://svn.ffmpeg.org/ffmpeg/trunk
Aurelien Jacobs [Thu, 9 Feb 2006 22:52:23 +0000 (22:52 +0000)]
add a Creative VOC (de)muxer
Originally committed as revision 4967 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefan Huehner [Thu, 9 Feb 2006 14:08:03 +0000 (14:08 +0000)]
Patch by Stefan Huehner / stefan % huehner ! org \
patch replaces '()' for the correct '(void)' in function
declarations/prototypes which have no parameters. The '()' syntax tell
thats there is a variable list of arguments, so that the compiler cannot
check this. The extra CFLAG '-Wstrict-declarations' shows those cases.
Comments about a similar patch applied to ffmpeg:
That in C++ these mean the same, but in ANSI C the semantics are
different; function() is an (obsolete) K&R C style forward declaration,
it basically means that the function can have any number and any types
of parameters, effectively completely preventing the compiler from doing
any sort of type checking. -- Erik Slagter
Defining functions with unspecified arguments is allowed but bad.
With arguments unspecified the compiler can't report an error/warning
if the function is called with incorrect arguments. -- Måns Rullgård
Originally committed as revision 17567 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Michael Niedermayer [Thu, 9 Feb 2006 09:38:03 +0000 (09:38 +0000)]
fix segfault on broken streams
Originally committed as revision 4966 to svn://svn.ffmpeg.org/ffmpeg/trunk
Loren Merritt [Thu, 9 Feb 2006 02:43:23 +0000 (02:43 +0000)]
10l in 1.12
Originally committed as revision 4965 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alan Curry [Thu, 9 Feb 2006 00:29:35 +0000 (00:29 +0000)]
Correct RGB vs. BGR confusion, the macros vec_mstrgb24 and vec_mstbgr24 each
do the opposite of what they say.
The vec_mstrgb24 and vec_mstbgr24 macros should be opposites and not perform
the same things.
patch by Alan Curry, pacman_at_world_dot_std_dot_com
Originally committed as revision 17564 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Michael Niedermayer [Wed, 8 Feb 2006 17:35:44 +0000 (17:35 +0000)]
replace probe() by one similar to MPEG-ES
Originally committed as revision 4964 to svn://svn.ffmpeg.org/ffmpeg/trunk
Luca Abeni [Wed, 8 Feb 2006 15:55:41 +0000 (15:55 +0000)]
Add video4linux2 detection to configure.
patch by Luca Abeni, lucabe72*at*email*dot*it
Originally committed as revision 4963 to svn://svn.ffmpeg.org/ffmpeg/trunk
Colin Ward [Wed, 8 Feb 2006 15:39:12 +0000 (15:39 +0000)]
Move CONIG_MUXERS below struct frame_attributes, it's not muxer-specific.
patch by Colin Ward, hitman*at*codehq*dot*org
Originally committed as revision 4962 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alan Curry [Wed, 8 Feb 2006 13:14:19 +0000 (13:14 +0000)]
altivec_yuv2packedX() ignores the requested output format and unconditionally
outputs RGBA. This patch supports 6 output formats and prints an error message
if it is asked to provide an output format it is not capable of.
patch by Alan Curry, pacman_at_world_dot_std_dot_com
Originally committed as revision 17561 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Luca Abeni [Wed, 8 Feb 2006 11:54:05 +0000 (11:54 +0000)]
Correctly set the interlaced_frame and top_field_first fields.
patch by Luca Abeni, lucabe72 =at= email =dot= it
Originally committed as revision 4961 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Wed, 8 Feb 2006 11:43:47 +0000 (11:43 +0000)]
typo
Originally committed as revision 4960 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Wed, 8 Feb 2006 11:32:03 +0000 (11:32 +0000)]
List of people maintaining different parts of FFmpeg.
featuring some help from Alexander Strasser
Originally committed as revision 4959 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alan Curry [Wed, 8 Feb 2006 08:20:40 +0000 (08:20 +0000)]
AltiVec operations need to have memory aligned on 16-byte boundaries.
patch by Alan Curry, pacman at world dot std dot com
Originally committed as revision 17559 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Alan Curry [Wed, 8 Feb 2006 08:16:53 +0000 (08:16 +0000)]
vYCoeffsBank and vCCoeffsBank are allocated and initialized using incorrect
sizes based on the image width instead of height.
patch by Alan Curry, pacman at world dot std dot com
Originally committed as revision 17558 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Loren Merritt [Wed, 8 Feb 2006 07:04:32 +0000 (07:04 +0000)]
slightly faster loopfilter
Originally committed as revision 4958 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Wed, 8 Feb 2006 01:11:48 +0000 (01:11 +0000)]
bump version numbers and update docs for adts aac support
Originally committed as revision 4957 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Wed, 8 Feb 2006 01:10:07 +0000 (01:10 +0000)]
create adts stream if CODEC_FLAG_GLOBAL_HEADER not set
Originally committed as revision 4956 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Wed, 8 Feb 2006 00:51:55 +0000 (00:51 +0000)]
read/write adts aac
Originally committed as revision 4955 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Wed, 8 Feb 2006 00:50:22 +0000 (00:50 +0000)]
adts aac parser
Originally committed as revision 4954 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Wed, 8 Feb 2006 00:30:58 +0000 (00:30 +0000)]
decode adts aac streams
Originally committed as revision 4953 to svn://svn.ffmpeg.org/ffmpeg/trunk
Loren Merritt [Tue, 7 Feb 2006 16:10:48 +0000 (16:10 +0000)]
10l (x86_64)
Originally committed as revision 4952 to svn://svn.ffmpeg.org/ffmpeg/trunk
Loren Merritt [Tue, 7 Feb 2006 10:52:25 +0000 (10:52 +0000)]
18% faster put_h264_qpel16_mc[13]2_mmx2
Originally committed as revision 4951 to svn://svn.ffmpeg.org/ffmpeg/trunk
Loren Merritt [Tue, 7 Feb 2006 07:35:03 +0000 (07:35 +0000)]
11% faster put_h264_qpel16_v_lowpass_mmx2
Originally committed as revision 4950 to svn://svn.ffmpeg.org/ffmpeg/trunk
Loren Merritt [Tue, 7 Feb 2006 06:25:14 +0000 (06:25 +0000)]
15% faster put_h264_qpel16_hv_lowpass_mmx2
Originally committed as revision 4949 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alexander Strasser [Mon, 6 Feb 2006 21:52:23 +0000 (21:52 +0000)]
Some Make variants complain if the LIB variable does not exist.
patch by Alexander Strasser
Originally committed as revision 4948 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Mon, 6 Feb 2006 12:45:52 +0000 (12:45 +0000)]
fix memleak, based upon a patch by Wolfram Gloger
Originally committed as revision 4947 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Mon, 6 Feb 2006 11:21:26 +0000 (11:21 +0000)]
1 goto 1 fix
Originally committed as revision 4946 to svn://svn.ffmpeg.org/ffmpeg/trunk
Benjamin Larsson [Mon, 6 Feb 2006 11:21:10 +0000 (11:21 +0000)]
Fix broken cosmetics commit and add a check for valid headers.
Originally committed as revision 4945 to svn://svn.ffmpeg.org/ffmpeg/trunk
Benjamin Larsson [Mon, 6 Feb 2006 11:03:37 +0000 (11:03 +0000)]
Small cosmetics and better variable names.
Originally committed as revision 4944 to svn://svn.ffmpeg.org/ffmpeg/trunk
Dan Villiom Podlaski Christiansen [Sun, 5 Feb 2006 15:19:04 +0000 (15:19 +0000)]
Fix detection of IPv6 support on Darwin by ensuring that
IN6_IS_ADDR_MULTICAST gets an argument of type (const struct in6_addr *).
patch by Dan Villiom Podlaski Christiansen, danchr.at.daimi.dot.au.dot.dk
Originally committed as revision 4943 to svn://svn.ffmpeg.org/ffmpeg/trunk
Steve L'Homme [Sun, 5 Feb 2006 13:35:17 +0000 (13:35 +0000)]
MSVC-compatible __align8/__align16 declaration
patch by Steve Lhomme, steve .dot. lhomme .at. free .dot. fr
Originally committed as revision 4942 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alexander Strasser [Sun, 5 Feb 2006 10:16:20 +0000 (10:16 +0000)]
Correct the relation between floors of type 0 and block sizes.
Originally committed as revision 4941 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 4 Feb 2006 22:18:45 +0000 (22:18 +0000)]
simplify
Originally committed as revision 4940 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 4 Feb 2006 20:32:02 +0000 (20:32 +0000)]
faster find_startcode()
Originally committed as revision 4939 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 4 Feb 2006 16:57:58 +0000 (16:57 +0000)]
3rd try for mpeg-es probe ...
Originally committed as revision 4938 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Sat, 4 Feb 2006 11:43:22 +0000 (11:43 +0000)]
GNU Make is necessary on *BSD.
Originally committed as revision 4937 to svn://svn.ffmpeg.org/ffmpeg/trunk
Dieter [Sat, 4 Feb 2006 11:37:41 +0000 (11:37 +0000)]
Use gmake instead of make on *BSD.
patch by Dieter, freebsd ^^at^^ sopwith ^^dot^^ solgatos ^^dot^^ com
Originally committed as revision 4936 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alexander Strasser [Sat, 4 Feb 2006 10:04:13 +0000 (10:04 +0000)]
Cosmetic: Fix indentation.
Originally committed as revision 4935 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alexander Strasser [Sat, 4 Feb 2006 09:59:48 +0000 (09:59 +0000)]
10l (malloc check with the wrong pointer)
Simplification: I have to reconsider this trees and forest thing...
Also readded and documented the check i had in the beginning and removed
before applying. It avoids a possible div by zero.
Originally committed as revision 4934 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alexander Strasser [Sat, 4 Feb 2006 08:55:34 +0000 (08:55 +0000)]
Added support for vorbis files containing floor type 0.
Originally committed as revision 4933 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 4 Feb 2006 02:05:51 +0000 (02:05 +0000)]
fix regression tests
Originally committed as revision 4932 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 4 Feb 2006 00:08:54 +0000 (00:08 +0000)]
change sws sharpen filter a little
Originally committed as revision 17531 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diego Biurrun [Fri, 3 Feb 2006 01:15:00 +0000 (01:15 +0000)]
--enable-shared now needs --disable-static on MinGW.
Originally committed as revision 4931 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 20:56:35 +0000 (20:56 +0000)]
simplify timebase if possible
ignore edit lists instead of always failing
Originally committed as revision 4930 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 20:54:41 +0000 (20:54 +0000)]
improve fps guessing code
Originally committed as revision 4929 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Thu, 2 Feb 2006 20:11:09 +0000 (20:11 +0000)]
remove unused function get_longterm_datarate()
Originally committed as revision 4928 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 19:23:33 +0000 (19:23 +0000)]
sanity checks for seeking
Originally committed as revision 4927 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 18:38:47 +0000 (18:38 +0000)]
output last ac3 frame and simplify
Originally committed as revision 4926 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 15:34:09 +0000 (15:34 +0000)]
jpeg-ls regression test
Originally committed as revision 4925 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 15:21:19 +0000 (15:21 +0000)]
AIFF format support by (Patrick Guimond <patg a.t patg d.o.t homeunix d.o.t org)
Originally committed as revision 4924 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 13:56:42 +0000 (13:56 +0000)]
improve mpeg1/2-es detection
Originally committed as revision 4923 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 13:07:30 +0000 (13:07 +0000)]
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
Originally committed as revision 4922 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Thu, 2 Feb 2006 12:05:45 +0000 (12:05 +0000)]
JPEG-LS codec fixed.
Originally committed as revision 4921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 11:27:35 +0000 (11:27 +0000)]
dynamically increase probe buffer until format is detected
Originally committed as revision 4920 to svn://svn.ffmpeg.org/ffmpeg/trunk
Luca Abeni [Thu, 2 Feb 2006 09:24:13 +0000 (09:24 +0000)]
Set interlaced_frame and top_field_first according to coded_frame.
patch by Luca Abeni, lucabe72 **at&& email ^^dot## it
Originally committed as revision 4919 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 02:36:27 +0000 (02:36 +0000)]
list of supported pix_fmts
Originally committed as revision 4918 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Thu, 2 Feb 2006 02:28:33 +0000 (02:28 +0000)]
JPEG-LS codec by (Kostya | kostya.forjunk gmail com)
Originally committed as revision 4917 to svn://svn.ffmpeg.org/ffmpeg/trunk
Luca Abeni [Wed, 1 Feb 2006 11:31:33 +0000 (11:31 +0000)]
video4linux2 input support
patch by Luca Abeni, lucabe72 $$at$$ email $$dot$$ it
Originally committed as revision 4916 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 31 Jan 2006 00:17:13 +0000 (00:17 +0000)]
Fix silly typos.
Originally committed as revision 4915 to svn://svn.ffmpeg.org/ffmpeg/trunk
Dieter [Mon, 30 Jan 2006 23:41:27 +0000 (23:41 +0000)]
add static keyword to some functions
patch by Dieter <freebsd at sopwith solgatos com>
Originally committed as revision 4914 to svn://svn.ffmpeg.org/ffmpeg/trunk
Dieter [Mon, 30 Jan 2006 23:33:19 +0000 (23:33 +0000)]
add static keyword to some functions
patch by Dieter <freebsd at sopwith solgatos com>
Originally committed as revision 4913 to svn://svn.ffmpeg.org/ffmpeg/trunk
Dieter [Mon, 30 Jan 2006 23:32:14 +0000 (23:32 +0000)]
add missing #includes
patch by Dieter <freebsd at sopwith solgatos com>
Originally committed as revision 4912 to svn://svn.ffmpeg.org/ffmpeg/trunk
Dieter [Mon, 30 Jan 2006 22:59:09 +0000 (22:59 +0000)]
long is better than int for pointer differences
patch by Dieter <freebsd at sopwith solgatos com>
Originally committed as revision 4911 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Mon, 30 Jan 2006 00:32:42 +0000 (00:32 +0000)]
typo, RealAudio 14.4/28.8
Originally committed as revision 4910 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Mon, 30 Jan 2006 00:22:41 +0000 (00:22 +0000)]
On MinGW it is not possible to build shared and static libraries at once.
Add means to disable building the static libraries and fix a few issues
with the MinGW build.
All the hard work done by Alexander Strasser, minor changes by myself.
Originally committed as revision 4909 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Sun, 29 Jan 2006 23:43:29 +0000 (23:43 +0000)]
Update for new style guidelines regarding TABs and trailing whitespace.
Originally committed as revision 4908 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Sun, 29 Jan 2006 18:32:55 +0000 (18:32 +0000)]
Simplify LDFLAGS handling for MinGW.
Originally committed as revision 4907 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alexander Strasser [Sat, 28 Jan 2006 16:23:04 +0000 (16:23 +0000)]
Print libavutil version too.
Originally committed as revision 4906 to svn://svn.ffmpeg.org/ffmpeg/trunk
Dieter [Sat, 28 Jan 2006 16:05:06 +0000 (16:05 +0000)]
make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)
Originally committed as revision 4905 to svn://svn.ffmpeg.org/ffmpeg/trunk
Loren Merritt [Sat, 28 Jan 2006 00:57:59 +0000 (00:57 +0000)]
fix crash on height < 16 pixels.
Originally committed as revision 4904 to svn://svn.ffmpeg.org/ffmpeg/trunk
Corey Hickey [Fri, 27 Jan 2006 23:24:24 +0000 (23:24 +0000)]
Add a newline to b_frame_strategy error message.
Originally committed as revision 4903 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 27 Jan 2006 13:19:13 +0000 (13:19 +0000)]
fixing bframe strategy 2
bits vs. bytes factor of 8 error
16 byte offset error
some other minor things
Originally committed as revision 4902 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Fri, 27 Jan 2006 00:06:42 +0000 (00:06 +0000)]
Make clean/distclean behave uniformly in all directories.
Originally committed as revision 17489 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diego Biurrun [Thu, 26 Jan 2006 23:42:30 +0000 (23:42 +0000)]
Remove obscure Makefile.bak entry from distclean rules.
Originally committed as revision 4901 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fabien Cosse [Thu, 26 Jan 2006 19:42:45 +0000 (19:42 +0000)]
Add fourcc "SEDG" for MPEG-4 files produced by Samsung VP-M110 Miniket
camcorder
Patch by Fabien Cosse *** fabien ! cosse !a! wanadoo ! fr ***
Originally committed as revision 4900 to svn://svn.ffmpeg.org/ffmpeg/trunk
Luca Abeni [Thu, 26 Jan 2006 19:38:16 +0000 (19:38 +0000)]
ffmpeg forgets to set AVFormatParameters::pix_fmt when capturing from a
v4l card.
In other words, if you type ffmpeg -pix_fmt yuv422 -s 352x288 test.avi
the "-pix_fmt yuv422" option will have no effect.
Patch by Luca Abeni *** lucabe72 !a! email ! it ***
Originally committed as revision 4899 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Wed, 25 Jan 2006 22:10:13 +0000 (22:10 +0000)]
warning fixes by Luca Abeni, lucabe72 ##@## email ##.## it
Originally committed as revision 4898 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 25 Jan 2006 17:14:16 +0000 (17:14 +0000)]
avoid using non constant fields of AVCodecContext in avi muxer
Originally committed as revision 4897 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 25 Jan 2006 16:04:31 +0000 (16:04 +0000)]
try avi video name -> codec_id mapping if the mov one has no match
Originally committed as revision 4896 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 25 Jan 2006 02:16:27 +0000 (02:16 +0000)]
10l forgot #ifdef CONFIG_XVID
Originally committed as revision 4895 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Tue, 24 Jan 2006 21:57:26 +0000 (21:57 +0000)]
xvid ratecontrol support
Originally committed as revision 4894 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 24 Jan 2006 20:27:08 +0000 (20:27 +0000)]
Make sure that ffmpeg_g and ffplay_g get removed on 'make clean'.
Originally committed as revision 4893 to svn://svn.ffmpeg.org/ffmpeg/trunk
Gildas Bazin [Tue, 24 Jan 2006 19:57:41 +0000 (19:57 +0000)]
Disable protocols by default on WinCE, not MinGW.
patch by Gildas Bazin, gbazin $$@$$ altern $$.$$ org
Originally committed as revision 4892 to svn://svn.ffmpeg.org/ffmpeg/trunk