summaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix mb_height for interlaced mpeg2.Michael Niedermayer2009-04-081-0/+3
| | | | | | This correctly fixes issue961, thanks to steven warren for spotting my mistake. Originally committed as revision 18381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VA API pixfmt (only VLD is available ATM).Gwenole Beauchesne2009-04-021-0/+1
| | | | Originally committed as revision 18309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename hwaccel_data_private to hwaccel_picture_private.Gwenole Beauchesne2009-03-201-5/+5
| | | | Originally committed as revision 18071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_mallocz() to initialize hwaccel_data_private.Gwenole Beauchesne2009-03-111-1/+1
| | | | Originally committed as revision 17942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add private HW accel data infrastructure.Gwenole Beauchesne2009-03-091-0/+13
| | | | Originally committed as revision 17899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add frame buffer allocators. aka simplify calls toGwenole Beauchesne2009-03-041-24/+45
| | | | | | AVCodecContext.{get,release}_buffer(). Originally committed as revision 17804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge three conditions in a single 'if' instead of two.Benoit Fouet2009-03-021-2/+1
| | | | Originally committed as revision 17728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_print_debug_info() a no-op when using HW acceleration.Gwenole Beauchesne2009-02-271-0/+1
| | | | | | Patch by Gwenolé Beauchesne. Originally committed as revision 17646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_hwaccel_pixfmt_list_420[] definition.Gwenole Beauchesne2009-02-271-0/+5
| | | | | | Patch by Gwenole Beauchesne. Originally committed as revision 17633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add and use ff_pixfmt_list_420.Michael Niedermayer2009-02-241-0/+4
| | | | Originally committed as revision 17564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Approved hunks for VAAPI / our new shiny hwaccel APIMichael Niedermayer2009-02-231-1/+2
| | | | | | by Gwenole Beauchesne gbeauchesne splitted desktop com Originally committed as revision 17539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing av_cold in static init/close functions.Daniel Verkamp2009-02-221-2/+2
| | | | | | Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the type of pblocks from pointers to short array intoIvan Kalvachev2009-02-221-2/+2
| | | | | | | pointers to array of 64 DCTELEM, similarly to other block fields. This also get rid of some casts and fixes a warning. Originally committed as revision 17517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Exit with error if MPV_common_init() is called with PIX_FMT_NONE.Ivan Kalvachev2009-02-191-0/+5
| | | | | | Give nice error message to fix codecs that call it this way. Originally committed as revision 17452 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: Reindent a few lines after the last commit.Diego Biurrun2009-02-161-3/+2
| | | | 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-161-9/+4
| | | | | | 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
* Add xvmc_internal.h that contains all internal xvmc function declarations.Diego Biurrun2009-02-141-4/+1
| | | | | | This allows getting rid of a bunch of ugly forward declarations. Originally committed as revision 17280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename some forward declarations that were missed, fixes the warnings:Diego Biurrun2009-02-141-2/+2
| | | | | | | | | | libavcodec/mpegvideo.o libavcodec/mpegvideo.c libavcodec/mpegvideo.c: In function ‘MPV_frame_start’: libavcodec/mpegvideo.c:944: warning: implicit declaration of function ‘ff_xvmc_field_start’ libavcodec/mpegvideo.c: In function ‘MPV_frame_end’: libavcodec/mpegvideo.c:957: warning: implicit declaration of function ‘ff_xvmc_field_end’ Originally committed as revision 17258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation: XVMC_ --> ff_xvmc prefix for xvmc functions.Diego Biurrun2009-02-141-2/+2
| | | | Originally committed as revision 17256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ff_xvmc for function names instead of XVMC_Ivan Kalvachev2009-02-141-2/+2
| | | | Originally committed as revision 17254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant CONFIG_XVMC option, CONFIG_MPEG_XVMC_DECODER suffices.Diego Biurrun2009-02-141-3/+3
| | | | Originally committed as revision 17229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-191-1/+1
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_Aurelien Jacobs2009-01-141-8/+8
| | | | | | and remove all ENABLE_ definitions. Originally committed as revision 16600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-131-11/+11
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VDPAU hardware accelerated decoding for H264 which can be used byNVIDIA Corporation2009-01-041-1/+5
| | | | | | | | video players. Original patch by NVIDIA corporation. Originally committed as revision 16431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: replace "armv4l" with "arm"Måns Rullgård2008-12-171-2/+2
| | | | Originally committed as revision 16179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Switch xvmc over to a CONFIG_ option.Diego Biurrun2008-12-151-3/+3
| | | | Originally committed as revision 16153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete unnecessary 'extern' keywords.Diego Biurrun2008-12-031-3/+3
| | | | Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix regression test failure with pthreads on multiprocessor systems.Michael Niedermayer2008-12-021-0/+3
| | | | | | Fixes issue517 Originally committed as revision 15976 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename copy_picture to ff_copy_picture.Carl Eugen Hoyos2008-10-021-4/+4
| | | | Originally committed as revision 15508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use the generic "alloc missing references" code for h.264 as it doesMichael Niedermayer2008-09-251-1/+1
| | | | | | | not work correctly in that case. Fixes issue652. Originally committed as revision 15413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename error_resilience to error_recognition.Michael Niedermayer2008-09-081-1/+1
| | | | Originally committed as revision 15270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix mpeg 4:2:2 vis_qp and vis_mb_type debug, fix issue #471Baptiste Coudurier2008-07-311-9/+10
| | | | Originally committed as revision 14493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix two common typos: wont --> will not, lets --> let us.Diego Biurrun2008-07-241-1/+1
| | | | Originally committed as revision 14372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change init_vlc_rl() so it does not use *alloc_static() anymore.Michael Niedermayer2008-05-301-14/+1
| | | | Originally committed as revision 13567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MB skipping with droppable frames.Michael Niedermayer2008-05-251-1/+1
| | | | | | Fixes issue323. Originally committed as revision 13378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unroll codepathKeiji Costantini2008-04-211-6/+12
| | | | | | | | Patch by strites: strites gmail com Original thread: [FFmpeg-devel] [PATCH] Patch cleanup for MPEG 1 & 2 optimizations Date: 04/06/2008 11:32 PM Originally committed as revision 12917 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break an overly long line.Keiji Costantini2008-04-101-1/+3
| | | | | | patch by Keiji Costantini, lists strites net Originally committed as revision 12783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Classify mlib as a configurable option, not as a hardware feature.Diego Biurrun2008-03-251-1/+1
| | | | Originally committed as revision 12589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-151-1/+1
| | | | Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_ prefix to all (frame)_TYPE usageAurelien Jacobs2008-03-091-20/+20
| | | | Originally committed as revision 12399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_mpeg1_dc_scale_table to mpegvideo.cAurelien Jacobs2008-03-051-0/+8
| | | | Originally committed as revision 12344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_emulated_edge_mc() to dsputilAurelien Jacobs2008-03-041-71/+0
| | | | Originally committed as revision 12318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_init_scantable() into dsputilAurelien Jacobs2008-03-041-23/+0
| | | | Originally committed as revision 12311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move draw_edges() into dsputilAurelien Jacobs2008-03-041-35/+3
| | | | Originally committed as revision 12309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix ;;Michael Niedermayer2008-02-191-3/+3
| | | | Originally committed as revision 12153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless code.Michael Niedermayer2008-02-091-2/+0
| | | | Originally committed as revision 11885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak in h264 decoder. allocated_edge_emu_buffer was being allocatedJeff Downs2008-01-281-3/+1
| | | | | | | | | | | | in both mpegvideo and h264 decoder. Fixed by allowing all (master and duplicate) contexts to fully initialize in MPV_frame_start and copying these into H264Contexts. Mailing list discussion: [FFmpeg-devel] Memory leak in h264 Tue, 22 Jan 2008 15:22:55 Originally committed as revision 11657 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix segfault with interlaced h.264Michael Niedermayer2007-11-291-2/+2
| | | | Originally committed as revision 11113 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud