summaryrefslogtreecommitdiff
path: root/libavformat/gxf.c
Commit message (Collapse)AuthorAge
* lavf: use designated initialisers for all (de)muxers.Anton Khirnov2011-07-17
| | | | It's more readable and less prone to breakage.
* gxf: Fix 25 fps DV material in GXF being misdetected as 50 fpsTomas Härdin2011-07-09
| | | | | | | | Set DV packet durations using fields_per_frame. This requires turning gxf_stream_info into the demuxer's context for access to the value in gxf_packet(). Since MPEG-2 seems to work fine this done only for DV. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun2011-06-24
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov2011-03-16
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: deprecate url_feofAnton Khirnov2011-03-07
| | | | | | AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov2011-03-04
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: replace all uses of url_fskip with avio_seekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefix for url_fseekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefixes for get_* functionsAnton Khirnov2011-02-21
| | | | | | | | | | | | | | In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-20
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-26
| | | | | This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
* add ff_find_stream_indexPeter Ross2010-12-26
| | | | Originally committed as revision 26092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check url_fseek results in gxf demuxer.Reimar Döffinger2010-07-10
| | | | Originally committed as revision 24179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix doxy of flags parameter in fps_umf2avr().Diego Biurrun2010-07-02
| | | | Originally committed as revision 23992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix misspelled parameter names in Doxygen documentation.Diego Biurrun2010-07-02
| | | | | | This fixes one Doxygen warning each. Originally committed as revision 23970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support AVFMT_FLAG_IGNIDX in gxf demuxer.Reimar Döffinger2010-06-06
| | | | Originally committed as revision 23502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set GXF fallback time-base to match the one specified for audio-only.Reimar Döffinger2010-03-06
| | | | Originally committed as revision 22257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* GXF time base is always based on "fields" per second even forReimar Döffinger2010-03-06
| | | | | | | non-interlaced video. Should fix issue 1766. Originally committed as revision 22256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid _t in gxf enum type namesReimar Döffinger2008-12-13
| | | | Originally committed as revision 16112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use "struct gxf_stream_info" instead of "st_info_t",Reimar Döffinger2008-12-11
| | | | | | | avoids a typedef that is not really worth it and the reserved POSIX _t namespace. Originally committed as revision 16054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove GXF: in log messages since it is present in contextBaptiste Coudurier2008-09-24
| | | | Originally committed as revision 15409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip invalid audio samples in gxf packetsBaptiste Coudurier2008-09-24
| | | | Originally committed as revision 15408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-08
| | | | | | | | | | | bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for av_new_stream failure, fixes CID76 RUN2Reimar Döffinger2008-05-29
| | | | Originally committed as revision 13533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typoDiego Biurrun2007-09-19
| | | | Originally committed as revision 10534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replaces hardcoded values by the equivalent enum definitionsAurelien Jacobs2007-07-26
| | | | Originally committed as revision 9801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add an enum for need_parsingAurelien Jacobs2007-04-15
| | | | Originally committed as revision 8742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate 32 extra bytes at the end of the probe buffer and remove most probe ↵Michael Niedermayer2007-04-08
| | | | | | buf_size checks Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_set_pts_info and set some arbitrary timebase fallbackReimar Döffinger2007-02-08
| | | | Originally committed as revision 7883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set pts_wrap_bits to 32 since timestamps in packets are 32 bitReimar Döffinger2007-02-07
| | | | Originally committed as revision 7880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, forgot to skip payload description in UMF packet parsingReimar Döffinger2007-02-07
| | | | Originally committed as revision 7878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set CODEC_TYPE_DATA for timecode tracks.Reimar Döffinger2006-11-22
| | | | Originally committed as revision 7159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set st->need_parsing = 2 for MPEG-content.Reimar Döffinger2006-11-22
| | | | Originally committed as revision 7158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ABS macro to FFABS.Diego Biurrun2006-10-11
| | | | Originally committed as revision 6666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* both timestamps are dts, (checked trailer.gxf, spec is unclear)Michael Niedermayer2006-08-08
| | | | Originally committed as revision 5958 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded audio fourcc as wellBaptiste Coudurier2006-08-02
| | | | Originally committed as revision 5889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Minor resync optimizationReimar Döffinger2006-08-02
| | | | Originally committed as revision 5888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not set unneeded fourccBaptiste Coudurier2006-08-02
| | | | Originally committed as revision 5886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for seeking, both with and without index and correct timestampsReimar Döffinger2006-08-01
| | | | Originally committed as revision 5880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in commentReimar Döffinger2006-07-30
| | | | Originally committed as revision 5865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move common stuff from avienc.c and wav.c to new file riff.cMåns Rullgård2006-07-12
| | | | Originally committed as revision 5720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-10
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk