aboutsummaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
Commit message (Collapse)AuthorAgeFilesLines
...
* require the user to explicitly specifiy --enable-gpl before enabling of gpl ↵Michael Niedermayer2004-04-091-0/+16
| | | | | | | | parts becomes possible print correct license if --enable-gpl is specified Originally committed as revision 2985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)Todd Kirby2004-04-081-9/+226
| | | | Originally committed as revision 2982 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * making it possible to specify recording date and time in a streamRoman Shaposhnik2004-04-061-1/+10
| | | | Originally committed as revision 2971 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10000lMichael Niedermayer2004-04-051-0/+1
| | | | Originally committed as revision 2966 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass frame_size for stream copyMichael Niedermayer2004-04-011-0/+1
| | | | Originally committed as revision 2943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support raw mpegts streams from dvr patch by (wmglo at dent dot med dot ↵Wolfram Gloger2004-03-261-0/+2
| | | | | | uni-muenchen dot de) Originally committed as revision 2931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* h263 loop filter optionMichael Niedermayer2004-03-261-0/+5
| | | | Originally committed as revision 2930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* slice structured encoding support & interlaced spellingMichael Niedermayer2004-03-181-1/+6
| | | | Originally committed as revision 2906 to svn://svn.ffmpeg.org/ffmpeg/trunk
* wrong help textMichael Niedermayer2004-03-181-2/+2
| | | | Originally committed as revision 2904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tcp select() check and enables pressing 'q' when reading/(writing) fromLeon van Stuivenberg2004-03-141-1/+11
| | | | | | tcp/http in ffmpeg.c patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>) Originally committed as revision 2891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nicer output for 'ffmpeg -formats'Michael Niedermayer2004-03-111-38/+86
| | | | Originally committed as revision 2870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write trailer before closing codecs as otherwise accesses to extradata in ↵Michael Niedermayer2004-03-051-6/+6
| | | | | | write_trailer() will cause a segfault Originally committed as revision 2852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux2004-03-031-1/+1
| | | | Originally committed as revision 2840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AVFrame.pts=AV_NOPTS_VALUE instead of AVFrame.pts=0Michael Niedermayer2004-02-251-4/+5
| | | | | | | move AV_NOPTS_VALUE & AV_TIME_BASE from avformat.h -> avcodec.h related fixes Originally committed as revision 2814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* multithreaded mpeg2 decodingMichael Niedermayer2004-02-231-0/+5
| | | | Originally committed as revision 2810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improved VCD support patch by ("Hauke Duden" <H.NS.Duden at gmx dot net>)Hauke Duden2004-02-191-1/+1
| | | | | | | | | | | | | | | | - the first audio and video packs now contain only a system header and lots of padding. - no system headers in any packs other than the first ones - the two system headers only contain information about "their" stream - fixed some header values (muxrate, some flags, ...) so that they have the values specified by the standard - padding packs are inserted if the mux rate would be below 75 packs per second (the rate must not be below or above that value). - fixed the SCR of the packs - 20 zero bytes are now inserted at the end of each audio pack, after the data packet Originally committed as revision 2804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* w32threads by (Gildas Bazin <gbazin at altern dot org>)Michael Niedermayer2004-02-191-5/+5
| | | | Originally committed as revision 2803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix image resizeMichael Niedermayer2004-02-141-1/+1
| | | | Originally committed as revision 2785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Log file and Windows patch by ("Gael Chardon" <gael-announcements+ffmpeg at ↵Gael Chardon2004-02-141-1/+1
| | | | | | 4now dot net>) Originally committed as revision 2781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* threadless threads warningMichael Niedermayer2004-02-131-0/+3
| | | | Originally committed as revision 2776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* multithreaded/SMP motion estimationMichael Niedermayer2004-02-131-1/+74
| | | | | | | | | multithreaded/SMP encoding for MPEG1/MPEG2/MPEG4/H263 all pthread specific code is in pthread.c to try it, run configure --enable-pthreads and ffmpeg ... -threads <num> the internal thread API is a simple AVCodecContext.execute() callback which executes a given function pointer with different arguments and returns after finishing all, that way no mutexes or other thread-mess is needed outside pthread.c Originally committed as revision 2772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass strict_std_compliance to audio context tooMichael Niedermayer2004-02-071-0/+1
| | | | Originally committed as revision 2763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixes by Gildas Bazin <gbazin at altern dot org>Michael Niedermayer2004-02-041-9/+2
| | | | Originally committed as revision 2745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* quantizer noise shapingMichael Niedermayer2004-02-021-1/+8
| | | | Originally committed as revision 2742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* closed gop support & flags2 as all bits in flags are usedMichael Niedermayer2004-01-221-0/+29
| | | | | | and a few minor things i forgot to commit ... Originally committed as revision 2718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uninitalized variables fix by (Gildas Bazin <gbazin at altern dot org>)Michael Niedermayer2004-01-081-1/+1
| | | | | | and some related cleanup by me Originally committed as revision 2677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* interlaced dct decision cleanupMichael Niedermayer2004-01-051-2/+10
| | | | | | | | | function moved to dspcontext mmx&mmx2 optimized change SSE -> SAD as default (better quality) vbv buffer size command line option in kbyte Originally committed as revision 2669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SVCD scan offset stuffMichael Niedermayer2004-01-041-0/+6
| | | | Originally committed as revision 2660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* trellis quantization regression testMichael Niedermayer2004-01-011-0/+5
| | | | Originally committed as revision 2648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minrate=0 for SVCD & DVD, this matches mpeg2enc and the mpeg1/2 vissual standardMichael Niedermayer2004-01-011-2/+2
| | | | Originally committed as revision 2642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* interlaced motion estimationMichael Niedermayer2003-12-301-5/+36
| | | | | | | | | | | | | | interlaced mpeg2 encoding P & B frames rate distored interlaced mb decission alternate scantable support 4mv encoding fixes (thats also why the regression tests change) passing height to most dsp functions interlaced mpeg4 encoding (no direct mode MBs yet) various related cleanups disabled old motion estimaton algorithms (log, full, ...) they will either be fixed or removed Originally committed as revision 2638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* motion vector vissualization improvements patch by (Wolfgang Hesseler <qv at ↵Wolfgang Hesseler2003-12-301-4/+12
| | | | | | multimediaware dot com>) Originally committed as revision 2636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nicer looking PSNR stats (YUV seperate and print the whole file PSNR at the ↵Michael Niedermayer2003-12-291-2/+23
| | | | | | end instead of the last frame's) Originally committed as revision 2635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moved packet output to a separate function - added the frame buffered by the ↵Fabrice Bellard2003-12-151-173/+206
| | | | | | decoder at EOF, if any Originally committed as revision 2615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* motion estimation & mb compare functions command line optionsMichael Niedermayer2003-12-151-0/+24
| | | | Originally committed as revision 2613 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init picture structure to avoid uninitialized fieldsFabrice Bellard2003-12-151-0/+2
| | | | Originally committed as revision 2612 to svn://svn.ffmpeg.org/ffmpeg/trunk
* error concealment regression testMichael Niedermayer2003-12-141-0/+8
| | | | Originally committed as revision 2606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CBR improvementsMichael Niedermayer2003-12-121-1/+4
| | | | Originally committed as revision 2601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed top_field_first support when encodingFabrice Bellard2003-12-121-31/+31
| | | | Originally committed as revision 2600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* obmc encoding flag (forgot to commit...)Michael Niedermayer2003-12-111-0/+6
| | | | Originally committed as revision 2597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update -interlace helpFabrice Bellard2003-12-101-1/+1
| | | | Originally committed as revision 2594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -interlace option - better consistency in helpFabrice Bellard2003-12-101-7/+10
| | | | Originally committed as revision 2588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* h263 alternative inter vlc supportMichael Niedermayer2003-11-291-0/+5
| | | | Originally committed as revision 2541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* h263 OBMC & 4MV supportMichael Niedermayer2003-11-281-1/+0
| | | | | | cleanup Originally committed as revision 2536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_read_frame() - added initial seek support (rename -start to -ss ↵Fabrice Bellard2003-11-101-127/+116
| | | | | | (mplayer...)) - added '-dump' option to dump input packets Originally committed as revision 2504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -target option patch by (Vidar Madsen <vidar at prosalg dot no>)Vidar Madsen2003-11-031-0/+106
| | | | | | this isnt complete or bugfree but its better than nothing Originally committed as revision 2472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * DV demuxer is now capable of decoding auxilary audio stream. So,Roman Shaposhnik2003-10-311-0/+6
| | | | | | | | | | | everybody who still uses second streo track for dubbing can now export it. * void* -> DVDemuxContext* change (per Fabrice's suggestion). * -dv1394 capture now works in all modes. Originally committed as revision 2458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* New options for intra/inter matrices patch by (Vidar Madsen <vidar at ↵Vidar Madsen2003-10-311-1/+43
| | | | | | prosalg dot no>) Originally committed as revision 2456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* forgot to apply this chunk appearently, no, i dont really remember where it ↵Michael Niedermayer2003-10-211-0/+3
| | | | | | came from Originally committed as revision 2409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* start time hack by (devik <devik at cdi dot cz>)Michael Niedermayer2003-10-211-2/+14
| | | | Originally committed as revision 2408 to svn://svn.ffmpeg.org/ffmpeg/trunk