summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Deprecate PIX_FMT_YUVJ*Michael Niedermayer2010-06-03
| | | | Originally committed as revision 23451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Calculate cur_pts using first_pts as origin instead of ist->start_timeMartin Storsjö2010-06-03
| | | | | | | This fixes cases where ist->start_time wasn't initialized. This also makes cur_pts calculated against the same origin for all streams. Originally committed as revision 23450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP8 encoding via libvpx.James Zern2010-06-03
| | | | | | Patch by James Zern, Google, Inc. Originally committed as revision 23449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* win32: Use _fstati64() instead of plain old fstat() on Windows to support filekemuri2010-06-03
| | | | | | | | sizes greater than 4gb. Patch by kemuri <kemuri9 at gmail dot com> Originally committed as revision 23448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* httpauth: Fix the length passed to av_strlcatMartin Storsjö2010-06-03
| | | | | | | Since the buffer always was large enough, this bug didn't have any effect in practice. Originally committed as revision 23447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move section EXAMPLES towards the end of the ffmpeg-doc.texi file.Stefano Sabatini2010-06-03
| | | | | | | This is consistent with the the rendered ordering of the ffmpeg man page. Originally committed as revision 23445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make consistent the various SEE ALSO sections in the FFmpeg man pages.Stefano Sabatini2010-06-03
| | | | | | | Also replace "the HTML documentation of @file{ffmpeg}" with "the FFmpeg HTML documentation", which is more generic. Originally committed as revision 23444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put @ignore-d man page specific trailer at the end of the file.Stefano Sabatini2010-06-03
| | | | | | | This makes the ordering of the sections in the file more consistent with that of the final man output. Originally committed as revision 23443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix misc typos.Stefano Sabatini2010-06-03
| | | | Originally committed as revision 23442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change type of {audio,video,subtitle}_codec_tag variables from int toStefano Sabatini2010-06-03
| | | | | | | unsigned int, as the corresponding variable set in AVCodecContext.codec_tag is unsigned int. Originally committed as revision 23441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove stray and possibly wrong line, rtpdec.c sets that alreadyLuca Barbato2010-06-03
| | | | Originally committed as revision 23440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: Work around illegal files with all elem_id tags set to the same value.Alex Converse2010-06-03
| | | | | | Fixes issue 1882. Originally committed as revision 23439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: struct offsets for Apple ABIMåns Rullgård2010-06-02
| | | | Originally committed as revision 23438 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: remove some unnecessary ifdefs, fix implicit declaration warningsMåns Rullgård2010-06-02
| | | | Originally committed as revision 23437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: check struct offsets only when they are usedMåns Rullgård2010-06-02
| | | | | | | The offsets differ depending on configuration, so only check them when they will actually be used. Presently, this is when NEON is enabled. Originally committed as revision 23436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove weird empty line and perform vertical align.Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make write_streamheader() log a message if there is no codec tagStefano Sabatini2010-06-02
| | | | | | defined. Originally committed as revision 23434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make write_streamheader() return a meaningful error code if no codecStefano Sabatini2010-06-02
| | | | | | tag is defined, rather than return -1. Originally committed as revision 23433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make write_header() and write_headers() return an error code in case ofStefano Sabatini2010-06-02
| | | | | | error. Originally committed as revision 23432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make write_streamheader() and write_headers() accept anStefano Sabatini2010-06-02
| | | | | | | AVFormatContext * in input rather than a NUTContext *, which allows to log messages with av_log(). Originally committed as revision 23431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Properly initialize x264_picture_t in libx264.Jason Garrett-Glaser2010-06-02
| | | | | | Bump libx264 version requirement accordingly. Originally committed as revision 23430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless variables in get_common_elements().Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use .p2align in ASMALIGN() macroMåns Rullgård2010-06-02
| | | | | | | The test for .align syntax was apparently unreliable with some compilers. Using the .p2align directive instead avoids the need for this test. Originally committed as revision 23428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: fail build if hardcoded struct offsets are wrongMåns Rullgård2010-06-02
| | | | Originally committed as revision 23427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid division by zero that caused noise, typically at the beginning orFrank Barchard2010-06-02
| | | | | | | | end of a file. Patch by Frank Barchard, fbarchard google Originally committed as revision 23426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bink: correctly align local arraysMåns Rullgård2010-06-02
| | | | Originally committed as revision 23425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add APIchanges entry for av_get_codec_tag_string().Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the error message issued in case of invalid codec tag moreStefano Sabatini2010-06-02
| | | | | | informative. Originally committed as revision 23423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avcodec_string() use av_get_codec_tag_string().Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_get_codec_tag_string() and use it in ffprobe.Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Allow floating point audio bit ratesMartin Storsjö2010-06-02
| | | | | | This allows setting bit rates that aren't an exact multiple of 1000. Originally committed as revision 23419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* arm neon: Add missing mangle to external symbolDavid Conrad2010-06-01
| | | | Originally committed as revision 23418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not check_lib for -lva if vaapi is disabled, having -lva in extralibsReimar Döffinger2010-06-01
| | | | | | if vaapi is disabled is at best pointless. Originally committed as revision 23417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an entry to APIchanges for the addition of sws_convertPalette8ToPacked32 -24Reinhard Tartler2010-06-01
| | | | Originally committed as revision 23415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change default number of channels (used if unspecified in the format desc)Ronald S. Bultje2010-06-01
| | | | | | | | from 2 to 1, which is the actual value used in the spec. Fixes issue1978. Path by John Wimer <john at god dot vtic dot net>. Originally committed as revision 23414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print an error when MAX_STREAMS is reached.Michael Niedermayer2010-06-01
| | | | Originally committed as revision 23413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* deprecate palette8topacked32 in favor of public API functions ↵Reinhard Tartler2010-06-01
| | | | | | | | | | | sws_convertPalette8ToPacked32 and -24 additionallym deprecate palette8torgb16 and its bgr variant without replacement. These functions are not meant to be used by applications. Discussed at: http://comments.gmane.org/gmane.comp.video.ffmpeg.devel/109340 Originally committed as revision 31301 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* ARM: NEON clear_block[s]Måns Rullgård2010-06-01
| | | | Originally committed as revision 23412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move get_buffer() calls from decode_init() to decode_frame(). Anything else isSebastian Vater2010-06-01
| | | | | | | | unsupported and causes crashes when libavfilter is enabled. Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename @chapter "Quick Start" to "Examples", for consistency with theStefano Sabatini2010-06-01
| | | | | | corresponding man page section. Originally committed as revision 23410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix texi2pod.pl rendering of the Tips section by putting each @itemStefano Sabatini2010-06-01
| | | | | | | | | | command on its own line, and create a corresponding "TIPS" man page section. Note that such section is not displayed, as currently only sections with pre-defined names are rendered. Originally committed as revision 23409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make texi2pod.pl accept @itemize commands with no following characterStefano Sabatini2010-06-01
| | | | | | | | | | or texinfo command for specifying how to generate @item marks, and make it use by default the mark symbol "*". This is consistent with texinfo docs: "If you don't specify a mark command, the default is `@bullet'." Originally committed as revision 23408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge @chapter Introduction and @chapter Description into a singleStefano Sabatini2010-06-01
| | | | | | | | | | section, and make the whole rendered in the man output. Simplify layout, and make it more consistent with that of the other man pages. Also I cannot see a good reason for keeping split the two sections. Originally committed as revision 23407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move internal scale context fields initialization fromStefano Sabatini2010-06-01
| | | | | | | | sws_setColorspaceDetails() to ff_yuv2rgb_c_init_tables(). Allow to factorize duplicated code. Originally committed as revision 31300 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix eval-test compilation.Stefano Sabatini2010-06-01
| | | | Originally committed as revision 23406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent and break some overly long line.Stefano Sabatini2010-06-01
| | | | Originally committed as revision 23405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: consistently apply K&R style.Stefano Sabatini2010-06-01
| | | | | | Make me and Diego happy. Originally committed as revision 23404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:Stefano Sabatini2010-06-01
| | | | | | | | | | | | const_name -> const_names const_value -> const_values func[12]_name -> func[12]_names func[12] -> funcs[12] All these parameters contain a list of values, using plural names for them help understanding a little. Originally committed as revision 23403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_parse_expr() and ff_parse_and_eval_expr() return an intStefano Sabatini2010-06-01
| | | | | | | | | | | | containing an error code. Allow these functions to convey the reason of the failure to the calling function, failure which is not always due to a parsing error but it may depend for example on a memory problem. Also fix several potential memleaks. Originally committed as revision 23402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare the url_write buffer parameter as constMartin Storsjö2010-06-01
| | | | Originally committed as revision 23401 to svn://svn.ffmpeg.org/ffmpeg/trunk