summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAge
* use short optionBaptiste Coudurier2008-05-25
| | | | Originally committed as revision 13371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not loop input, uselessBaptiste Coudurier2008-05-24
| | | | Originally committed as revision 13369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix feed path according to regression scriptBaptiste Coudurier2008-05-24
| | | | Originally committed as revision 13368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify, use ffserver launch directiveBaptiste Coudurier2008-05-24
| | | | Originally committed as revision 13367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* no need to sleep to hide crashesBaptiste Coudurier2008-05-21
| | | | Originally committed as revision 13225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #include required stdint.h header directly.Diego Biurrun2008-05-08
| | | | Originally committed as revision 13084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #include stdint.h instead of using a manual typedef for uint8_t.Diego Biurrun2008-05-07
| | | | Originally committed as revision 13073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not duplicate -y parameter on regression.sh.Ramiro Polla2008-05-01
| | | | | | It is already set by FFMPEG_OPTS. Originally committed as revision 13029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ignore whitespace differences in seek test.Ramiro Polla2008-05-01
| | | | Originally committed as revision 13028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix adpcm ima qt decoding, channel at init is 0, correct stereo out since ↵Baptiste Coudurier2008-04-25
| | | | | | samples += avctx->channels Originally committed as revision 12965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsBaptiste Coudurier2008-04-25
| | | | Originally committed as revision 12962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct ASF duration.Henrik Gulbrandsen2008-04-21
| | | | | | Patch by Henrik Gulbrandsen: henrik gulbra net Originally committed as revision 12916 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use generic seeking code for flv. The removed code was a buggy duplicate.Michael Niedermayer2008-04-14
| | | | Originally committed as revision 12812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix seeking in rm.Michael Niedermayer2008-04-09
| | | | Originally committed as revision 12779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update ogg seek reg tests because of r12630Baptiste Coudurier2008-04-01
| | | | Originally committed as revision 12664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* homogenous regression tests output for image formatsBaptiste Coudurier2008-03-30
| | | | Originally committed as revision 12639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* missed oneBaptiste Coudurier2008-03-30
| | | | Originally committed as revision 12638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove leading whitespacesBaptiste Coudurier2008-03-30
| | | | Originally committed as revision 12637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change rle encoder to count up to 127, sgi does not support 128Baptiste Coudurier2008-03-30
| | | | Originally committed as revision 12631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use 15-bit LPC precision by default. This generally gives better compressionJustin Ruggles2008-03-30
| | | | | | results. Also update Ogg regression test. Originally committed as revision 12630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix Ogg/FLAC header sizeJustin Ruggles2008-03-30
| | | | Originally committed as revision 12626 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove superflous commentsBaptiste Coudurier2008-03-18
| | | | Originally committed as revision 12488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update the regression tests reference values after the changes to the MatroskaPanagiotis Issaris2008-03-10
| | | | | | muxer/demuxer in revision 12358. Originally committed as revision 12407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace -f pgmyuv with -f image2 -vcodec pgmyuvMåns Rullgård2008-03-07
| | | | Originally committed as revision 12361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify do_video_encoding() in regression.shMåns Rullgård2008-03-07
| | | | | | | All calls of this function use pgmyuv input format; hence no need to specify it explicitly. Originally committed as revision 12360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove mp4psp regression testMåns Rullgård2008-03-07
| | | | | | | | | | The PSP MP4 format requires an AAC audio stream, so until we have an AAC encoder we cannot test this format. The existing test is broken and does not actually use the PSP format. Originally committed as revision 12359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IMA ADPCM encoder - QT variantKostya Shishkov2008-03-06
| | | | Originally committed as revision 12348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The last flag fix fixed mpeg4-qprd (there the flags ended up being trashedMichael Niedermayer2008-03-05
| | | | | | | | through lrintf(), that is gcc put the 32bit int flags in a 32bit float which caused some to be lost ...). I wonder why FATE did not pick this up? Originally committed as revision 12329 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix trellis quant + AAN DCT.Michael Niedermayer2008-02-25
| | | | Originally committed as revision 12221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This shell script is not bash-specific.Diego Biurrun2008-02-16
| | | | Originally committed as revision 12124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove check for the availability of the -u diff flag, we require it inDiego Biurrun2008-02-16
| | | | | | other places without checking for its availability already. Originally committed as revision 12123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix timestamps and durations if the first packets have no durations nor ↵Michael Niedermayer2008-02-15
| | | | | | | | timestamps, and the information needed to guess the duration only becomes known at a later packet. Originally committed as revision 11963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* It appears last_pts was not set ...Michael Niedermayer2008-02-15
| | | | Originally committed as revision 11939 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Header elision muxing support.Michael Niedermayer2008-02-15
| | | | | | | | | | This only removes 2 bytes from MP3 and MP2 currently. Up to 4 could be removed from MP3/MP2 though this might need a 2pass muxer. Primitive code to remove headers from MPEG-1/2/4 is there too but for the single file I tried it on (the one in the regression tests), it was a loss because all video frames were >4096 byte, so that it is disabled ATM. Originally committed as revision 11936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update regression test checksum for ffm.Benoit Fouet2008-02-14
| | | | Originally committed as revision 11933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seek regression ref update for oggBaptiste Coudurier2008-02-05
| | | | Originally committed as revision 11869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix issue 338:Baptiste Coudurier2008-02-05
| | | | | | | | | Correctly interleave ogg packets per granule and set eos correctly, 2 packets buffering is needed. It duplicates interleave_per_dts a bit, if someone has a good solution, I'll implement it. Originally committed as revision 11867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update seektest regression as well to previous lavf/nut commitsOded Shimon2008-02-04
| | | | Originally committed as revision 11864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* back_ptr calculation used wrong timebase when searching for back syncpointOded Shimon2008-02-04
| | | | Originally committed as revision 11856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix intented algo in syncpoint writing before keyframes in NUT muxerOded Shimon2008-02-04
| | | | Originally committed as revision 11855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nut->max_distance was not set at all anywhere in the NUT muxerOded Shimon2008-02-04
| | | | Originally committed as revision 11854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_nut_reset_ts() expected to get 'ts*time_base_count', but muxer onlyOded Shimon2008-02-04
| | | | | | gave it 'ts'. Fixed by changing ff_nut_reset_ts() and demuxer params Originally committed as revision 11851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove single-frame images from seektestMåns Rullgård2008-02-03
| | | | Originally committed as revision 11837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless/incorrect comments in regression.shMåns Rullgård2008-02-03
| | | | Originally committed as revision 11834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split lavf regression testsMåns Rullgård2008-02-03
| | | | Originally committed as revision 11833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split regression tests allowing make to run them in parallelMåns Rullgård2008-02-03
| | | | Originally committed as revision 11832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get seek regression test filenames from reference fileMåns Rullgård2008-02-03
| | | | Originally committed as revision 11831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix b-libav.ul/al seek regression test.Michael Niedermayer2008-01-31
| | | | Originally committed as revision 11696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove duplicate, disabled nut regression testMåns Rullgård2008-01-30
| | | | Originally committed as revision 11671 to svn://svn.ffmpeg.org/ffmpeg/trunk