summaryrefslogtreecommitdiff
path: root/libav
Commit message (Collapse)AuthorAge
* patch by François Revol <revol at free dot fr>François Revol2002-07-23
| | | | | | | | | | - fix for multiple frames per chunk - better probing - better header parsing - fixed some 4CCs - use av_new_stream() (but still dealocates some of them with av_free()) Originally committed as revision 790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adpcm encoding patch by François Revol <revol at free dot fr>François Revol2002-07-22
| | | | Originally committed as revision 785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* beos/mov/adpcm patch by François Revol <revol at free dot fr>François Revol2002-07-20
| | | | | | | | | | | | | | | | | | | | | * Some BeOS fixes: - errno stuff - nanosleep() replacement - added a doc/README.beos * mov reader still has problems with most videos (skips many chunks), - It should now read .mov files with zlib-compressed moov headers (aka cmov) - added SVQ1 support. - removed mapping 'raw ' and 'yuv2' to h263, was my mistake. - added IMA4 support. (tested) - fixed frame rate (it reported 0 fps or something before) - extended file probing ('wide' and 'free' atoms) - improved .mov/.mp4 detection (or so I think) * adpcm * added zlib support, with header file and lib check Originally committed as revision 780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* largefile support patch by Roy Sigurd Karlsbakk <roy at karlsbakk.net>Roy Sigurd Karlsbakk2002-07-18
| | | | Originally committed as revision 778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * using time.h for Cygwin systems as wellZdenek Kabelac2002-07-18
| | | | Originally committed as revision 777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * redundant declaration removedZdenek Kabelac2002-07-08
| | | | Originally committed as revision 724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added rtp protocolFabrice Bellard2002-07-04
| | | | Originally committed as revision 720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added rtsp support (not activated yet)Fabrice Bellard2002-07-04
| | | | Originally committed as revision 719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added rtp support (not activated yet)Fabrice Bellard2002-07-04
| | | | Originally committed as revision 718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added raw tcp supportFabrice Bellard2002-07-04
| | | | Originally committed as revision 717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more mpeg4 fourcc'sMichael Niedermayer2002-06-22
| | | | Originally committed as revision 701 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed VOB parsing bugFabrice Bellard2002-06-18
| | | | Originally committed as revision 699 to svn://svn.ffmpeg.org/ffmpeg/trunk
* wmv1Michael Niedermayer2002-06-18
| | | | Originally committed as revision 698 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change ticker_tick to use ticker_abs as we want the absolute numberPhilip Gladstone2002-06-17
| | | | | | of ticks. In particular we want an INT64 return. Originally committed as revision 693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ticker_abs function that returns the number of ticks to get thePhilip Gladstone2002-06-17
| | | | | | supplied frame (or sample) number. This is not the same as ticker_tick Originally committed as revision 692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the way that the ?date= stuff is parsed. It now takes a time (with ↵Philip Gladstone2002-06-14
| | | | | | | | | | | | optional date) in local time rather than GMT. Note that you are advised to use the date as well as the time as the time is relative to the current day (which is not much use if the time is in the future). The date format parsing is pretty strict still: YYYY-MM-DDTHH:MM:SS is a format that works. The T is a literal non-digit character. I wouldn't use a space. The :SS can be omitted. The number of digits *must* be four in the Year. Originally committed as revision 691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimized ticker_tick() if num is big - please test it (should reduce CPU ↵Fabrice Bellard2002-06-11
| | | | | | usage - this code is temporary before new PTS handling scheme) Originally committed as revision 681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Get the buffer size right now we have the buffer inside the FFStream blockPhilip Gladstone2002-06-05
| | | | Originally committed as revision 666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add the comment block if any of the comment fields are present.Philip Gladstone2002-06-05
| | | | | | | * Eliminate compiler warning * Add the codec name if we have it Originally committed as revision 664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some calls to av_free that tured out to be duplicate. This improvesPhilip Gladstone2002-06-04
| | | | | | the behaviour of ffserver streaming asf files from disk. Originally committed as revision 662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that the http_proxy environment variable starts with http://Philip Gladstone2002-05-29
| | | | | | If not, then ignore it's value. Originally committed as revision 628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use sys/soundcard.h for OSS audioFabrice Bellard2002-05-26
| | | | Originally committed as revision 607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license/copyright changeFabrice Bellard2002-05-25
| | | | Originally committed as revision 593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed double free - fixed probe functionFabrice Bellard2002-05-25
| | | | Originally committed as revision 592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed double free - fixed jpg image sequence automatic selectionFabrice Bellard2002-05-25
| | | | Originally committed as revision 591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed memory free (no free necessary for private data) - added better ↵Fabrice Bellard2002-05-25
| | | | | | support for automatic testing Originally committed as revision 590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change order of extensions and read_probe checking. This gives the read_probePhilip Gladstone2002-05-24
| | | | | | | | | | | a higher priority than extensions. This gives FFM a chance of working. Note that some of the other probe functions are bit optimistic, and can be confused by binary data (such as 0x00 0x00 0x01 0xzz) for some values of zz. This set of changes makes ffserver work again, and fixes the cannot open video grab device message. Originally committed as revision 581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add a probe function for FFM filesPhilip Gladstone2002-05-24
| | | | Originally committed as revision 580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Fix a problem caused by a duplicate free of priv_data -- now uses av_freepPhilip Gladstone2002-05-24
| | | | | | * Make sure that the read buffer for the ffm file is allocated in the priv_data. Originally committed as revision 578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed memory freeFabrice Bellard2002-05-20
| | | | Originally committed as revision 552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* converted to new APIFabrice Bellard2002-05-20
| | | | Originally committed as revision 547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* suppressed mpeg demux mess - use now dynamic stream creation apiFabrice Bellard2002-05-20
| | | | Originally committed as revision 546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split mux/demux related structures - added file probing support - improve ↵Fabrice Bellard2002-05-20
| | | | | | media file reading API Originally committed as revision 545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added first version of MPEG/DVB transport stream demuxFabrice Bellard2002-05-20
| | | | Originally committed as revision 544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av memory handling functionsFabrice Bellard2002-05-18
| | | | Originally committed as revision 528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed pcm readFabrice Bellard2002-05-18
| | | | Originally committed as revision 527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added VPATH supportFabrice Bellard2002-05-18
| | | | Originally committed as revision 526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added dummy crc output format for easy codec testingFabrice Bellard2002-05-18
| | | | Originally committed as revision 525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the WAIT_FEED problem. It turns out that when you open up an FFMPhilip Gladstone2002-05-18
| | | | | | | | file and seek to an FFM packet, then it is important that the packet found has a frame header within it. If not, then terrible things happen. This fixes the problem. Originally committed as revision 513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass over the bit_rate_tolerance field to ffmpegPhilip Gladstone2002-05-16
| | | | Originally committed as revision 500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Added r_frame_rate in AVStream to store the real frame rate.Juanjo2002-05-14
| | | | | | | - This stuff could be done in AVCodecContext and the real frame rate calculated in utils.c, but we don't changes in that by now ;) Originally committed as revision 497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - VCD MPEG-1 compliant stream support (set AVF_FLAG_VCD)Juanjo2002-05-12
| | | | Originally committed as revision 491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Fixes for MPEG-PS which have more than 1 system header, now we don't takeJuanjo2002-05-11
| | | | | | | in account the system header just walk through the file searching streams. MPEG-PS demuxer needs more work anyway. Originally committed as revision 485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add implementation of strlcpyPhilip Gladstone2002-05-10
| | | | | | * Fix endless loop in find_info_tag if given specific arguments Originally committed as revision 481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add prototype for strlcpyPhilip Gladstone2002-05-10
| | | | Originally committed as revision 480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add the 'flags' field to the list of codec fields passed from ffserver toPhilip Gladstone2002-05-09
| | | | | | ffmpeg. This gives the VideoHighQuality patch a fighting chance. Originally committed as revision 479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Make put_wav_header return the number of bytes that it put.Philip Gladstone2002-05-09
| | | | Originally committed as revision 468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Change extern inline to static inline so that it will compile without ↵Philip Gladstone2002-05-09
| | | | | | optimization Originally committed as revision 467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Try and fill out some more of the RV header fields correctlyPhilip Gladstone2002-05-09
| | | | Originally committed as revision 466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add defaults to switch statementsPhilip Gladstone2002-05-09
| | | | Originally committed as revision 465 to svn://svn.ffmpeg.org/ffmpeg/trunk