Philip Gladstone
07c4ed85f7
* Add a probe function for FFM files
...
Originally committed as revision 580 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
789bee1264
* Fix a problem caused by a duplicate free of priv_data -- now uses av_freep
...
* 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
23 years ago
Fabrice Bellard
754ebe3465
fixed memory free
...
Originally committed as revision 552 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
c9a65ca8c3
converted to new API
...
Originally committed as revision 547 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
db7f1f95ac
suppressed mpeg demux mess - use now dynamic stream creation api
...
Originally committed as revision 546 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
b9a281db69
split mux/demux related structures - added file probing support - improve media file reading API
...
Originally committed as revision 545 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
fe9cf0d44e
added first version of MPEG/DVB transport stream demux
...
Originally committed as revision 544 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
1ea4f59365
use av memory handling functions
...
Originally committed as revision 528 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
065422677a
fixed pcm read
...
Originally committed as revision 527 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
f57a4535bd
added VPATH support
...
Originally committed as revision 526 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
1c098b2fb6
added dummy crc output format for easy codec testing
...
Originally committed as revision 525 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
5e57424d11
Fix the WAIT_FEED problem. It turns out that when you open up an FFM
...
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
23 years ago
Philip Gladstone
3884a3c322
Pass over the bit_rate_tolerance field to ffmpeg
...
Originally committed as revision 500 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
76c0441b10
- Added r_frame_rate in AVStream to store the real frame rate.
...
- 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
23 years ago
Juanjo
92b3e12592
- VCD MPEG-1 compliant stream support (set AVF_FLAG_VCD)
...
Originally committed as revision 491 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
ab0ff2a563
- Fixes for MPEG-PS which have more than 1 system header, now we don't take
...
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
23 years ago
Philip Gladstone
8d1335ea2b
* Add implementation of strlcpy
...
* Fix endless loop in find_info_tag if given specific arguments
Originally committed as revision 481 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
283383715f
* Add prototype for strlcpy
...
Originally committed as revision 480 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
ccac2e27f1
* Add the 'flags' field to the list of codec fields passed from ffserver to
...
ffmpeg. This gives the VideoHighQuality patch a fighting chance.
Originally committed as revision 479 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
afc25d93ea
* Make put_wav_header return the number of bytes that it put.
...
Originally committed as revision 468 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
ec6ac5e1fb
* Change extern inline to static inline so that it will compile without optimization
...
Originally committed as revision 467 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
5d6ef63fdc
* Try and fill out some more of the RV header fields correctly
...
Originally committed as revision 466 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
ac5e6a5bd7
* Add defaults to switch statements
...
Originally committed as revision 465 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
ddceb31d93
* Add a sleep when doing the post to ffserver. Yes, this is the wrong
...
solution.
Originally committed as revision 464 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
28c66901a9
Intialize the codec type to video.
...
Originally committed as revision 463 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
20f0154831
* Add the gop_size to the video parameters. Also the audio framesize.
...
* 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
23 years ago
Philip Gladstone
7ac13f0c7e
* Change extern inline to static inline. This improves compiling without optimization.
...
Originally committed as revision 461 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
53cafac09c
* Add default cases to switch statements.
...
Originally committed as revision 460 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
6d9872f416
* Add a duration field to the AVPacket
...
Originally committed as revision 459 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Philip Gladstone
1de1cce27d
* Make it work with sound cards (like mine) that can only capture in stereo.
...
* 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
23 years ago
Philip Gladstone
f80c1ac01b
* Many, many changes to make it work (mostly). Information snagged from
...
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
23 years ago
Juanjo
95c79a24e5
- Changed FOURCC for H263.
...
- Warnings fixes.
Originally committed as revision 430 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Gert Vervoort
bb3debab2c
more msmpeg4 fourccs patch by Gert Vervoort <Gert.Vervoort@wxs.nl>
...
Originally committed as revision 426 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Zdenek Kabelac
1ac9248bb7
* cleanup
...
Originally committed as revision 422 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
4b1f4f236b
- Versions defined for libav/libavcodec.
...
- 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
23 years ago
Juanjo
e0d2714adc
- Fixed AC3 decoding for 5:1 AC3 streams. Now when calling av_audio_decode for
...
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
23 years ago
Philip Gladstone
502d105f96
* patch by Philip Gladstone
...
Originally committed as revision 390 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Zdenek Kabelac
4606ac8dee
* some minor modification by Philip Gladston
...
* grab containes new code
Originally committed as revision 388 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Zdenek Kabelac
a266644f56
* more warning cleanups
...
* adding const & statics
Originally committed as revision 387 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Zdenek Kabelac
684f44d9a0
* fixing some warnings
...
Originally committed as revision 386 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Zdenek Kabelac
6cea494e32
* support for .au .gif .mov .mp4 by François Revol <revol@free.fr>
...
hmm any opinions about GIF support ?
Originally committed as revision 385 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Zdenek Kabelac
30b68f33aa
* encoding of AC3 with more than 2 channels
...
by Takashi Iwai <tiwai@suse.de>
Originally committed as revision 383 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
10bb7023a2
- Added force_pts to av_write_packet() to be able to force PTS, this helps
...
(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
23 years ago
Juanjo
5b0ad91b99
- Fix memory leak and others bugs for ppmpipe. Thanks to Rudolf Opalla.
...
Originally committed as revision 373 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
af469427b3
- Fix pts calculation on mpeg mux (A/V sync) - Thanks to Lennert Buytenhek
...
- Fix temporal-reference-glitches for MPEG1 - Thanks to Lennert Buytenhek
Originally committed as revision 343 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
001e3f555d
- Fixes on MPEG demuxer to handle VOBs without System Header.
...
Originally committed as revision 335 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
1cb0edb40b
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
...
- Hack in MPEG-2 demux to cope with buggy VOBs.
Originally committed as revision 333 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
5798368baf
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
...
- Changes on AVI and WAV muxers to support MP3.
Originally committed as revision 324 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Juanjo
86bec9a161
- Fix on AVI and WAV headers based on Nikolai Zhubr patch.
...
- Now the properties of the AVIs are correctly shown, but the MP2 audio
isn't playable, it seems the problems is that Fraunhoffer MP3 decoder
included on Windows cannot decode MP2 streams.
Originally committed as revision 316 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Zdenek Kabelac
608d0dee6f
* Also include time.h for nanosleep()
...
by: Philipp Matthias Hahn <pmhahn@titan.lahn.de>
Originally committed as revision 309 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago