summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAge
* Fix seek regression test for ac3 in rm after r10634Roberto Togni2007-10-01
| | | | | | Needed because avparser changes the size of the packets Originally committed as revision 10635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix timestamps used for ratecontrolMichael Niedermayer2007-09-11
| | | | | | | | these were wrong (in pts vs dts sense) when b frames were in use they were also wrong if the average framerate was smaller than 1/timebase resulting in totally wrong final bitrate Originally committed as revision 10477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow changing of the spatial_decomposition_count and quantization tablesMichael Niedermayer2007-09-09
| | | | | | per frame (this is untested as the encoder does not use it yet) Originally committed as revision 10458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store halfpel filter coefficients in the header as well as theMichael Niedermayer2007-09-08
| | | | | | | | | | | | | | | flag for diagonal interpolation the primary reason for this change is that previously MC up to 1/4 pel matched H.264 exactly and that increases the risk of stumbling over patents secondly this allows 0.10 db or more quality gain by choosing a longer filter and the filter could also be chosen optimally for each frame though that of course would cause speed loss at the decoder and encoder side ... Originally committed as revision 10436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup mc_block()Michael Niedermayer2007-09-08
| | | | | | | | | perform interpolation steps in such an order that halfpel interpolation could be done per picture this also makes mc_block() match h.264 for the 1/4 pel cases so that the use of the h264 functions for some cases does not introduce a fantastic mess Originally committed as revision 10433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update mkv regression tests after r10421David Conrad2007-09-07
| | | | Originally committed as revision 10430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Matroska regression testsDavid Conrad2007-09-05
| | | | Originally committed as revision 10391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If a stream has no start time, but the first packet has a 'pts', use thatNeil Brown2007-09-03
| | | | | | | | | | pts to set the start_time. patch by Neil Brown: [neilb suse de] original thread: [FFmpeg-devel] [patch 3/3] Make timing calculations less dependant on start_time being defined. date: 08/16/2007 08:27 AM Originally committed as revision 10285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use 16bit IDWT (a SIMD implementation of it should be >2x faster then withMichael Niedermayer2007-08-25
| | | | | | | the old 32bit code) disable mmx/sse2 optimizations as they need a rewrite now Originally committed as revision 10218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use more bits on the encoder sideMichael Niedermayer2007-08-23
| | | | | | negligible increase in quality Originally committed as revision 10195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change rounding of the horizontal DWT to match the vertical one.Michael Niedermayer2007-08-21
| | | | | | | This allows some simplifications and optimizations and should not have any effect on quality. Originally committed as revision 10172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use PRId64 in seek testDavid Conrad2007-08-13
| | | | Originally committed as revision 10098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nut regression testMichael Niedermayer2007-08-10
| | | | Originally committed as revision 10057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* take care to use video track field number as durationBaptiste Coudurier2007-08-09
| | | | Originally committed as revision 10024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ignore preroll, it is generally not what AVStream.start_time should containMichael Niedermayer2007-08-06
| | | | Originally committed as revision 9963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make wmv1 and wmv2 playable with M$ DMO decoderMichael Niedermayer2007-08-05
| | | | Originally committed as revision 9950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update seek regressions for r9917Michael Niedermayer2007-08-05
| | | | | | | | | | | | | | | | | (correct initial timestamps which have AV_NOPTS_VALUE) sorry, i will rm tests/seek_test ; make ; make seektest from now on Before r9917 lavf replaced the initial dts which were unknown (AV_NOPTS_VALUE) by values starting from -frame_duration or another guessed value. After r9917 lavf buffers packets until it finds a known timestamp or it buffered too much, it will then correct the previous unknown timestamps in the buffer exactly. For the seek tests that meant that a few initial timestamps would get changed. If no packet in the whole stream contains a timestamp then all timestamps will be changed by first_frame_duration or so as 0 is used instead of -frame_duration as startpoint ... Originally committed as revision 9949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flashsv regression testMichael Niedermayer2007-08-04
| | | | | | closes issue5 Originally committed as revision 9912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regression tests for yuv440p yuvj440pAndreas Öman2007-07-19
| | | | | | patch by Andreas Öman: [andreas olebyn nu] Originally committed as revision 9765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* round timestamps up, k2 broadcast server seems to need itBaptiste Coudurier2007-07-13
| | | | Originally committed as revision 9630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set locale to C in seek testMåns Rullgård2007-07-10
| | | | Originally committed as revision 9584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update regression checksums after r9447Benoit Fouet2007-07-03
| | | | Originally committed as revision 9468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge tests Makefile into the top-level Makefile.Diego Biurrun2007-06-07
| | | | | | This gets rid of some recursion and simplifies the code. Originally committed as revision 9255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The server configuration file is passed as a command line parameter.Diego Biurrun2007-06-07
| | | | Originally committed as revision 9254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seek tests only available with GPL enabledBenoit Fouet2007-05-30
| | | | Originally committed as revision 9154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark phony swscale_error target as such.Diego Biurrun2007-05-29
| | | | Originally committed as revision 9150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Revert accidental removal of unused code.Diego Biurrun2007-05-27
| | | | Originally committed as revision 9142 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Exit with error when running libavtest and not configured with --enable-gpl.Diego Biurrun2007-05-27
| | | | Originally committed as revision 9141 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename variable for consistency.Diego Biurrun2007-05-27
| | | | Originally committed as revision 9140 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmeticsDiego Biurrun2007-05-27
| | | | Originally committed as revision 9139 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better variable namesDiego Biurrun2007-05-27
| | | | Originally committed as revision 9138 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove comments that are neither very enlightening nor particularly up-to-date.Diego Biurrun2007-05-27
| | | | Originally committed as revision 9137 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not hide the commands make runs.Diego Biurrun2007-05-27
| | | | Originally committed as revision 9136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix seek_test compilation for out-of-tree builds.Diego Biurrun2007-05-27
| | | | Originally committed as revision 9135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove portability comment, it should be pure POSIX now.Diego Biurrun2007-05-25
| | | | Originally committed as revision 9130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmeticsDiego Biurrun2007-05-25
| | | | Originally committed as revision 9129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 'grep -q' is a GNU extension.Diego Biurrun2007-05-25
| | | | Originally committed as revision 9128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not fail or print an error if the logfile already exists.Diego Biurrun2007-05-25
| | | | Originally committed as revision 9127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also remove seek_test upon clean.Diego Biurrun2007-05-25
| | | | Originally committed as revision 9125 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace multiple rules for compiling binaries by one pattern rule.Diego Biurrun2007-05-24
| | | | Originally committed as revision 9123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use proper license header.Diego Biurrun2007-05-24
| | | | Originally committed as revision 9122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typoDiego Biurrun2007-05-24
| | | | Originally committed as revision 9121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove obsolete and non-working DSP test program.Diego Biurrun2007-05-24
| | | | Originally committed as revision 9120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* forgotten h.261 seek regression checksum update due toMichael Niedermayer2007-05-21
| | | | | | | | "r9076 | michael | 2007-05-20 03:05:34 +0200 (Sun, 20 May 2007) | 2 lines slightly more correct spliting of frames" Originally committed as revision 9089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not specify directories in #include path, -I flags take care of this.Ronald S. Bultje2007-05-16
| | | | | | taken from a patch by Ronald S. Bultje, rbultje ronald.bitfreak net Originally committed as revision 9035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove trailing / from -I flags, MinGW appears to dislike them.Zuxy Meng2007-05-09
| | | | | | patch by Zuxy Meng, zuxy.meng gmail com Originally committed as revision 8948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give the position offset of the file in the packetDaniel Cardenas2007-05-02
| | | | | | | | | update seek regression test reference file accordingly patch by Daniel Cardenas: Daniel Car cox net original thread: [Ffmpeg-devel] [PATCH] Debug help for file position date: 05/01/2007 02:42 AM Originally committed as revision 8871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update reference file for seek test after delivery 8826Benoit Fouet2007-05-02
| | | | Originally committed as revision 8870 to svn://svn.ffmpeg.org/ffmpeg/trunk