summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Change the RGB5X5/BGR5X5 pixel format defines so that we have littleStefano Sabatini2009-03-21
| | | | | | | | endian and big endian variants instead of native-endian ones. This patch breaks API/ABI backward-compatibility. Originally committed as revision 18133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use PIX_FMT_NE() macro.Stefano Sabatini2009-03-21
| | | | Originally committed as revision 18132 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement PIX_FMT_NE() macro.Stefano Sabatini2009-03-21
| | | | Originally committed as revision 18131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend the behavior of avcodec_get_pix_fmt(), if it cannot find aStefano Sabatini2009-03-21
| | | | | | | pixel format for the provided name, make it look for the native endian variant of the name. Originally committed as revision 18130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally prefer enum PixelFormat over int when it makes sense.Stefano Sabatini2009-03-21
| | | | Originally committed as revision 18129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove slash-skipping code because the function called right after thatRonald S. Bultje2009-03-21
| | | | | | | statement (get_word_sep()) already does that all by itself. See summary in "[PATCH] rtsp.c small cleanups" thread on mailinglist. Originally committed as revision 18128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent something where a if () --> { <-- is on a newline rather than on theRonald S. Bultje2009-03-21
| | | | | | | same line as the if. See summary in "[PATCH] rtsp.c small cleanups" thread on mailinglist. Originally committed as revision 18127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Free metadata if already allocated; fixes a memleak if the header occurs twiceRonald S. Bultje2009-03-21
| | | | | | | in a stream (e.g. malicious input, broken file, etc.). See summary in "[PATCH] rtsp.c small cleanups" thread on mailinglist. Originally committed as revision 18126 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix silly bug in hex_to_data() where it compares a string pointer for whetherRonald S. Bultje2009-03-21
| | | | | | | | it is '\0' rather than its content (char *p; if (p == '\0') instead of if (*p == '\0')). See summary in "[PATCH] rtsp.c small cleanups" thread on mailinglist. Originally committed as revision 18125 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless comment about something that is deprecated. See summary inRonald S. Bultje2009-03-21
| | | | | | "[PATCH] rtsp.c small cleanups" thread on mailinglist. Originally committed as revision 18124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use skip_spaces() in the "redir" demuxer instead of "while (isspace(&p)) p++".Ronald S. Bultje2009-03-21
| | | | | | See summary in "[PATCH] rtsp.c small cleanups" thread on mailinglist. Originally committed as revision 18123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge functional code from get_word() and get_word_sep() into a singleRonald S. Bultje2009-03-21
| | | | | | | | | function, since they both do approximately the same thing. At the same time, remove redir_isspace() altogether since code elsewhere (including get_word_sep()) uses strchr() for the same purpose. See summary in "[PATCH] rtsp.c small cleanups" thread. Originally committed as revision 18122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow (and parse) incoming server messages (notices) interleaved with TCPRonald S. Bultje2009-03-21
| | | | | | | | data packets or in addition to UDP data packets, over the RTSP/TCP connection. See discussion in [PATCH] rtsp.c: read TCP server notifications/messages" thread on mailinglist. Originally committed as revision 18121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a @todo item to use ByteIOContext instead of URLContext at some point inRonald S. Bultje2009-03-21
| | | | | | | the future, requested by Luca in "[PATCH] rtsp.c: read TCP server notifications/messages" thread. Originally committed as revision 18120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove index writing in RM muxer, since it is broken (multiple streams perRonald S. Bultje2009-03-21
| | | | | | | single index chunk) and is always empty anyway. See "[PATCH] rmenc.c: remove index writing" thread. Originally committed as revision 18119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't allow to sync on packets of zero-size length, since these are neverRonald S. Bultje2009-03-21
| | | | | | valid. See "[PATCH] rmdec.c: prevent zero-length packets" thread. Originally committed as revision 18118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move "- 12" statement up a bit. See "[PATCH] rmdec.c: prevent zero-lengthRonald S. Bultje2009-03-21
| | | | | | packets" thread. Originally committed as revision 18117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove deprecated and now unused Mersenne Twister PRNG.Diego Biurrun2009-03-21
| | | | Originally committed as revision 18116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Register myself as Smacker maintainerKostya Shishkov2009-03-21
| | | | Originally committed as revision 18115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* When warning about forbidden pseudo random number generation functions,Diego Biurrun2009-03-21
| | | | | | suggest the correct replacement functions. Originally committed as revision 18114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reference to av_random_init where av_lfg_init was meant.Diego Biurrun2009-03-21
| | | | Originally committed as revision 18113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reference to av_random where av_lfg_get was meant.Diego Biurrun2009-03-21
| | | | Originally committed as revision 18112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Smacker audio decoder output audio in original bit depthDaniel Verkamp2009-03-21
| | | | | | | | | Patch by Daniel Verkamp ($firstname) at (three-letter file extension for drivers in Win 3.1) dot (nu) Thread: [PATCH] Smacker: Output audio in original bit depth Originally committed as revision 18111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove deprecated functions and structures on next version bump.Diego Biurrun2009-03-21
| | | | Originally committed as revision 18110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build failure on x86_32 Mac OS X with PIC enabledCédric Schieli2009-03-21
| | | | Originally committed as revision 29022 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* check if feed max file size is too smallBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, reindent and remove empty lineBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new Truncate option which will make feeder truncate feed fileBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix avpicture_get_size for non-paletted formats with a helper paletteReimar Döffinger2009-03-21
| | | | | | | to not include the size of that palette. Also clarify its documentation. Originally committed as revision 18106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix planarCopy to ignore the GRAY8 "pseudo"-palette, fixes libavtest ↵Reimar Döffinger2009-03-21
| | | | | | regression test. Originally committed as revision 29021 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* update ffserver regression refBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not call av_find_stream_info if stream is ffm, should fix stallingBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* send busy reply if max connections number is exceededBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentDavid Conrad2009-03-21
| | | | Originally committed as revision 18102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix Speex header parsing in ogg demuxerDavid Conrad2009-03-21
| | | | Originally committed as revision 18101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document ogg_codec's header functionDavid Conrad2009-03-21
| | | | Originally committed as revision 18100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation when DEBUG_SEEK is definedBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix valid seeking rangeBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adjust write index if not setBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update seek regression ref due to 18063Baptiste Coudurier2009-03-21
| | | | Originally committed as revision 18096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take over sole maintainership for all FLAC-related stuffJustin Ruggles2009-03-21
| | | | Originally committed as revision 18095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the ogg regression test, which was broken by r18092. This is anJustin Ruggles2009-03-21
| | | | | | | | expected change because the ogg muxer with FLAC encoder uses the maximum frame size estimate since it cannot rewrite the real maximum frame size at end of encoding. Originally committed as revision 18094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add myself as maintainer for new FLAC filesJustin Ruggles2009-03-21
| | | | Originally committed as revision 18093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a function to calculate a more accurate estimate for maximum FLACJustin Ruggles2009-03-21
| | | | | | frame size and use the function in the FLAC decoder and FLAC encoder Originally committed as revision 18092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: account for frame and subframe header overhead when calculatingJustin Ruggles2009-03-21
| | | | | | estimate for maximum frame size Originally committed as revision 18091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert accidental unrelated change in last commitJustin Ruggles2009-03-21
| | | | Originally committed as revision 18090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* share sample rate and blocksize tables between the FLAC encoder and FLACJustin Ruggles2009-03-21
| | | | | | decoder Originally committed as revision 18089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* protect realloc overflowBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacenc: remove unneeded variable, 'min_encoded_framesize' and useJustin Ruggles2009-03-21
| | | | | | 'min_framesize' instead Originally committed as revision 18087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seek backwards 4 bytes if 'fLaC' marker is not foundJustin Ruggles2009-03-21
| | | | Originally committed as revision 18086 to svn://svn.ffmpeg.org/ffmpeg/trunk