summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
Commit message (Expand)AuthorAgeFilesLines
* Make init_video function in dec_video static, it is not used outside that file.reimar2007-12-112-4/+1
* Fix all current known multi-channel wrong order problems by addingulion2007-12-107-0/+71
* Prevent from outputing mass of 'skip' log messages in verbose level.ulion2007-12-051-1/+1
* Use correct printf length modifiers, fixes the following warnings:diego2007-12-031-15/+15
* 10l, len may change after initialization timerfelker2007-12-031-1/+1
* fix declaration after statement, take 2rfelker2007-12-031-9/+10
* fix declaration after statementrfelker2007-12-031-2/+2
* Make m_option_t arrays referenced by cfg-common.h constreimar2007-12-022-2/+2
* Add appropriate const specifiers to some custom parse functions.reimar2007-12-021-1/+1
* get/set video colors string is constantreimar2007-12-022-4/+4
* vf_equalizer_t string is constantreimar2007-12-021-1/+1
* Make all vf_info_t structs constreimar2007-12-0270-71/+71
* Mark several uses of vo_functions_t as const to stop some of the currentreimar2007-12-021-2/+2
* Remove completely outdated commented-out codereimar2007-12-021-1/+0
* Add support for Apple's yuv2 raw formatreimar2007-11-301-0/+7
* Fix warnings:ulion2007-11-271-2/+2
* Simplify convert_14bits_to_16bits function in ad_hwac3reimar2007-11-261-18/+10
* Support convert 14-bit DTS stream into 16-bit stream if needed,ulion2007-11-241-6/+65
* Make hwdts support more dts format identification, 14bits or 16bits, LE or BE.ulion2007-11-211-24/+128
* Replace stupid "unsigned long" by the correct uint32_t.reimar2007-11-121-21/+21
* Use proper inttypes.h types instead of broken uint32 etc. definesreimar2007-11-121-13/+9
* Add missing header files, fixes the warnings:diego2007-11-092-0/+2
* Add missing header file, fixes the warnings:diego2007-11-091-0/+1
* Remove misleading comment and remove unnecessary #includes.diego2007-11-091-4/+0
* Rearrange headers to get rid of an #undef and remove unnecessary headers.diego2007-11-091-13/+4
* Remove unnecessary dsputil.h #include, fixes the warnings:diego2007-11-091-1/+0
* #include libavcodec/eval.h instead of manually declaring ff_eval.diego2007-11-091-7/+1
* const fixrfelker2007-11-091-1/+1
* ack, can't believe i wrote this crap with void pointer arithmeticrfelker2007-11-091-38/+0
* begin moving const filter data to .text/.rodata sectionsrfelker2007-11-096-19/+19
* stage 1 of applying const to vf structsrfelker2007-11-092-86/+86
* vf_screenshot does not depend on libpng; it uses libavcodec nowrfelker2007-11-091-2/+0
* Simplify decode_audio function a bit.reimar2007-11-081-16/+12
* Remove a check+abort, this case should never happen anyway, and if it doesreimar2007-11-031-3/+0
* Simplify init_audio_filters() argumentsuau2007-11-012-21/+5
* audio: simplify buffer allocation codeuau2007-11-011-13/+2
* Change decode_audio() interfaceuau2007-11-012-74/+102
* Replace hopefully unreachable code with abort()uau2007-11-011-7/+2
* dec_audio.c: Make some functions staticuau2007-11-012-5/+3
* Simplify audio buffer allocation logicuau2007-11-011-7/+5
* Reindent dec_audio.cuau2007-11-011-332/+373
* Comment out uninit function, its use is commented out. Fixes warning:diego2007-10-301-0/+2
* Remove commented-out and unused fmt_list array.diego2007-10-301-17/+0
* Remove unused fmt_list array, fixes the warnings:diego2007-10-303-39/+0
* Remove unused functions, fixes the warnings:diego2007-10-301-41/+0
* Change the frame format passed to lavc realvideo decoders to adapt for rtogni2007-10-281-15/+12
* fix warning:diego2007-10-221-1/+1
* Check ICDecompressGetFormatSize to avoid crashes.reimar2007-10-211-0/+5
* reminder that this filter has broken global varsrfelker2007-10-191-0/+2
* Remove unused static function get_image().zuxy2007-10-171-17/+0
* Add Coinitialize function to vfw encoder and win32 loader.compn2007-10-171-1/+23
* Reorder #includes to get rid of the FIXMEzuxy2007-10-121-10/+4
* Remove unnecessary #include <malloc.h>zuxy2007-10-121-4/+0
* Silence a gcc warning: "wrong type argument to increment".zuxy2007-10-111-1/+1
* Make vf_screenshot use the libavcodec PNG encoderreimar2007-10-092-44/+37
* Fix output channle orderingrtogni2007-10-071-25/+24
* Typortogni2007-10-061-1/+1
* change double arrays to float (this should be accurate enough)michael2007-10-041-8/+8
* fix infinite loopmichael2007-10-041-3/+7
* overcomplete wavelet denoisermichael2007-10-033-0/+341
* Disable direct rendering for ROQ video, the buffer management used by rtogni2007-09-301-1/+1
* Define profiles_t as const to fix a warning. Prevent profiles[] from been exp...iive2007-09-281-2/+2
* Disable unused query_format functions for now until they arediego2007-09-263-0/+6
* Disable buggy unused function via #if 0, blessed by Rich.diego2007-09-261-0/+2
* Remove unused crappy hash_pic function, blessed by Rich.diego2007-09-261-19/+0
* MPEG-2 blocks at qp 1 get overfiltered by spp, apparently because "qp>>1" turnsdiego2007-09-181-1/+1
* Replace stdint.h #include by functionally equivalent inttypes.h.diego2007-09-181-1/+1
* Make vd_ffmpeg work with lavf demuxer also for RealVideo.reimar2007-09-161-1/+1
* Copy AC-3 bsmod field into IEC data-type field as required by the specsreimar2007-09-151-0/+1
* Handle swab when input length is odd (treat it as if there was an additionalreimar2007-09-151-2/+10
* Fix off-by-one error if fsize is odd (does handling that case even make sense?)reimar2007-09-141-2/+1
* Mark DTS tables as constreimar2007-09-141-2/+2
* Fix 10l typo in syncwordreimar2007-09-141-1/+1
* Improved comments, based on patches by Ulion [ulion2002 gmail com]reimar2007-09-141-6/+6
* Simplify and fix big-endian hwac3 header generation code.reimar2007-09-141-17/+13
* Deobfuscate: use IMGFMT_RGB_DEPTH and IMGFMT_IS_BGRreimar2007-09-131-10/+10
* warning fix:diego2007-09-091-2/+0
* warning fix:diego2007-09-091-0/+2
* Add a check for c->head being NULL in pullup_free_context().gpoirier2007-09-081-0/+1
* Support lowdelay flagreimar2007-09-061-0/+3
* warnig fix (blessed by Rich):diego2007-09-041-1/+1
* added .stream_aspect to st_video_t: if non-zero and if not specified otherwisenicodvb2007-09-011-0/+1
* Remove imported rational calculation code and use the original one from avutil.iive2007-09-011-83/+11
* Remove pointless #ifdef HAVE_XVMC within get_format(), all of the functiondiego2007-08-281-2/+0
* warning fix:diego2007-08-281-3/+3
* warning fix:diego2007-08-281-1/+1
* cosmetics: Add some explanatory comments to #endif directives.diego2007-08-281-2/+2
* warning fix:diego2007-08-281-1/+0
* Add code to clear left and right borders not only top and bottom.reimar2007-08-281-2/+20
* Clean up the way get_path is handled: Compile get_path.c to an object to linkdiego2007-08-282-4/+0
* Set sample_rate and bit_rate from sh_audio as fallback in case sh_audio->wfreimar2007-08-271-0/+2
* warning fix:diego2007-08-251-1/+0
* Remove redundant variable declaration.diego2007-08-251-2/+0
* Remove redundant variable declaration.diego2007-08-252-3/+0
* Remove redundant variable declaration.diego2007-08-251-2/+0
* Fix some unused variable warnings.diego2007-08-251-3/+3
* Fix unused variable warning.diego2007-08-251-1/+1
* Fix unused variable warning.diego2007-08-241-1/+2
* Remove unused variable.diego2007-08-241-1/+0
* Use new request_channelsreimar2007-08-231-0/+1
* Runtime-patching for windows to fix crash with drv43260.dll reimar2007-08-201-0/+44
* printf in mp_image.h was changed to fprintf in r17972.cehoyos2007-08-082-6/+6
* make x264 work again after the h264-libx264 renamingmichael2007-08-071-0/+2
* Move alloc_mpi and copy_mpi from libmenu/vf_menu.c to libmpcodecs/mp_image.c.cehoyos2007-08-043-0/+69
* Revert setting audio output channel count for FFmpeguau2007-08-021-2/+0
* Set lavc_context->channels before opening the codec, it is sufficient toreimar2007-08-011-2/+2
* allow to specify the audio bitrate in bits (some codecs need that ...)michael2007-07-312-2/+5
* make timestamps out of hot airmichael2007-07-311-0/+3
* make a few more parameters accessable from mplayermichael2007-07-311-1/+14
* Move extern int audio_output_channels; to ad_internal.hreimar2007-07-306-9/+1
* Indicate desired number of output channels to ffmpeg audio decoder.reimar2007-07-301-0/+3
* Avoid void * arithmeticreimar2007-07-301-2/+2
* Use goto instead of useless recursion that might fill up the stackreimar2007-07-301-2/+2
* Do not use a return value for a void functionreimar2007-07-301-1/+2
* Compilation fix workaround for dca.h conflict (it exists in libavcodec rtogni2007-07-231-1/+1
* DTS decoding via libdcartogni2007-07-223-0/+352
* Put a compilation fix bandaid in place for the png.h issue.diego2007-07-171-0/+3
* Print the number of the Unknow color format,iive2007-07-111-1/+4
* remove unused variableslorenm2007-07-111-9/+1
* ISO8859-1 --> UTF-8diego2007-07-092-3/+3
* Do not use leading underscores in multiple inclusion guards, they are reserved.diego2007-07-027-14/+14
* Get rid of my_memcpy_pic code duplication in many filters.reimar2007-06-289-125/+9
* config.h must be included before other headersreimar2007-06-241-1/+1
* Make sure we always have a swab() prototype when we use it,reimar2007-06-242-0/+2
* Remove unused (static) function prototype.reimar2007-06-241-1/+0
* Move variable into the block where it actually usedreimar2007-06-241-1/+1
* Remove unused query_format function in vf_harddup.reimar2007-06-241-12/+0
* Avoid more void * arithmeticreimar2007-06-241-2/+4
* 100l, fix compile error in r23498 due to bad copy in pastereimar2007-06-071-1/+1
* RGB8/BGR8 IMGFMTs are paletted in case of swscale input.reimar2007-06-071-0/+2
* Do not use fast_memcpy when data is read again immediately afterwards.reimar2007-06-051-2/+2
* Do not use fast_memcpy for small size copy, esp. when the size is constantreimar2007-06-053-4/+4
* Replace implicit use of fast_memcpy via macro by explicit use to allowreimar2007-06-0525-80/+80
* Use avcodec_decode_audio2 in ad_ffmpeg.creimar2007-06-051-2/+3
* mjpeg support for v4l2 tv:// drivervoroshil2007-06-011-0/+1
* Remove some unused variables, patch by timwoj ieee org.diego2007-05-282-2/+1
* Move variable declaration into conditional to avoid an unused variable warning.diego2007-05-281-1/+1
* Remove unused variables.diego2007-05-281-2/+0
* Removed useless fastmemcpy.h includes in video decodersreimar2007-05-272-2/+0
* Remove useless fastmemcpy.h include for filters that do not even do any memcpy.reimar2007-05-2730-46/+0
* compilation fix: ff_ _encode added and temporarily disabled mjpeg_write_tablesrik2007-05-271-8/+8
* Pass imgfmt from lavc encoder to lavf muxer (this is needed for dv).corey2007-05-171-0/+1
* Include string.h for memcpy, fastmemcpy.h alone is not enough.reimar2007-05-162-0/+2
* Make vd_raw VDCTRL_QUERY_FORMAT simpler to understandreimar2007-05-141-1/+2
* Add DV fourcc.corey2007-05-131-0/+2
* Fix "inline keyword not at beginning of declaration" warning.diego2007-05-051-1/+1
* add "level" as lavc optioncehoyos2007-05-031-0/+3
* Remove unused variable,reimar2007-04-291-1/+0
* Add -ass-hinting option for setting font hinting method.eugeni2007-04-273-4/+5
* Simplify preprocessor directives: There is a general variable fordiego2007-04-262-3/+3
* Add config.h variables for static FFmpeg libraries.diego2007-04-261-1/+1
* Add general variables for either static or shared FFmpeg libraries.diego2007-04-261-4/+1
* cosmetics: Rename Makefile variable CONFIG_ASS --> ASS.diego2007-04-251-1/+1
* cosmetics: Remove CONFIG_ prefix from FFmpeg library Makefile variables.diego2007-04-251-7/+7
* Gui --> guidiego2007-04-231-1/+1
* support format=y8 with -ovc rawlorenm2007-04-111-0/+4
* "()" to "(void)" function param list fixesuau2007-04-013-4/+4
* Fix double close() in ve_vfw.ciive2007-03-241-1/+0
* cosmetics: Merge #ifdefs for better readability.diego2007-03-231-6/+2
* allows to de- and reactivate kerndeint on the flycehoyos2007-03-221-2/+22
* Conditionally compile vf_bmovl.c instead of enclosing all of the filediego2007-03-212-5/+1
* Invert logic for HAVE_NO_POSIX_SELECT to HAVE_POSIX_SELECT to be in linediego2007-03-212-2/+2
* Move libav* include CFLAGS to mpcommon.mak instead of duplicating them.diego2007-03-181-3/+0
* Add explicit location for headers from the libmpdemux/ directory.diego2007-03-1524-64/+62
* Add explicit location for headers from the stream/ directory.diego2007-03-1515-22/+22
* Add explicit location for headers from the stream/ directory.diego2007-03-159-9/+8
* Use explicit header location, don't use CFLAGS for simple subdirectories.diego2007-03-153-4/+3
* Include loader/ prefix in #include path everywhere.diego2007-03-1512-20/+19
* cosmetics: Fix indentation, reorder some lines for consistency.diego2007-03-131-101/+99
* Give more descriptive names to the source and library variables and splitdiego2007-03-131-42/+40
* Source files should not contain non-ASCII characters.diego2007-03-121-2/+2
* Allow demuxers to return packets with no pts in -correct-pts modeuau2007-03-111-3/+10
* Reindent messy functions before working on themuau2007-03-111-68/+71
*