David Conrad
9b6b0c7926
put_ebml_float()
...
Originally committed as revision 10299 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
David Conrad
1e18c4d097
Const correctness
...
Originally committed as revision 10298 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
David Conrad
81efc03f58
Get rid of put_ebml_utf8(); the error checking that would have distinguished it from put_ebml_string() belongs elsewhere in lavf.
...
Originally committed as revision 10297 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
David Conrad
dbf653f766
Cosmetics: align nicely for better readibility
...
Originally committed as revision 10296 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
David Conrad
cf4f763be1
Simplify
...
Originally committed as revision 10295 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
David Conrad
67143c0f69
Beginning of mkv muxer, only EBML head is written correctly
...
Originally committed as revision 10294 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Ramiro Polla
f7b8bffe47
Treat dc1394 as a library
...
Originally committed as revision 10292 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Mike Melanson
80a16ccf82
simplify PTS handling
...
Originally committed as revision 10291 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
5f2cbb53b4
Fill the buffer with 0 before writing an SDP in it
...
Originally committed as revision 10287 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Neil Brown
9fcbcca60a
If a stream has no start time, but the first packet has a 'pts', use that
...
pts to set the start_time.
patch by Neil Brown: [neilb suse de]
original thread: [FFmpeg-devel] [patch 3/3] Make timing calculations less
dependant on start_time being defined.
date: 08/16/2007 08:27 AM
Originally committed as revision 10285 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
3f19004e46
Set the "B" flag in the payload header
...
Originally committed as revision 10284 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
2d7d6d4203
Set the "TR" field in the payload header
...
Originally committed as revision 10283 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
73130dfee2
Correctly set the "P" field in the payload header
...
Originally committed as revision 10282 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Wolfram Gloger
9be5181587
fix probe buffer issue. patch by Wolfram Gloger {wmglo at dent.med.uni-muenchen.de}.
...
[FFmpeg-devel] [PATCH] ac3_probe input buffer overrun
Aug 28, 2007
Originally committed as revision 10281 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
da0b94f539
workaround ms (lack of) intelligence in their design of dvr-ms
...
yes kids you do not make 90% of your file contain empty dummy packets
closes issue76
Originally committed as revision 10280 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
David Conrad
84fa6e23fb
SimpleBlock keyframe flag is the most significant bit
...
Originally committed as revision 10274 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Diego Biurrun
1e97ce4a31
cosmetics: Sort some lines, whitespace changes.
...
Originally committed as revision 10268 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
46b274d4e5
Correct packetization for MPEG video frames, and correct setting of the
...
"B" and "E" bits in the payload header
Originally committed as revision 10260 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
7c8133aa44
Remove commented code (payload header extension)
...
Originally committed as revision 10259 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Barbato
f6df400c0c
Backport fix for mpegvideo rtp, fixes Issue119, original fix from Dario Gallucci <dariodotgallucciatpolito.it> in feng
...
Originally committed as revision 10257 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Roberto Togni
b6f508bbcc
Change 4xm demuxer and video decoder to pass the video format version in
...
extradata instead of codec_tag.
Originally committed as revision 10253 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Diego Biurrun
30a987ece9
Remove unused variable.
...
Originally committed as revision 10251 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
50755217f8
Use correct timescale in RTSP seeking
...
Originally committed as revision 10222 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
7fa9d0dd8f
Remove copyright from a function prototype
...
Originally committed as revision 10214 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Luca Abeni
98561024ac
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
...
Originally committed as revision 10201 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
David Conrad
b75c8d16e7
Add V_SNOW
...
Originally committed as revision 10200 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Kostya Shishkov
2b71ddd96e
Take ring frame into account when demuxing.
...
This fixes issue 97.
Originally committed as revision 10192 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Diego Biurrun
57b499c7da
Identifiers starting with underscores are reserved.
...
Originally committed as revision 10179 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Baptiste Coudurier
1f794d69c0
support swink created files which have soi/eoi broken tags reversed
...
Originally committed as revision 10152 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Neil Brown
9f32041d89
Do not butcher start_time in av_estimate_timings_from_bit_rate().
...
from a patch by neilb suse de
Originally committed as revision 10140 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Neil Brown
d6a0906ad1
When looking for the last packet in each
...
stream, so as to calculate the duration, don't stop
as soon as all streams have seen at least one packet.
Otherwise the duration will be shorter than it
should be. We must keep reading to the end-of-file.
patch by neilb suse de
Originally committed as revision 10139 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Neil Brown
bf494092b0
There is no guarantee that every stream will
...
have a start_time found (though it is likely),
so check that the start_time is defined before
calculating a duration.
(patch by neilb suse de)
Originally committed as revision 10138 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
df886e7e02
fix cur_dts at the end of av_estimate_timings_from_pts()
...
Originally committed as revision 10137 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Neil Brown
e26381b6da
more verbose doxy for duration (from patch by neilb suse de)
...
Originally committed as revision 10136 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Neil Brown
4854c253a4
mention that start_time maybe AV_NOPTS_VALUE (from patch by neilb suse de)
...
Originally committed as revision 10135 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Vincent Fourmond
9e33b10fd7
Allow pipe: URL to take fd number as input
...
Patch by Vincent Fourmond [vincent dot fourmond at 9online dot fr]
Originally committed as revision 10134 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Vincent Fourmond
de79849eac
Indent for next commit
...
Patch by Vincent Fourmond [vincent dot fourmond at 9online dot fr]
Originally committed as revision 10133 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Diego Biurrun
93951943ec
spelling/wording cosmetics
...
Originally committed as revision 10131 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Björn Axelsson
a9054d91b7
store asf streaming bitrates consistently
...
patch by Björn Axelsson: [bjorn axelsson intinor se]
Originally committed as revision 10130 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Ramiro Polla
f18cae4d6e
Set UDP receive buffer to 64k
...
Originally committed as revision 10129 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Aurelien Jacobs
fce388b4b9
cosmetic: indentation
...
Originally committed as revision 10128 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Aurelien Jacobs
2f3b419cf1
Don't pre-scale default_duration to avoid precision loss in fps calculation.
...
closes Issue95
Originally committed as revision 10127 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Aurelien Jacobs
aec783d42d
no need for special case default_duration for AAC
...
Originally committed as revision 10126 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Aurelien Jacobs
a92d20629c
calculate default_duration according to framerate only when not already set
...
Originally committed as revision 10125 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 years ago
Michael Niedermayer
6d96a9b94d
elaborate a little on AVStream.start_time, it seems the comment is not clear
...
enough, not that the clearer NEVER comment in AVFormatContext.start_time stoped
people from posting stupid patches
Originally committed as revision 10122 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Aurelien Jacobs
77cb22fa7b
Try size 640x480 for FLC files which don't specify their size.
...
This is a ugly hack to fix playback of specular.flc.
closes issue71
Originally committed as revision 10117 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
bc3a73bc87
remove broken movi_end skip-hack-check
...
this should fix seeking over the first riff chunk in odml
Originally committed as revision 10114 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Michael Niedermayer
ea4b2b5e2c
do not misuse movi_end for checking chunk sizes
...
Originally committed as revision 10113 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Ramiro Polla
9c0edaaf13
Use AVERROR_PATCHWELCOME instead of AVERROR(ENOTSUP)
...
Originally committed as revision 10111 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago
Diego Biurrun
9d4edf966e
Make native and libnut NUT muxers mutually exclusive.
...
Originally committed as revision 10102 to svn://svn.ffmpeg.org/ffmpeg/trunk
18 years ago