summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Add convergence_duration to AVCodecParserContext.Ivan Schreter2009-02-19
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commitAlex Converse2009-02-19
| | | | Originally committed as revision 17464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence two warnings:Ivan Schreter2009-02-19
| | | | | | | | cast discards qualifiers from pointer target type Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some buffer checks for indeo3Alex Converse2009-02-19
| | | | Originally committed as revision 17462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* A try to fix the regressions.Michael Niedermayer2009-02-19
| | | | Originally committed as revision 17459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVERROR_EOF.Peter Ross2009-02-19
| | | | Originally committed as revision 17455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add more paranoid checks of xvmc token.Ivan Kalvachev2009-02-19
| | | | Originally committed as revision 17453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Exit with error if MPV_common_init() is called with PIX_FMT_NONE.Ivan Kalvachev2009-02-19
| | | | | | Give nice error message to fix codecs that call it this way. Originally committed as revision 17452 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only enable SSE/3DNOW optimizations when they have been enabled at compilation.Diego Biurrun2009-02-19
| | | | | | Fixes shared build with SSE/3DNOW disabled but MMX and yasm enabled. Originally committed as revision 17451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Directly #include required X11/XvMC header.Diego Biurrun2009-02-19
| | | | Originally committed as revision 17450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* transitioning dv_guess_dct_mode to dsputil cmp functionRoman Shaposhnik2009-02-19
| | | | Originally committed as revision 17449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adding 2 intra 8x8 cmp functions: vsad, vsseRoman Shaposhnik2009-02-19
| | | | Originally committed as revision 17448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow AC-3 parser to modify codec_id.Joakim Plate2009-02-19
| | | | | | Patch by Joakim Plate (elupus A ecce D se). Originally committed as revision 17447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Making the arrays accomodate an extra intra 8x8 cmp functionRoman Shaposhnik2009-02-19
| | | | Originally committed as revision 17446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix missing dependenciesAurelien Jacobs2009-02-19
| | | | Originally committed as revision 17445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting whitespace cosmeticsDiego Biurrun2009-02-19
| | | | Originally committed as revision 17443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add key_frame to AVCodecParserContext, used in libavformat.Ivan Schreter2009-02-18
| | | | | | | | Initialized to -1 in parser.c for backward compatibility. Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse buffering period (H.264, D.1.1).Ivan Schreter2009-02-18
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The 3DNow! and SSE FFT optimizations depend on the yasm optimizations inDiego Biurrun2009-02-18
| | | | | | x86/fft_mmx.asm, so only build them if the latter is built. Originally committed as revision 17440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store CPB count in the context.Ivan Schreter2009-02-18
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify get_ue_golomb_31() behavior with >31.Michael Niedermayer2009-02-18
| | | | Originally committed as revision 17429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Instead of crashing, return from ff_vdpau_mpeg_picture_complete()Reimar Döffinger2009-02-18
| | | | | | | | if get_buffer() failed. Patch by Reimar Originally committed as revision 17427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse cbp_removal_delay in SEI picture structure.Ivan Schreter2009-02-18
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse dpb_output_delay in SEI picture structure.Ivan Schreter2009-02-18
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse initial_cpb_removal_delay_length.Ivan Schreter2009-02-18
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle conditional compilation of CPU-specific FFT code in the Makefile.Diego Biurrun2009-02-18
| | | | | | | Also replace one coarse MMX condition with more fine-grained 3DNow!/3DNowExt!/SSE conditions. Originally committed as revision 17409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegvideo_xvmc.o depends on mpegvideo.o.Diego Biurrun2009-02-17
| | | | Originally committed as revision 17405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace sizeof(short) by the more robust sizeof(*s->pblocks[i]) in memset andDiego Biurrun2009-02-17
| | | | | | memcpy calls. s->pblocks is the element actually being handled. Originally committed as revision 17404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* small Doxygen comment grammar fixDiego Biurrun2009-02-17
| | | | Originally committed as revision 17403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert converting two asserts into if checks and error messages.Diego Biurrun2009-02-17
| | | | | | It did not achieve the intended effect. Originally committed as revision 17402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MBAFF/PAFF samples.Stephen Warren2009-02-17
| | | | | | Patch by Stephen Warren, swarren nvidia com Originally committed as revision 17401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/wording fixes for the Doxygen commentsDiego Biurrun2009-02-17
| | | | Originally committed as revision 17400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing #includes to fix 'make checkheaders'.Diego Biurrun2009-02-17
| | | | Originally committed as revision 17398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move initialization of {luma,chroma}_weight_flag[] up,Gwenole Beauchesne2009-02-17
| | | | | | | to make sure they are always initialized. Patch by Gwenole Beauchesne g${name} splitted-desktop com Originally committed as revision 17393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: 'void/int inline' --> 'inline void/int' to avoid warnings of the typeDiego Biurrun2009-02-17
| | | | | | "'inline' is not at beginning of declaration" with -Wextra. Originally committed as revision 17392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: 'const static' --> 'static const' to avoid warnings of the typeDiego Biurrun2009-02-17
| | | | | | "'static' is not at beginning of declaration" with -Wextra. Originally committed as revision 17391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Thoroughly check all fields set by the application in xvmc struct.Ivan Kalvachev2009-02-16
| | | | Originally committed as revision 17387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Silence false positive warning about uninitialized variables inPatrik Kullman2009-02-16
| | | | | | decode_subframe_fixed(). Patch by Patrik Kullman (patrik A yes D nu). Originally committed as revision 17386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Minor clarification of xvmc field description.Ivan Kalvachev2009-02-16
| | | | Originally committed as revision 17384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improvements in xvmc structure fields descriptions.Ivan Kalvachev2009-02-16
| | | | Originally committed as revision 17383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: Reindent a few lines after the last commit.Diego Biurrun2009-02-16
| | | | Originally committed as revision 17370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of some '#if CONFIG_MPEG_XVMC_DECODER' preprocessor checks around ifDiego Biurrun2009-02-16
| | | | | | statements by merging the CONFIG_MPEG_XVMC_DECODER check into the if condition. Originally committed as revision 17369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: Place spaces around += for better readability.Diego Biurrun2009-02-16
| | | | Originally committed as revision 17368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing object dependencies: eatqi.o depends on mpeg12.o.Diego Biurrun2009-02-16
| | | | Originally committed as revision 17366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make BMP decoder try to decode files with incorrect filesize field valueKostya Shishkov2009-02-16
| | | | Originally committed as revision 17363 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace two asserts by checks and error messages.Diego Biurrun2009-02-16
| | | | Originally committed as revision 17362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygen comment wording fixDiego Biurrun2009-02-16
| | | | Originally committed as revision 17361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmeticsDiego Biurrun2009-02-16
| | | | Originally committed as revision 17358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give struct members more sensible names:Diego Biurrun2009-02-16
| | | | | | | total_number_of_mv_blocks --> allocated_mv_blocks total_number_of_data_blocks --> allocated_data_blocks Originally committed as revision 17356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: one more wording fixDiego Biurrun2009-02-16
| | | | Originally committed as revision 17355 to svn://svn.ffmpeg.org/ffmpeg/trunk