summaryrefslogtreecommitdiffstats
path: root/libavcodec/mpeg4video.h
Commit message (Collapse)AuthorAgeFilesLines
* cosmetics: Fix spelling mistakesVittorio Giovara2016-05-041-2/+2
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* cosmetics: Drop empty comment linesDiego Biurrun2016-02-181-1/+0
|
* mpegvideo: Drop err_recognitionVittorio Giovara2015-05-221-1/+1
| | | | It is just a duplicate of an AVCodecContext member so use it instead.
* mpeg4video: Fix doxygen comment syntax to document correct struct memberNidhi Makhijani2014-08-141-10/+10
| | | | | | Also fix some comment typos. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* mpegvideo: move vol_control_parameters to the only place it is usedNidhi Makhijani2014-07-291-0/+2
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* mpeg4videodec: move showed_packed_warning from MpegEncContext to Mpeg4DecContextAnton Khirnov2013-12-051-0/+2
|
* mpeg4videodec: move intra_dc_threshold from MpegEncContext to Mpeg4DecContextAnton Khirnov2013-12-051-0/+2
|
* mpeg4videodec: move use_intra_dc_vlc from MpegEncContext to Mpeg4DecContextAnton Khirnov2013-12-051-0/+1
|
* mpeg4videodec: move sprite_{shift,traj} from MpegEncContext to Mpeg4DecContextAnton Khirnov2013-11-291-0/+4
|
* mpeg4videodec: move num_sprite_warping_points from MpegEncContext to ↵Anton Khirnov2013-11-291-0/+2
| | | | Mpeg4DecContext
* mpeg4videodec: move sprite_brightness_change from MpegEncContext to ↵Anton Khirnov2013-11-291-0/+1
| | | | Mpeg4DecContext
* mpeg4videodec: move scalability from MpegEncContext to Mpeg4DecContextAnton Khirnov2013-11-291-0/+1
|
* mpeg4videodec: move enhancement_type from MpegEncContext to Mpeg4DecContextAnton Khirnov2013-11-291-0/+1
|
* mpeg4videodec: move new_pred from MpegEncContext to Mpeg4DecContextAnton Khirnov2013-11-291-0/+2
|
* mpeg4videodec: move t_frame from MpegEncContext to Mpeg4DecContextAnton Khirnov2013-11-291-0/+2
|
* mpeg4videodec: move cplx_estimation_* fields from MpegEncContext to ↵Anton Khirnov2013-11-291-0/+4
| | | | Mpeg4DecContext
* mpeg4videodec: move mpeg4-specific bug workaround variables from ↵Anton Khirnov2013-11-291-0/+6
| | | | MpegEncContext to Mpeg4DecContext
* mpeg4videodec: move mpeg4-specific post-frame-decode code from h264dec to ↵Anton Khirnov2013-11-291-0/+1
| | | | mpeg4videodec
* mpeg4videodec: move MpegEncContext.resync_marker into Mpeg4DecContext.Anton Khirnov2013-11-291-0/+2
|
* mpeg4videodec: move MpegEncContext.rvlc to Mpeg4DecContextAnton Khirnov2013-11-291-0/+2
|
* mpeg4videodec: move MpegEncContext.vol_sprite_usage to Mpeg4DecContextAnton Khirnov2013-11-291-1/+2
|
* mpeg4videodec: move MpegEncContext.time_increment_bits to Mpeg4DecContextAnton Khirnov2013-11-291-0/+2
| | | | The field remains in MpegEncContext for use in the encoder.
* mpeg4videodec: move MpegEncContext.shape to Mpeg4DecContextAnton Khirnov2013-11-291-2/+4
|
* mpeg4videodec: add a mpeg4-specific private context.Anton Khirnov2013-11-291-0/+4
|
* mpeg4video: K&R formatting cosmeticsVittorio Giovara2013-11-011-49/+54
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* avcodec: Replace local extern declarations for tables with header #includesDiego Biurrun2013-08-151-0/+3
|
* Drop DCTELEM typedefDiego Biurrun2013-01-221-2/+2
| | | | | | It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* mpeg4: Add ff_ prefixes to nonstatic symbolsMartin Storsjö2012-02-151-12/+12
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* doxygen: misc consistency, spelling and wording fixesDiego Biurrun2011-12-121-1/+1
|
* lavc: convert error_recognition to err_recognition.Dustin Brody2011-12-121-1/+1
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* multiple inclusion guard cleanupDiego Biurrun2011-05-211-1/+1
| | | | | Add missing multiple inclusion guards; clean up #endif comments; add missing library prefixes; keep guard names consistent.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Make inter_rvlc and intra_rvlc static tables.Diego Elio Pettenò2011-02-061-3/+0
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Add lots of missing includesMåns Rullgård2010-03-081-0/+5
| | | | Originally committed as revision 22337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make some tables static again, i mistakely thought they would be used in severalMichael Niedermayer2010-01-091-6/+0
| | | | | | places. Originally committed as revision 21111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move 3 direct MV related functions that i left out from h263.c to mpeg4video.c.Michael Niedermayer2010-01-081-0/+7
| | | | Originally committed as revision 21104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename mpeg4 intra vlc tables so they contain "mpeg4", this improves readabilityMichael Niedermayer2010-01-081-4/+4
| | | | | | of msmpeg4 code (one now knows where that table comes from). Originally committed as revision 21097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename DCtab_*, its a global variable and it helps understanding if mpeg4Michael Niedermayer2010-01-081-2/+2
| | | | | | is in its name. Originally committed as revision 21096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless line.Michael Niedermayer2010-01-081-1/+0
| | | | Originally committed as revision 21092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the mpeg4 encoder and decoder off h263.cMichael Niedermayer2010-01-071-0/+197
Originally committed as revision 21079 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud