summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* lavdevice: mark v4l for removal on next major bump.Anton Khirnov2011-05-26
|
* swscale: fix compile on ppc.Ronald S. Bultje2011-05-26
|
* swscale: fix compile on x86-32.Ronald S. Bultje2011-05-26
|
* build: Remove generated .version file on distclean.Diego Biurrun2011-05-26
|
* configure: Add -D_GNU_SOURCE to CPPFLAGS on OS/2.Diego Biurrun2011-05-26
| | | | The flag is required for some C99 math functions to be declared.
* doc: Drop hint at --enable-memalign-hack for MinGW, it is now autodetected.Diego Biurrun2011-05-26
|
* ffplay: Remove disabled code.Diego Biurrun2011-05-26
|
* Mark parameterless function declarations as 'void'.Diego Biurrun2011-05-26
|
* swscale: use av_clip_uint8() in yuv2yuv1_c().Ronald S. Bultje2011-05-26
|
* swscale: remove VOF/VOFW.Ronald S. Bultje2011-05-26
|
* swscale: split chroma buffers into separate U/V planes.Ronald S. Bultje2011-05-26
| | | | Preparatory step to implement support for sizes > VOFW.
* swscale: replace formatConvBuffer[VOF] by allocated array.Ronald S. Bultje2011-05-26
| | | | | This allows to convert between formats of arbitrary width, regardless of the value of VOF/VOFW.
* rgb2rgb: remove duplicate mmx/mmx2/3dnow/sse2 functions.Ronald S. Bultje2011-05-26
| | | | | | | Many functions have such a prefix, but do not actually use any instructions or features from that set, thus giving the false impression that swscale is highly optimized for a particular system, whereas in reality it is not.
* swscale: reindent h[cy]scale_fast() and updateDitherTables().Ronald S. Bultje2011-05-26
|
* swscale: reformat x86/swscale_template.c.Ronald S. Bultje2011-05-26
| | | | | | Interleave macros and code so that it's easier to find the actual code that belongs to a function. Also reindent where appropriate and remove dead code.
* swscale: remove duplicate mmx/mmx2 functions if they are identical.Ronald S. Bultje2011-05-26
|
* swscale: remove if (c->dstFormat) branch from yuv2packed[12X]().Ronald S. Bultje2011-05-26
| | | | | This allows cutting up the function in much smaller and easier- to-maintain chunks.
* swscale: remove if(full_chr_int) from yuv2packed1().Ronald S. Bultje2011-05-26
| | | | | | If that flag is set, swScale() already proxies the call to yuv2rgbXinC_full(). Therefore, this flag is never set when yuv2packed1() is called.
* swscale: remove if(accurate_rnd) branch from functions.Ronald S. Bultje2011-05-26
|
* ffserver: Fix a null pointer dereference as a result of the ↵Mike Williams2011-05-26
| | | | | | | | | | | | | | FF_API_MAX_STREAMS cleanup. Fixed another dereference in the RTSP code. Removed a useless variable. Changed an unnecessary looping assignment to a simple assignment suggested by Maksym. Added fixes and tweaks suggested by Maksym Veremeyenko [verem@m1stereo.tv] and Clément B.
* libdc1394: fix compilation.Anton Khirnov2011-05-26
| | | | | Add a forgotten comma and move options/class definition outside of HAVE_LIBDC1394_1.
* swscale: revive SWS_CPU_CAPS until next major bump.Anton Khirnov2011-05-26
|
* swscale: Remove commented-out printf cruft.Diego Biurrun2011-05-26
|
* ac3enc: initialize all coefficients to zero.Justin Ruggles2011-05-25
| | | | | | | | Uninitialized coefficients were being used to generate exponents, some of which actually ended up in the final stream. Even though, they were just extra exponents that are not used by any decoder, it is still better to have consistent output for testing. This also fixes valgrind errors.
* doc: create separate section for audio encodersStefano Sabatini2011-05-26
| | | | | | | Having a separate section for audio encoders simplifies navigation and is slightly more consistent with the rest of the manual. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* swscale: Remove orphaned, commented-out function declaration.Diego Biurrun2011-05-26
|
* swscale: Eliminate rgb24toyv12_c() duplication.Michael Niedermayer2011-05-26
| | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Remove h263_msmpeg4 from MpegEncContext.Alex Converse2011-05-25
| | | | It was long ago superseded by msmpeg4_version.
* APIchanges: Fill in git hash for fps_probe_size (30315a8)Alex Converse2011-05-25
|
* avformat: Add fpsprobesize as an AVOption.Alex Converse2011-05-25
|
* avoptions: Return explicitly NAN or {0,0} if the option isn't foundMartin Storsjö2011-05-25
| | | | | | | | | | This actually matches what av_get_double did earlier, the 0.0/0.0 division was intentional, for producing NAN. Still keeping the check for the return value from av_get_number, for clarity. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtmp: ReindentMartin Storsjö2011-05-25
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtmp: Don't try to do av_malloc(0)Martin Storsjö2011-05-25
| | | | | | | | | Some received packets can have size 0. The return value from av_malloc(0) may be NULL, which is ok if the size was 0. On OS X, however, the returned pointer is non-null but leads to crashes when trying to free it. Signed-off-by: Martin Storsjö <martin@martin.st>
* tty: replace AVFormatParameters.sample_rate abuse with a private option.Anton Khirnov2011-05-25
|
* Fix end time of last chapter in compute_chapters_endJohn Stebbins2011-05-25
| | | | | | Parenthesis are misplaced in calculation of max_time. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* ffmpeg: get rid of useless AVInputStream.nb_streams.Anton Khirnov2011-05-25
| | | | It's a duplicate of AVFormatContext.nb_streams.
* ffmpeg: simplify managing input files and streamsAnton Khirnov2011-05-25
| | | | | | Grow the file and stream list in opt_input_file() instead of creating it all at once in transcode(). This is simpler and will be useful for following commits.
* ffmpeg: purge redundant AVInputStream.index.Anton Khirnov2011-05-25
| | | | AVStream.index stores the same thing.
* lavf: deprecate AVFormatParameters.channel.Anton Khirnov2011-05-25
|
* libdc1394: add a private option for channel.Anton Khirnov2011-05-25
|
* dv1394: add a private option for channel.Anton Khirnov2011-05-25
|
* v4l2: reindent.Anton Khirnov2011-05-25
|
* v4l2: add a private option for channel.Anton Khirnov2011-05-25
|
* lavf: deprecate AVFormatParameters.standard.Anton Khirnov2011-05-25
|
* v4l2: add a private option for video standard.Anton Khirnov2011-05-25
|
* v4l: add a private option for video standard.Anton Khirnov2011-05-25
|
* dv1394: add a private option for video standard.Anton Khirnov2011-05-25
|
* bktr: add a private option for video standard.Anton Khirnov2011-05-25
|
* lavf: deprecate AVFormatParameters.{channels,sample_rate}.Anton Khirnov2011-05-25
|
* rawdec: add sample_rate/channels private options.Anton Khirnov2011-05-25
|