summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* Add zygo fourcc.Michael Niedermayer2009-04-19
| | | | Originally committed as revision 18628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark gsize variable as av_unused, fixes the warning:Diego Biurrun2009-04-19
| | | | | | libavformat/asfdec.c:995: warning: unused variable ‘gsize’ Originally committed as revision 18620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert previous removal of gsize variable. It breaks seeking.Diego Biurrun2009-04-19
| | | | Originally committed as revision 18618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable gsize, fixes the warning:Diego Biurrun2009-04-18
| | | | | | libavformat/asfdec.c:995: warning: unused variable 'gsize' Originally committed as revision 18607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics : reindent after last commit and remove redundant comment.Jai Menon2009-04-18
| | | | Originally committed as revision 18605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add speex tag to nsv_codec_audio_tags.Jai Menon2009-04-18
| | | | Originally committed as revision 18604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change nsvf_index_data to nsvs_file_offset for increased clarity.Jai Menon2009-04-18
| | | | Originally committed as revision 18603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce codec id for MPEG-4 ALS and associate it with correspondingJai Menon2009-04-17
| | | | | | AudioObjectType. Also bump libavcodec minor version. Originally committed as revision 18591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless init from aiff_read_header() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove 2 ++ from check_pes() that are useless, found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from flv_read_metabody() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove nonsensical assignment from asf_read_seek() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declarations in sync() closer to where they are used.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from asf_read_header() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change another AVERROR(EIO) inot AVERROR_EOF, because it really signals EOF,Ronald S. Bultje2009-04-17
| | | | | | | | | not a stream error. This also fixes an infinite loop on EOS during ASF file playback, and Michael claims he "likes the patch" (ref: [PATCH] RTSP-MS 15/15: move packet_time_start zero value assignment in asf.c" mailinglist tread). Originally committed as revision 18552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Moving variable declarations in asf_build_simple_index() to clarify&prettify ↵Michael Niedermayer2009-04-17
| | | | | | code. Originally committed as revision 18543 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused audio_pts field from ea demuxer structReimar Döffinger2009-04-16
| | | | Originally committed as revision 18538 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused code from Westwood VQA/AUD demuxer.Reimar Döffinger2009-04-16
| | | | Originally committed as revision 18537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace AVERROR(EIO) by AVERROR_EOF on end-of-file. See mailinglistRonald S. Bultje2009-04-16
| | | | | | | thread "[PATCH] RTSP-MS 15/15: move packet_time_start zero value assignment in asf.c". Originally committed as revision 18531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify which exact variant of ISO 639 is used. (The ISO spec explicitlyMichael Niedermayer2009-04-15
| | | | | | requires this to be clear) Originally committed as revision 18530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Send dummy requests over the TCP connection (WMS wants GET_PARAMETER,Ronald S. Bultje2009-04-15
| | | | | | | | Real wants OPTIONS) while the connection is idle, otherwise it will be aborted after a short period (usually a minute). See the thread "[PATCH] rtsp.c: keep-alive" on the mailinglist. Originally committed as revision 18525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that there's pages to read for duration calculation in the ogg demuxerDavid Conrad2009-04-15
| | | | Originally committed as revision 18523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a Vorbis payload parser. Implemented by Colin McQuillan as a GSoCRonald S. Bultje2009-04-14
| | | | | | | qualification task, see "RTP/Vorbis payload implementation (GSoC qual task)" thread on mailinglist. Originally committed as revision 18509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase the SDP buffer size (again!) and also increase the temporaryRonald S. Bultje2009-04-14
| | | | | | | | | | | buffer size of the fmtp parameter buffer. For Vorbis RT(S)P, these contain full Vorbis headers, which can be up to 12kb each, formatted in base64, so 16kb total. Patch required for proper Vorbis/RTP playback, submitted as GSoC qualification task in the thread "RTP/Vorbis payload implementation (GSoC qual task)" by Colin McQuillan m.niloc googlemail com. Originally committed as revision 18508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename pbBufPtr() to put_bits_ptr().Stefano Sabatini2009-04-13
| | | | | | | The new name is more readable and consistent with the FFmpeg naming style. Originally committed as revision 18497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seek inside buffer when offset is exactly at the end, fix seeking with ↵Baptiste Coudurier2009-04-13
| | | | | | memory ByteIOContext Originally committed as revision 18487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set frame defaults in try_decode_frame.Baptiste Coudurier2009-04-13
| | | | | | | | | | | | | Fix: ==22211== Conditional jump or move depends on uninitialised value(s) ==22211== at 0x811E692: ff_print_debug_info (mpegvideo.c:1137) ==22211== by 0x82E6A7B: decode_frame (h264.c:7897) ==22211== by 0x80F2823: avcodec_decode_video2 (utils.c:564) [...] ==22211== Uninitialised value was created by a stack allocation ==22211== at 0x8064AA3: try_decode_frame (utils.c:1845) Originally committed as revision 18483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2009-04-13
| | | | Originally committed as revision 18480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless wrapperBaptiste Coudurier2009-04-12
| | | | Originally committed as revision 18465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ea demuxer messages that are irrelevant to ordinary users fromReimar Döffinger2009-04-12
| | | | | | AV_LOG_INFO to AV_LOG_DEBUG. Originally committed as revision 18464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless wrapperBaptiste Coudurier2009-04-12
| | | | Originally committed as revision 18463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly improve/correct description of wc3_pal_lookupReimar Döffinger2009-04-12
| | | | Originally committed as revision 18462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-12
| | | | | | put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable metadata reading. Yes, I would like to know what this code is good forMichael Niedermayer2009-04-12
| | | | | | | | and this is the easiest way to. It would be a lot of messy code we can drop if it is useless. As a sideeffect this fixes issue977. Originally committed as revision 18460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace DEBUG_SI with DEBUG and use dprintfBaptiste Coudurier2009-04-12
| | | | Originally committed as revision 18458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set stream type to ac3 if registration descriptor is present.Baptiste Coudurier2009-04-12
| | | | | | Based on patch by Nico Sabi, nicola dot sabbi at poste dot it Originally committed as revision 18457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify registration descriptor parsing with bytestream get functionsBaptiste Coudurier2009-04-12
| | | | Originally committed as revision 18456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ok, ts demuxer is more complicated than I thoughtBjörn Axelsson2009-04-12
| | | | | | | | Revert r18454 and fix correctly #700 Stop parsing if end of buffer is reached while reading patch by Björn Axelsson, bjorn dot axelsson at intinor dot se Originally committed as revision 18455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix end of buffer check, fix hang_read_header.h264.tsBaptiste Coudurier2009-04-12
| | | | Originally committed as revision 18454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 6 channels raw pcm demuxing, raw pcm now demux a fixed number of samplesBaptiste Coudurier2009-04-12
| | | | Originally committed as revision 18453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify packet duplication code in ff_interleave_add_packet.Reimar Döffinger2009-04-11
| | | | | | | Behaviour only changes if pkt->destuct neither av_destruct_packet, av_destruct_packet_nofree nor NULL, in which case the new code avoids a double free. Originally committed as revision 18452 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix "unrecognized WC3 chunk" debug output which was broken r18444 due to ↵Reimar Döffinger2009-04-11
| | | | | | sign expansion. Originally committed as revision 18450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* wc3movie: return partial packets if not all data can be read.Reimar Döffinger2009-04-11
| | | | | | | This is consistent with other demuxer's behaviour and avoids a memleak. It also returns the error from av_get_packet instead of always AVERROR(EIO). Originally committed as revision 18446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Explain the purpose of the wc3_pal_lookup and the formula that was used toReimar Döffinger2009-04-11
| | | | | | calculate it. Originally committed as revision 18445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use get_le32/get_be32 in wc3movie demuxer instead of reading everything intoReimar Döffinger2009-04-11
| | | | | | a buffer first. Originally committed as revision 18444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of av_destruct_packet_nofree and use NULL instead.Reimar Döffinger2009-04-11
| | | | | | It is still used in comparisons to keep ABI compatibility. Originally committed as revision 18431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentReimar Döffinger2009-04-11
| | | | Originally committed as revision 18429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make electronicarts demuxer return partial frames, this is the defaultReimar Döffinger2009-04-11
| | | | | | | | behaviour of av_get_packet and should not be override without good reason. As a side effect this fixes the memleak described in issue 956. Also return the exact error code from av_get_packet instead of AVERROR(EIO). Originally committed as revision 18428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace rand() usage by av_lfg_get().Diego Biurrun2009-04-10
| | | | Originally committed as revision 18420 to svn://svn.ffmpeg.org/ffmpeg/trunk