Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-05cmdutils: remove unnecessary OPT_DUMMY implementationStefano Sabatini
The -i INPUT option can be implemented more cleanly by using a function option, which can easily be done now that the parse_arg_function passed to parse_options has a standard signature.
2011-06-05cmdutils: change the signature of the function argument in parse_options()Stefano Sabatini
This is required for a pending simplification.
2011-06-05sdl: use the filename for defining the window title, if not specifiedStefano Sabatini
This allows a more efficient use of the commandline.
2011-06-05swscale: override the lack of the accurate rounding flag when needed for dither.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-05swscale: factor should_dither outMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-05Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: ARM: remove MULL inline asm mathops: use MUL64 macro where it forms part of other ops tty: factorise returning error codes. rawdec: add framerate private option. x11grab: add framerate private option. fbdev,v4l2: remove some forgotten uses of AVFormatParameters.time_base. bktr: don't error when AVFormatParameters.time_base isn't set. cmdutils: add missing const qualifier Skip headers not designed to work standalone during 'make checkheaders'. Add missing #includes to make headers self-contained. musepack: remove unnecessary #include from mpcdata.h musepack: remove extraneous mpcdata.h inclusions Fix error check in av_file_map() Conflicts: cmdutils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-05ARM: remove MULL inline asmMans Rullgard
Reasonable gcc versions get this one right on their own. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04mathops: use MUL64 macro where it forms part of other opsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04tty: factorise returning error codes.Anton Khirnov
2011-06-04rawdec: add framerate private option.Anton Khirnov
2011-06-04x11grab: add framerate private option.Anton Khirnov
2011-06-04fbdev,v4l2: remove some forgotten uses of AVFormatParameters.time_base.Anton Khirnov
2011-06-04bktr: don't error when AVFormatParameters.time_base isn't set.Anton Khirnov
There's a private option for it now.
2011-06-04cmdutils: add missing const qualifierMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04Skip headers not designed to work standalone during 'make checkheaders'.Diego Biurrun
2011-06-04Add missing #includes to make headers self-contained.Diego Biurrun
This fixes 'make checkheaders'.
2011-06-04musepack: remove unnecessary #include from mpcdata.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04musepack: remove extraneous mpcdata.h inclusionsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04Fix error check in av_file_map()Mans Rullgard
On failure, mmap() returns MAP_FAILED, which may or may not be -1. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04udp: support old, crappy non pthread modeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-04Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: (21 commits) build: simplify commands for clean target swscale: split swscale.c in unscaled and generic conversion routines. swscale: cosmetics. swscale: integrate (literally) swscale_template.c in swscale.c. swscale: split out x86/swscale_template.c from swscale.c. swscale: enable hScale_altivec_real. swscale: split out ppc _template.c files from main swscale.c. swscale: remove indirections in ppc/swscale_template.c. swscale: split out unscaled altivec YUV converters in their own file. mpegvideoenc: fix multislice fate tests with threading disabled. mpegts: Wrap #ifdef DEBUG and av_hex_dump_log() combination in a macro. build: Simplify texi2html invocation through the --output option. Mark some variables with av_unused Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name(). svq3: Check negative mb_type to fix potential crash. svq3: Move svq3-specific fields to their own context. rawdec: initialize return value to 0. Remove unused get_psnr() prototype rawdec: don't leak option strings. bktr: get default framerate from video standard. ... Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-04ffmpeg: use opt_acodec when setting audio codec in opt_target.Baptiste Coudurier
2011-06-04ffmpeg: fix segfault with too many output filesMichael Niedermayer
Fixes Ticket219 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-04ffplay: error out with invalid sample rate or channels.Michael Niedermayer
Fixes Ticket119 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-03oggdec: fix Ticket185Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-03build: simplify commands for clean targetMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-03j2kdec: dont fail on non zero cblock style.Michael Niedermayer
This allows decoding to continue a bit further for some files. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-03makefile: fix j2k encoder dependanciesRukhsana Ruby
2011-06-03udp: fix indentionJULIAN GARDNER
2011-06-03swscale: split swscale.c in unscaled and generic conversion routines.Ronald S. Bultje
This duplicates the function fillPlane().
2011-06-03swscale: cosmetics.Ronald S. Bultje
Remove duplicate "inC" and "_c" functions that do the same thing; give each function that handles data and acts as a function pointer a "_c" suffix; remove "_c" suffix from functions that are inherently not optimizable. Remove inline keyword from functions that are only used through function pointers.
2011-06-03swscale: integrate (literally) swscale_template.c in swscale.c.Ronald S. Bultje
2011-06-03swscale: split out x86/swscale_template.c from swscale.c.Ronald S. Bultje
2011-06-03swscale: enable hScale_altivec_real.Ronald S. Bultje
2011-06-03swscale: split out ppc _template.c files from main swscale.c.Ronald S. Bultje
2011-06-03swscale: remove indirections in ppc/swscale_template.c.Ronald S. Bultje
2011-06-03swscale: split out unscaled altivec YUV converters in their own file.Ronald S. Bultje
2011-06-03mpegvideoenc: fix multislice fate tests with threading disabled.Ronald S. Bultje
The MPEG encoding code assumes that n_threads == n_slices, and thus it should use n_slices even if threading itself is disabled.
2011-06-03cmdutils: move "#undef main" from ffplay.c to cmdutils.hCarl Eugen Hoyos
On Windows/MinGW the SDL cflags re-define the main() function, which results in a linking error if the define is not undeffed. Since the addition of the SDL output device, SDL cflags are used also for compiling ffmpeg and ffprobe, so we need to move this trick from ffplay.c to a common header. Fix trac issue #256.
2011-06-03wav: update size check for ds64Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-03wav: fix skip size at end of ds64 chunkPhilip de Nier
2011-06-03mpegts: Wrap #ifdef DEBUG and av_hex_dump_log() combination in a macro.Diego Biurrun
2011-06-03build: Simplify texi2html invocation through the --output option.Diego Biurrun
The --output option is available in texi2html since at least version 1.78.
2011-06-03Mark some variables with av_unusedMans Rullgard
Most of these variables are only used in av_dlog statements, some are required but not used by other macros. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-03Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().Stefano Sabatini
This fixes warnings about avcodec_get_pix_fmt_name() being deprecated. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-03svq3: Check negative mb_type to fix potential crash.Baptiste Coudurier
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-03svq3: Move svq3-specific fields to their own context.Baptiste Coudurier
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-03rawdec: initialize return value to 0.Anton Khirnov
2011-06-03Remove unused get_psnr() prototypeVladimir Pantelic
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-03rawdec: don't leak option strings.Anton Khirnov