summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix wrong size computation for buffer. Patch is part ofReynaldo H. Verdejo Pinochet2009-04-12
| | | | | | netgem's changeset. Originally committed as revision 18477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove gcc_fixes.h. It only contains workarounds for unsupported gcc versions.Diego Biurrun2009-04-12
| | | | Originally committed as revision 18476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AltiVec optimizations for Snow. They are hindering the developmentDiego Biurrun2009-04-12
| | | | | | of Snow, which is still in flux. Originally committed as revision 18475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 2 access units in a packet mp4s.Michael Niedermayer2009-04-12
| | | | | | Fixes issue944 and possibly others. Originally committed as revision 18474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of the non sensical idea of using the current picture for missingMichael Niedermayer2009-04-12
| | | | | | reference pictures. Originally committed as revision 18473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize field_end() out.Michael Niedermayer2009-04-12
| | | | Originally committed as revision 18472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Assert that the first list1 entry is a reference frame.Michael Niedermayer2009-04-12
| | | | Originally committed as revision 18471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a av_fast_malloc function and replace several uses of av_fast_realloc,Reimar Döffinger2009-04-12
| | | | | | thus avoiding potential memleaks and pointless memcpys. Originally committed as revision 18470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use void * instead of uint8_t * for the destination buffer for dsp.bswap_bufReimar Döffinger2009-04-12
| | | | | | | where easily possible (mimic, eatqi, 4xm). This allows to avoid a typecast. Originally committed as revision 18469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_destruct_packet_nofree deprecation explained in APIchangesReimar Döffinger2009-04-12
| | | | Originally committed as revision 18468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AVERROR(ENOMEM) instead of AVERROR_NOMEM / -1 in eatqi and mimic decodersReimar Döffinger2009-04-12
| | | | Originally committed as revision 18467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document pbBufPtr().Stefano Sabatini2009-04-12
| | | | Originally committed as revision 18466 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
* Add names for 5.0 and 5.1 back speaker channel layouts.Justin Ruggles2009-04-12
| | | | Originally committed as revision 18459 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 initialization of avpkt in output_packet().Thilo Borgmann2009-04-11
| | | | | | Patch by Thilo Borgmann thilo.surname AT googlemaildotcom. Originally committed as revision 18451 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
* Fix documentation for avcodec_encode_audio(), in the case of PCM audioJohn Fletcher2009-04-11
| | | | | | | | the output buffer size may be less than FF_MIN_BUFFER_SIZE. Patch by John Fletcher john.surname AT rd . bbc . co . uk. Originally committed as revision 18449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the 'size' parameter of set_put_bits_buffer_size().Stefano Sabatini2009-04-11
| | | | Originally committed as revision 18448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document ff_put_string().Stefano Sabatini2009-04-11
| | | | Originally committed as revision 18447 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
* Replace deprecated FF_MM_MMXEXT flag with FF_MM_MMX2.Stefano Sabatini2009-04-11
| | | | Originally committed as revision 18443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename the 'put_zero' parameter of ff_put_string() toStefano Sabatini2009-04-11
| | | | | | 'terminate_string'. Originally committed as revision 18442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add documentation for skip_put_bytes().Stefano Sabatini2009-04-11
| | | | Originally committed as revision 18441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenate ff_copy_bits().Stefano Sabatini2009-04-11
| | | | Originally committed as revision 18440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize declaration for the two variants of put_bits().Stefano Sabatini2009-04-11
| | | | Originally committed as revision 18439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Two INIT_VLC_USE_STATIC cases Carl missed.Michael Niedermayer2009-04-11
| | | | Originally committed as revision 18438 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of INIT_VLC_USE_STATIC in h261.Michael Niedermayer2009-04-11
| | | | Originally committed as revision 18437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of INIT_VLC_USE_STATIC in rv10/rv20.Michael Niedermayer2009-04-11
| | | | Originally committed as revision 18436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of INIT_VLC_USE_STATIC in 4xm.Michael Niedermayer2009-04-11
| | | | Originally committed as revision 18435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of INIT_VLC_USE_STATIC in asv1.Michael Niedermayer2009-04-11
| | | | Originally committed as revision 18434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of INIT_VLC_USE_STATIC in msmpeg4Michael Niedermayer2009-04-11
| | | | Originally committed as revision 18433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify documentation for put_bits_count().Stefano Sabatini2009-04-11
| | | | Originally committed as revision 18432 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
* Use INIT_VLC_USE_STATIC and not its value "1".Carl Eugen Hoyos2009-04-11
| | | | Originally committed as revision 18430 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