Víctor Paesa
5894e1bbf2
add loop_input to AVFormatContext, getting rid of old hack
...
patch by Víctor Paesa <wzrlpy at arsystel com>
Originally committed as revision 5729 to svn://svn.ffmpeg.org/ffmpeg/trunk
19 years ago
Måns Rullgård
ff70e60176
allow individual selection of muxers and demuxers
...
Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
19 years ago
Måns Rullgård
d2a067d1d9
give AVInput/OutputFormat structs consistent names
...
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
19 years ago
Baptiste Coudurier
94ede53e57
fix double free, priv_data is freed in av_open_input_stream
...
Originally committed as revision 5221 to svn://svn.ffmpeg.org/ffmpeg/trunk
19 years ago
Michael Niedermayer
c04c3282b4
simplify AVFormatParameters NULL checks
...
Originally committed as revision 5146 to svn://svn.ffmpeg.org/ffmpeg/trunk
19 years ago
Diego Biurrun
5509bffa88
Update licensing information: The FSF changed postal address.
...
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
19 years ago
Diego Biurrun
115329f160
COSMETICS: Remove all trailing whitespace.
...
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
19 years ago
Michael Niedermayer
01f4895c68
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
...
Originally committed as revision 4453 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
c0df9d75bd
switch to native time bases
...
Originally committed as revision 4168 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
568e18b15e
integer overflows, heap corruption
...
possible arbitrary code execution cannot be ruled out in some cases
precautionary checks
Originally committed as revision 3813 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Michael Niedermayer
f4824c0f30
prefer image2 over image
...
Originally committed as revision 3666 to svn://svn.ffmpeg.org/ffmpeg/trunk
20 years ago
Mike Melanson
0bd586c50d
sweeping change from -EIO -> AVERROR_IO
...
Originally committed as revision 3239 to svn://svn.ffmpeg.org/ffmpeg/trunk
21 years ago
Michael Niedermayer
e928649b0b
pass AVPacket into av_write_frame()
...
fixes the random dts/pts during encoding
asf preroll fix
no more initial zero frames for b frame encoding
mpeg-es dts during demuxing fixed
.ffm timestamp scale fixed, ffm is still broken though
Originally committed as revision 3168 to svn://svn.ffmpeg.org/ffmpeg/trunk
21 years ago
Michael Niedermayer
9ee91c2f53
move time_base (pts_num/pts_den) from AVFormatContext -> AVStream
...
Originally committed as revision 3148 to svn://svn.ffmpeg.org/ffmpeg/trunk
21 years ago
Michael Niedermayer
7f2ca68a84
segfault fix
...
Originally committed as revision 3135 to svn://svn.ffmpeg.org/ffmpeg/trunk
21 years ago
Michael Niedermayer
e5d64d6892
10l
...
Originally committed as revision 3005 to svn://svn.ffmpeg.org/ffmpeg/trunk
21 years ago
Michael Niedermayer
ffaa816ee3
recommit of
...
* fixing an unitilaized field AVImageInfo::interleaved.
As a matter of fact we have two problems here: first
AVImageInfo::interleaved is never initialzed in img.c.
The second problem is that even if we want interleaved
PNGs there's a bug in png.c that prevents us from generating
them.
The later problem is for somebody familiar with PNG to
handle.
And yes, always setting AVImageInfo::interleaved to 0 isn't
such a good idea, but it still beats garbage values.
orginal commit by roman shaposhnik
Originally committed as revision 2380 to svn://svn.ffmpeg.org/ffmpeg/trunk
21 years ago
Fabrice Bellard
490579042a
64 bit pts for writing - more const usage
...
Originally committed as revision 2255 to svn://svn.ffmpeg.org/ffmpeg/trunk
21 years ago
Fabrice Bellard
66a15ea2d2
removed os_support.h
...
Originally committed as revision 2230 to svn://svn.ffmpeg.org/ffmpeg/trunk
21 years ago
Fabrice Bellard
22b37f5d32
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
...
Originally committed as revision 2151 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Fabrice Bellard
ca1538f8d9
update duration and start_time
...
Originally committed as revision 2111 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Zdenek Kabelac
4a899dd689
* moved os_support.h into libavcodec
...
* added few more functions for os2
Originally committed as revision 1672 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
François Revol
d4ad24c17d
Cleaner support for usleep()
...
Originally committed as revision 1668 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Michael Niedermayer
14bea432f1
per context frame_rate_base, this should finally fix frame_rate related av sync issues
...
Originally committed as revision 1666 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Max Krasnyansky
bdfcbbed79
Frame rate emulation patch by (Max Krasnyansky <maxk at qualcomm dot com>)
...
Originally committed as revision 1641 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Zdenek Kabelac
0c1a9edad4
* UINTX -> uintx_t INTX -> intx_t
...
Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Zdenek Kabelac
5c91a6755b
* static,const,compiler warning cleanup
...
Originally committed as revision 1567 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Slavik Gnatenko
f3ec2d46ba
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
...
Originally committed as revision 1447 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Fabrice Bellard
94d883e84b
jpeg detection fix - fixed imagepipe output
...
Originally committed as revision 1443 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Fabrice Bellard
87a0a6816f
added still image support
...
Originally committed as revision 1439 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
François Revol
8ff323888c
redid usleep() fix for BeOS, more consistant with the MINGW32 one. removed a TAB :P
...
Originally committed as revision 1349 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Bill Eldridge
9b2e001fc5
mingw patch by (Bill Eldridge <bill at rfa dot org>)
...
Originally committed as revision 1347 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
François Revol
9ca7cfc5c4
Hey, not everyone has usleep() ! (temporary fix, we should check for this in configure)
...
Originally committed as revision 1343 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Philip Gladstone
38758ab0cd
* Add code to allow the img reader to read files at the nominal frame rate.
...
This (will) allow testing of ffserver in an automated way. The code is nasty
in that it uses a global.......
Originally committed as revision 1331 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Fabrice Bellard
abac617591
renamed libav to libavformat
...
Originally committed as revision 1276 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Philip Gladstone
e752dc90c2
Set the pkt->pts field correctly so that frame rate reduction has a chance
...
of working
Originally committed as revision 1243 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Zdenek Kabelac
c18a2692d2
* cleanup statics & const
...
Originally committed as revision 1186 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Måns Rullgård
bb76a117b1
c syntax update patch by (mru at users dot sourceforge dot net (Måns Rullgård))
...
Originally committed as revision 1008 to svn://svn.ffmpeg.org/ffmpeg/trunk
22 years ago
Henry Mason
ad4369076b
yuv4mpeg output support patch by (Henry Mason <talus25 at speakeasy dot net>)
...
Originally committed as revision 908 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
19720f15fd
license/copyright change
...
Originally committed as revision 593 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
1ea4f59365
use av memory handling functions
...
Originally committed as revision 528 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
Fabrice Bellard
9150f42ed5
fixed image number syntax problems
...
Originally committed as revision 128 to svn://svn.ffmpeg.org/ffmpeg/trunk
23 years ago
Fabrice Bellard
13a7d16ede
added static
...
Originally committed as revision 93 to svn://svn.ffmpeg.org/ffmpeg/trunk
24 years ago
Fabrice Bellard
8be1c6563c
win32 fixes
...
Originally committed as revision 78 to svn://svn.ffmpeg.org/ffmpeg/trunk
24 years ago
Fabrice Bellard
6775c758c4
added PPM read/write support - added pgmyuvpipe format - added PPM pipe read/write support
...
Originally committed as revision 65 to svn://svn.ffmpeg.org/ffmpeg/trunk
24 years ago
Fabrice Bellard
de6d9b6404
Initial revision
...
Originally committed as revision 5 to svn://svn.ffmpeg.org/ffmpeg/trunk
24 years ago