summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* revert r16717, r16718, r16719, EAGAIN handling, this causes FFserver to hangBaptiste Coudurier2009-03-02
| | | | Originally committed as revision 17737 to svn://svn.ffmpeg.org/ffmpeg/branches/0.5
* Change a bunch of codec long_names to be more consistent and descriptive.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* deprecate old metadata APIAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix missed usage of old metadata API in mov demuxerAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in libavformat/utils.cAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in r3d demuxerAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new metadata API is now officially part of public APIAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify metadata conversion and fixes gcc-2.95 at the same timeAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the timebase of the raw demuxer to one that can represent the ts of ↵Michael Niedermayer2009-03-01
| | | | | | fields. Originally committed as revision 17675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable MPEG-1/2 style timestamp calculation for H264. It still randomizesMichael Niedermayer2009-03-01
| | | | | | the timestamps because delay is not known for the first few frames. Originally committed as revision 17674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some basic metadata conversion tables for matroska and asf.Aurelien Jacobs2009-03-01
| | | | | | Add missing const qualifiers for metadata_conv in AV{In|Out}putFormat. Originally committed as revision 17671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a metadata conversion APIAurelien Jacobs2009-02-28
| | | | Originally committed as revision 17670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document ff_rtp_codec_id()Luca Abeni2009-02-28
| | | | Originally committed as revision 17666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change TS seeking so it returns position/timestamp of a key frame.Ivan Schreter2009-02-28
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17665 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in a commentLuca Abeni2009-02-28
| | | | Originally committed as revision 17664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document ff_rtp_enc_name()Luca Abeni2009-02-28
| | | | Originally committed as revision 17663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationJustin Ruggles2009-02-28
| | | | Originally committed as revision 17662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document ff_rtp_get_codec_info()Luca Abeni2009-02-28
| | | | Originally committed as revision 17661 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate the raw FLAC demuxer from raw.c and put in a new file,Justin Ruggles2009-02-28
| | | | | | flacdec.c. Originally committed as revision 17660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename movenc.c MOVContext to MOVMuxContext, since MOVContext is already usedRonald S. Bultje2009-02-28
| | | | | | | in mov.c for the demuxer. See "[PATCH] rename movenc.c MOVContext to MOVMuxContext" thread on the mailinglist. Originally committed as revision 17659 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "Improve frame rate guessing for streams with two fields per frame."Måns Rullgård2009-02-28
| | | | | | | This reverts r17656, which broke many tests. Further investigation is necessary. Originally committed as revision 17658 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve frame rate guessing for streams with two fields per frame.Ivan Schreter2009-02-28
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17656 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in nut muxerAurelien Jacobs2009-02-27
| | | | | | | This is only a straight conversion of current code, so for now, it won't mux generic metadata. It will only mux Title, Author and Copyright. Originally committed as revision 17653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in nut demuxerAurelien Jacobs2009-02-27
| | | | Originally committed as revision 17652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not allow standard-frame-rate detection to increase the value ofReimar Döffinger2009-02-27
| | | | | | r_frame_rate by more than 1% over a previously set/detected value. Originally committed as revision 17641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify ipmovie.c pts calculation by using an appropriate time_base.Reimar Döffinger2009-02-27
| | | | Originally committed as revision 17639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a context to av_log() call.Benoit Fouet2009-02-27
| | | | Originally committed as revision 17638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hack: #undef printf so compilation works with DEBUG_IPMOVIE set to 1Reimar Döffinger2009-02-27
| | | | Originally committed as revision 17632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detect the case when the time base is exact but far finer than necessary toReimar Döffinger2009-02-27
| | | | | | represent the time stamps, as e.g. for ipmovie.c and set a better r_frame_rate. Originally committed as revision 17631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ticks_per_frame, this should hopefully fix the regressions causedMichael Niedermayer2009-02-26
| | | | | | by the time_base change. Originally committed as revision 17630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: vertical alignmentAurelien Jacobs2009-02-26
| | | | Originally committed as revision 17629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in rpl demuxerAurelien Jacobs2009-02-26
| | | | Originally committed as revision 17628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in wc3 demuxerAurelien Jacobs2009-02-26
| | | | Originally committed as revision 17627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark as "internal but installed" the avio.h file.Stefano Sabatini2009-02-26
| | | | | | | This should prevent its direct inclusion in an external project, which results broken if avformat.h is not included before. Originally committed as revision 17626 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a @file notice to avio.h.Stefano Sabatini2009-02-26
| | | | Originally committed as revision 17625 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move static tables from asf.h to non-static tables in asf.cAurelien Jacobs2009-02-26
| | | | | | this avoid getting those tables duplicated in asfenc.o and asfdec.o Originally committed as revision 17619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename asf-enc.c to asfenc.c and asf.c to asfdec.c for consistencyAurelien Jacobs2009-02-26
| | | | Originally committed as revision 17618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix a memleak in av_metadata_set()Aurelien Jacobs2009-02-26
| | | | Originally committed as revision 17617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement marker bit, which is used for several RTP payloads currentlyRonald S. Bultje2009-02-26
| | | | | | | under review. See "[FFmpeg-devel] RTP mark bit not passed to parse_packet" thread on mailinglist. Originally committed as revision 17616 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't (ab)use PKT_FLAG_* in RTP code, since the two have virtually nothingRonald S. Bultje2009-02-26
| | | | | | | in common except for this one value. Change was requested by Luca in the "[FFmpeg-devel] RTP mark bit not passed to parse_packet" thread. Originally committed as revision 17615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document rtsp.h, see "[PATCH] document rtsp.h" thread.Ronald S. Bultje2009-02-26
| | | | Originally committed as revision 17614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movenc: add muxing of language along with metadata tags when availableAurelien Jacobs2009-02-26
| | | | Originally committed as revision 17612 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return -1 for errors in ff_mov_iso639_to_lang() to allow for error checkingAurelien Jacobs2009-02-26
| | | | Originally committed as revision 17611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2009-02-26
| | | | Originally committed as revision 17610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new metadata API in mov muxerAurelien Jacobs2009-02-26
| | | | Originally committed as revision 17609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* don't trigger metadata compatibility code when user app already set metadataAurelien Jacobs2009-02-26
| | | | | | using new API Originally committed as revision 17608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dv probeBaptiste Coudurier2009-02-26
| | | | Originally committed as revision 17607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Share the function to write a raw FLAC header and use it in the MatroskaJustin Ruggles2009-02-26
| | | | | | muxer. Originally committed as revision 17606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: add a comment in flac_write_header().Justin Ruggles2009-02-26
| | | | Originally committed as revision 17605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for full header extradata to raw FLAC muxer.Justin Ruggles2009-02-26
| | | | Originally committed as revision 17604 to svn://svn.ffmpeg.org/ffmpeg/trunk