summaryrefslogtreecommitdiff
path: root/libavformat/utils.c
Commit message (Collapse)AuthorAge
* Make the ntp_time function available to other parts of libavformat, as ↵Martin Storsjö2010-03-10
| | | | | | ff_ntp_time Originally committed as revision 22438 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add special case to avoid binary search when appending index entries.Michael Niedermayer2010-03-09
| | | | Originally committed as revision 22400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove definition of match_ext(), which is declared under #ifdefStefano Sabatini2010-03-08
| | | | | | HAVE_AV_CONFIG_H and so not publicly declared, and currently unused. Originally committed as revision 22353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-03-08
| | | | Originally committed as revision 22322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename url_split to ff_url_splitMartin Storsjö2010-03-08
| | | | | | Since this function isn't in the public API, it should have an ff_ prefix. Originally committed as revision 22321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "Move the probe loop from av_open_input_file() into its own method"Måns Rullgård2010-03-08
| | | | | | | This reverts r22296. This change made some files to fail to open. The patch submitter has promised to investigate next week. Originally committed as revision 22315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_find_stream_info(): Add a workaround for backwards compatible HE-AAC ↵Alex Converse2010-03-08
| | | | | | | | | signaling. The sample rate, frame size, and channel count from the container are not reliable when backwards compatible signaling is used. Originally committed as revision 22301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix pts->dts conversion init for non-zero initial value for pts.Daniel Kristjansson2010-03-07
| | | | | | Patch by Daniel Kristjansson, danielk cuymedia net Originally committed as revision 22297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the probe loop from av_open_input_file() into its own methodMicah F. Galizia2010-03-07
| | | | | | | | | | | | | | | | | | av_probe_input_buffer() so that it can be reused. Here are a few differences to the original way things were probed: - maximum probe buffer size can be specified as a parameter. - offset within the stream to probe from can be specified as a parameter. - instead of seeking back to the start each time a probe fails, stream data is appended to the reallocated buffer. This lowers the amount of data read from the stream (there is no repetition) and results in fewer closed and reopened streams (when seeking fails). Patch by Micah F. Galizia printf("%s%s@%s.%s", "micah", "galizia", "gmail", "com"). Originally committed as revision 22296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some missing #includesMåns Rullgård2010-03-06
| | | | Originally committed as revision 22258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a function ff_url_join for assembling URLsMartin Storsjö2010-03-05
| | | | Originally committed as revision 22225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak in NUT muxerVitor Sessak2010-03-05
| | | | Originally committed as revision 22222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print chapter info in dump_format().Anton Khirnov2010-02-28
| | | | | | Patch by Anton Khirnov, wyskas gmail Originally committed as revision 22113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Count all frames with codec_info_nb_frames not just ones with non zeroMichael Niedermayer2010-02-23
| | | | | | duration. I hope this breaks nothing. Its needed for my fix of issue1156 Originally committed as revision 22001 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put codec_info_nb_frames back in AVStream and print its value.Michael Niedermayer2010-02-23
| | | | | | | This way streams with no or very few frames can be avoided during auto selection Originally committed as revision 21998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure mp1/mp2 get their frame_size set.Michael Niedermayer2010-02-22
| | | | | | Fixes issue1696 Originally committed as revision 21972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure a set r_frame_rate is not overriden by a guess.Michael Niedermayer2010-02-22
| | | | | | Also make sure we dont waste time in this case with collecting timestamps. Originally committed as revision 21957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set lavf identification string globally in av_write_header(), ratherAnton Khirnov2010-02-16
| | | | | | | | | than inside the muxers. Remove special handling of "encoder" tags from AVI and MP3 muxers. Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 21850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add flag so muxers not needing width/height can signal this.Michael Niedermayer2010-02-12
| | | | | | Add this flag to img2 (fixes -vcodec copy to image2 in some cases) Originally committed as revision 21773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Directly use av_rescale_rnd() instead of av_convert_ts() as this cuts theMichael Niedermayer2010-02-07
| | | | | | number of calls to it down by 2. Originally committed as revision 21676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_compare_ts() for interleaving per dts.Michael Niedermayer2010-02-07
| | | | Originally committed as revision 21672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dont try generic seek if seek request before first index entry and backward.Michael Niedermayer2010-02-03
| | | | | | Fixes issue1275 Originally committed as revision 21633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to open decoders in av_find_stream_info() even if no packets for theMichael Niedermayer2010-02-03
| | | | | | | stream are found. Fixes issue1385 Originally committed as revision 21630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase search range if no end timestamp could be found for the durationMichael Niedermayer2010-01-31
| | | | | | calculation. Originally committed as revision 21577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flag to ignore dts on frames that contain pts.Michael Niedermayer2010-01-30
| | | | | | | This works around common issues with mpeg-ps files with broken timestamps. Also allows playing the broken sample from issue1024. Originally committed as revision 21562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix duration calculation in the presence of a single wraping of the timeline.Michael Niedermayer2010-01-27
| | | | | | Fixes issue1714. Originally committed as revision 21485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set average frame rate in mov demuxerBaptiste Coudurier2010-01-18
| | | | Originally committed as revision 21310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check there is a stream before writing header.Tomas Härdin2010-01-13
| | | | | | Patch by Tomas Härdin: $(name) punto hardin chez codemill dot se Originally committed as revision 21186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() andStefano Sabatini2010-01-03
| | | | | | XXX_license() functions, consistent with the rest of FFmpeg. Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_match_ext() in place of the deprecated match_ext() function.Stefano Sabatini2010-01-01
| | | | Originally committed as revision 21000 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate match_ext() in favor of av_match_ext(), and mark it forStefano Sabatini2010-01-01
| | | | | | deletion at the next major bump. Originally committed as revision 20998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_guess_format() in place of the deprecated guess_format().Stefano Sabatini2010-01-01
| | | | Originally committed as revision 20994 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate guess_format() in favor of av_guess_format().Stefano Sabatini2010-01-01
| | | | Originally committed as revision 20991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate and mark for deletion the function guess_stream_format(),Stefano Sabatini2009-12-31
| | | | | | | | | | and clone its code to ffserver_guess_format() in ffserver.c. guess_stream_format() is hackish since it relies on some undocumented properties of the name of the muxers (wich is currently only relevant for the ASF muxer), and has no use outside ffserver.c. Originally committed as revision 20987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure the Metadata: header is not printed if the only metadata will notMichael Niedermayer2009-12-13
| | | | | | be displayed. (idea from ffmbc) Originally committed as revision 20850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move dump_metadata() to where it is in ffmbc, looks better.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2009-12-13
| | | | Originally committed as revision 20848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip dumping language twice.Michael Niedermayer2009-12-13
| | | | | | This looks too ugly. Idea also from ffmbc. Originally committed as revision 20847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dump metadata for AVStreams & AVPrograms too.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize dump_metadata() out.Michael Niedermayer2009-12-13
| | | | | | | Idea from ffmbc, code not, mine is a fraction of the size due to simpler metadata API. Originally committed as revision 20845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to simplify av_estimate_timings_from_pts() like in ffmbc.Michael Niedermayer2009-12-13
| | | | | | Note if this breaks for some file, report it please! Originally committed as revision 20844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Debug av_log() about stream probing from ffmbc.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avg_frame_rate.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove commented out code.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reset pts_buffers in av_read_frame_flush().John Stebbins2009-12-12
| | | | | | Patch by John Stebbins, jstebbins jetheaddev com Originally committed as revision 20806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calls to url_fseek should have their return value checked inSean Soria2009-12-06
| | | | | | | | | | av_seek_frame_binary, just as they do in av_seek_frame_generic. Otherwise, function may return success even though url_fseek reported failure. Patch by Sean Soria, first.last at gmail Originally committed as revision 20744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change ret type to int64_t because url_fseek returns int64_t.Sean Soria2009-12-01
| | | | | | | This fixes seeking in files > 2gb. Patch by Sean Soria, sean dot soria at gmail dot com. Originally committed as revision 20693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AVFormatContext in av_log, better than AVCodecContext when multiple ↵Baptiste Coudurier2009-12-01
| | | | | | streams are present Originally committed as revision 20689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a warning if the duration is estimated from the bitrate, as this isMichael Niedermayer2009-11-30
| | | | | | likely not accurate. Originally committed as revision 20675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add functions to return library license and library configuration.Diego Biurrun2009-11-18
| | | | Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk