summaryrefslogtreecommitdiff
path: root/libavformat/internal.h
Commit message (Collapse)AuthorAge
...
* 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
* Move av_read_frame_flush() prototype to lavf/internal.hMåns Rullgård2010-03-06
| | | | Originally committed as revision 22268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove now useless av_set_program_name() functionAurelien Jacobs2009-02-10
| | | | Originally committed as revision 17113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no more needed comment, declaration is in internal headerBaptiste Coudurier2009-02-09
| | | | Originally committed as revision 17086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declaration of ff_interleave_add_packet to internal.h.Baptiste Coudurier2009-02-08
| | | | | | It is an internal function and should not be in an installed header. Originally committed as revision 17070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declaration of av_set_program_name and av_program_add_stream_indexDiego Biurrun2008-12-03
| | | | | | to a more sensible place. Originally committed as revision 15991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 'make checkheaders', based on a patch by Diego Pettenò, flameeyes gmail ↵Diego Biurrun2008-10-04
| | | | | | com. Originally committed as revision 15552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() andRonald S. Bultje2008-08-27
move it from sdp.c into utils.c. Also add new header internal.h specifically for lavf-specific internal API. See discussion in "Realmedia patch" thread on mailinglist. Originally committed as revision 15002 to svn://svn.ffmpeg.org/ffmpeg/trunk