summaryrefslogtreecommitdiff
path: root/libav
Commit message (Collapse)AuthorAge
* 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
* * Add a sleep when doing the post to ffserver. Yes, this is the wrongPhilip Gladstone2002-05-09
| | | | | | solution. Originally committed as revision 464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Intialize the codec type to video.Philip Gladstone2002-05-09
| | | | Originally committed as revision 463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add the gop_size to the video parameters. Also the audio framesize.Philip Gladstone2002-05-09
| | | | | | | * Copy the duration over as well, though I'm not 100% certain that that is still needed. Originally committed as revision 462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Change extern inline to static inline. This improves compiling without ↵Philip Gladstone2002-05-09
| | | | | | optimization. Originally committed as revision 461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add default cases to switch statements.Philip Gladstone2002-05-09
| | | | Originally committed as revision 460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add a duration field to the AVPacketPhilip Gladstone2002-05-09
| | | | Originally committed as revision 459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Make it work with sound cards (like mine) that can only capture in stereo.Philip Gladstone2002-05-09
| | | | | | | | * Add a kludge to allow the left channel to be inverted -- my tv card/sound card ends up with the left channel = minus right channel. Converting to mono by adding the channels doesn't work well. Originally committed as revision 458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Many, many changes to make it work (mostly). Information snagged fromPhilip Gladstone2002-05-09
| | | | | | | staring at headers of real ASF files. ASFRecorder and avifile were other useful sources. Originally committed as revision 457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Changed FOURCC for H263.Juanjo2002-05-02
| | | | | | - Warnings fixes. Originally committed as revision 430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more msmpeg4 fourccs patch by Gert Vervoort <Gert.Vervoort@wxs.nl>Gert Vervoort2002-04-29
| | | | Originally committed as revision 426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * cleanupZdenek Kabelac2002-04-26
| | | | Originally committed as revision 422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Versions defined for libav/libavcodec.Juanjo2002-04-15
| | | | | | | - Bug fix in wav muxer for MP2 audio. - ffmpeg/libavcodec version in MPEG-4 user data. Originally committed as revision 400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode forJuanjo2002-04-09
| | | | | | | | | | AC3 set avcodec_context->channels to the desired number channels, if the setting is 0 AC3 decoder will set it to the channels found in the stream. - Changed ffmpeg to cope with the new "way" of AC3 decoding. - ASF muxer now uses Tickers for PTS calculations. Originally committed as revision 393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * patch by Philip GladstonePhilip Gladstone2002-04-08
| | | | Originally committed as revision 390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * some minor modification by Philip GladstonZdenek Kabelac2002-04-08
| | | | | | * grab containes new code Originally committed as revision 388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * more warning cleanupsZdenek Kabelac2002-04-08
| | | | | | * adding const & statics Originally committed as revision 387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fixing some warningsZdenek Kabelac2002-04-08
| | | | Originally committed as revision 386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * support for .au .gif .mov .mp4 by François Revol <revol@free.fr>Zdenek Kabelac2002-04-08
| | | | | | hmm any opinions about GIF support ? Originally committed as revision 385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * encoding of AC3 with more than 2 channelsZdenek Kabelac2002-04-08
| | | | | | by Takashi Iwai <tiwai@suse.de> Originally committed as revision 383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Added force_pts to av_write_packet() to be able to force PTS, this helpsJuanjo2002-04-07
| | | | | | | | | | (and fix) stream copying. By now force_pts it's just honoured by the MPEG muxer. ASF could honour this also, but it should be fixed to use Tickers first. - MPEG audio decoder exports it's frame size in bytes. - Hope this fix the floating point exception found in ffserver. Originally committed as revision 382 to svn://svn.ffmpeg.org/ffmpeg/trunk