summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* url_fskip: Return an error code if the url_fseek failedMartin Storsjö2010-07-16
| | | | Originally committed as revision 24277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In ogg muxer, free dyn allocated buffer, fix memleakBaptiste Coudurier2010-07-16
| | | | Originally committed as revision 24276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* http: Log a warning when receiving an error codeMartin Storsjö2010-07-16
| | | | Originally committed as revision 24266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move SPACE_CHARS back to libavformat/internal.hMartin Storsjö2010-07-16
| | | | | | It will be used by other parts of lavf now. This reverts svn rev 23846. Originally committed as revision 24265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant text and whitespaces from iff demuxer av_log() statementsPeter Ross2010-07-15
| | | | Originally committed as revision 24246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In ogg muxer, use dyn buffer to compute crc of the page, fix muxing with pipeBaptiste Coudurier2010-07-14
| | | | | | when page buffer is bigger than default buffer size. Max page is 65k. Originally committed as revision 24242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: write DisplayUnit element to better match the specAurelien Jacobs2010-07-14
| | | | | | | This makes it clear that we are specifying the aspect ratio, and not the intended display size in pixels. Originally committed as revision 24239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass the composition and ancillary ID for DVB subtitles via extradata insteadReimar Döffinger2010-07-14
| | | | | | | | | | of sub_id, this allows detecting when that information is not available and just decode everything. In addition extradata is required for many codecs and thus in contrast to sub_id generally already passed on by any programs using libav*. Also ask for a sample if we encounter a stream with multiple/changing IDs. Originally committed as revision 24238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a depacketizer for QDM2Josh Allmann2010-07-14
| | | | | | | Patch by Josh Allmann, joshua dot allmann at gmail, original code by Ronald S Bultje. Originally committed as revision 24236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec_svq3: Return the timestamp in *timestamp instead of pkt->ptsMartin Storsjö2010-07-14
| | | | | | | | | The timestamp of the first RTP packet forming the output AVPacket is written back in *timestamp, which is used in later calculations in generic rtpdec code (together with RTCP sync timestamps) to form the final pkt->pts value. Originally committed as revision 24235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Allow depacketizers to specify that pkt->pts should be left as ↵Martin Storsjö2010-07-14
| | | | | | AV_NOPTS_VALUE Originally committed as revision 24234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the ADTS header decoder off of the ADTS parser.Alex Converse2010-07-12
| | | | | | | The AAC decoder and ADTS-to-ASC BSF both require the header decoder but not full parsing capabilities. Originally committed as revision 24217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Report when a method gets an error status codeLuca Barbato2010-07-12
| | | | | | | That makes easier understand what went wrong. In debug mode the whole reply gets printed. Originally committed as revision 24212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify the avoidance of usage of these AVStream fields.Víctor Paesa2010-07-11
| | | | Originally committed as revision 24198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle av_base64_decode return valueLuca Barbato2010-07-11
| | | | | | garbled sdp would cause crash otherwise. Originally committed as revision 24191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix ID3v1 tags in mp3 filesJames Darnley2010-07-11
| | | | | | Patch by James Darnley, james dot darnley at gmail Originally committed as revision 24189 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
* Add av_ prefix to bswap macrosMåns Rullgård2010-07-10
| | | | Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bswap: change ME to NE in macro namesMåns Rullgård2010-07-10
| | | | | | | Other parts of FFmpeg use NE (native endian) rather than ME (machine). This makes it consistent. Originally committed as revision 24169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_get_v_length and ff_put_v from nutenc.c to internal.h/aviobuf.cMichael Chinen2010-07-09
| | | | | | patch by Micheal Chinen < mchinen gmail > Originally committed as revision 24140 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename get_length to ff_get_v_length and put_v to ff_put_vMichael Chinen2010-07-09
| | | | | | patch by Michael Chinen < mchinen gmail > Originally committed as revision 24139 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mpegts muxer, print VBR instead of dummy 1 when displaying muxrateBaptiste Coudurier2010-07-08
| | | | Originally committed as revision 24125 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, write pixel aspect ratio tag in mov files.Baptiste Coudurier2010-07-08
| | | | | | Based on a patch by Daniel Kristjansson, danielk at cuymedia dot net Originally committed as revision 24124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: whitespaceAlex Converse2010-07-07
| | | | Originally committed as revision 24093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve long_name for ass (de)muxerAurelien Jacobs2010-07-07
| | | | Originally committed as revision 24084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ignore extradata & w/h in asf/dvr.Michael Niedermayer2010-07-07
| | | | | | | | The w/h values are wrong and extradata contains a fake seq header that causes decoding to fail later, a valid seq header is in the stream itself. Partially fixes issue658 Originally committed as revision 24082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Associate .tga with format image2.Carl Eugen Hoyos2010-07-07
| | | | Originally committed as revision 24079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add #ifdefs around code specific to file and pipe protocolsMåns Rullgård2010-07-06
| | | | Originally committed as revision 24076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* os_support: include some headers only when neededMåns Rullgård2010-07-06
| | | | Originally committed as revision 24072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpenc: remove unnecessary #include unistd.hMåns Rullgård2010-07-06
| | | | Originally committed as revision 24071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* file_protocol: remove redundant #include sys/time.hMåns Rullgård2010-07-06
| | | | Originally committed as revision 24070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec_asf: Propagate errors from the chained av_open_input_streamMartin Storsjö2010-07-05
| | | | | | This fixes the crash in issue 2070. Originally committed as revision 24059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence a warning when compiling aviobuf.cEli Friedman2010-07-05
| | | | | | Patch by Eli Friedman, eli d friedman a gmail Originally committed as revision 24055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superfluous id3v2.o dependency for dts, eac3, gsm, mlp, shorten, andMichael Karcher2010-07-05
| | | | | | | truehd demuxers Patch by Michael Karcher <ffmpeg at mkarcher dot dialup dot fu-berlin dot de> Originally committed as revision 24053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add id3v1.o dependency for oma demuxerMichael Karcher2010-07-05
| | | | | | Patch by Michael Karcher <ffmpeg at mkarcher dot dialup dot fu-berlin dot de> Originally committed as revision 24052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov: Read Flash's chpl variantDavid Conrad2010-07-04
| | | | | | This is based off of F4V specs rather than any actual files Originally committed as revision 24035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix warning "passing argument from incompatible pointer type".Eli Friedman2010-07-03
| | | | | | Patch by Eli Friedman, eli d friedman a gmail Originally committed as revision 24020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVStream->codec_info_nb_frames increment after try_decode_frameBaptiste Coudurier2010-07-03
| | | | Originally committed as revision 24017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In av_find_stream_info, decode at least 4 h.264 frames to be able to guess ↵Baptiste Coudurier2010-07-03
| | | | | | delay. Originally committed as revision 24014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable dshow specific bug emulation for amv files as they arentMichael Niedermayer2010-07-02
| | | | | | demuxed by ms dshows buggy demuxer normally. Originally committed as revision 24012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename block_align variable in the avi demuxer to clearly seperate its purposeMichael Niedermayer2010-07-02
| | | | | | from the true block_align. Originally committed as revision 24011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump libavformat minor (as a result of r24003).Jai Menon2010-07-02
| | | | Originally committed as revision 24007 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: merge only SSA packets togetherDavid Conrad2010-07-02
| | | | | | | fixes issue 2052 patch by David Conrad Originally committed as revision 24004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add AV_DISPOSITION_FORCED flag and use it in matroska demuxerAurelien Jacobs2010-07-02
| | | | Originally committed as revision 24003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Duplicate rounding that MS does in one of their implementations of an avi ↵Michael Niedermayer2010-07-02
| | | | | | | | | demuxer. Fixes issue740 Based on patch by Cory Fields theuni-nospam- >xbmc @org Originally committed as revision 23999 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
* Remove angular brackets from Doxygen comments; Doxygen confuses them for HTML.Diego Biurrun2010-07-02
| | | | Originally committed as revision 23991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace incorrect @NOTE Doxygen command by @note; capitalization matters.Diego Biurrun2010-07-02
| | | | Originally committed as revision 23980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix Doxygen function parameter documentation syntax.Diego Biurrun2010-07-02
| | | | Originally committed as revision 23978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove non-existing stray arguments from Doxygen function documentation.Diego Biurrun2010-07-02
| | | | Originally committed as revision 23976 to svn://svn.ffmpeg.org/ffmpeg/trunk