summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* replacing frame_rate and frame_rate_base with an AVRational time_baseRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic updates as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vertically aligning as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unrolling the loops as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing a bug that prevented proper unweighting table to be selectedRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenizing the commentsRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifying the code as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sync cosmetics from upstream.Diego Biurrun2008-10-07
| | | | Originally committed as revision 15576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename variables to clarify the channel coupling element and correspondingAlex Converse2008-10-06
| | | | | | | | target channel element. Patch by Alex Converse (alex converse gmail com) Originally committed as revision 15575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct documentation of ch_select array.Alex Converse2008-10-06
| | | | | | Patch by Alex Converse (alex converse gmail com) Originally committed as revision 15574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrections to channel coupling code to attain conformance for appropriateAlex Converse2008-10-06
| | | | | | | | streams. Slightly reworked from a patch by Alex Converse (alex converse gmail com) Originally committed as revision 15573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove obsolete liba52 wrapper code.Diego Biurrun2008-10-06
| | | | Originally committed as revision 15571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: rename mace3_decode_frame() to mace_decode_frame()Vitor Sessak2008-10-05
| | | | Originally committed as revision 15569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid code duplication between mace3_decode_frame() and mace6_decode_frame()Vitor Sessak2008-10-05
| | | | Originally committed as revision 15568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a for() instead of triplicating code.Vitor Sessak2008-10-05
| | | | Originally committed as revision 15566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Register RV-[34] block specific feature for long future loop filterKostya Shishkov2008-10-05
| | | | Originally committed as revision 15565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize duplicate table reading code.Vitor Sessak2008-10-05
| | | | Originally committed as revision 15564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare ff_pw_53 and ff_pw_18 as assembler constants.Diego Pettenò2008-10-04
| | | | | | Patch by Diego 'Flameeyes' Petten Originally committed as revision 15553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 'make checkheaders', based on a patch by Diego Pettenò, flameeyes gmail ↵Diego Biurrun2008-10-04
| | | | | | com. Originally committed as revision 15552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move VP3 loop filter to DSPContextDavid Conrad2008-10-04
| | | | Originally committed as revision 15551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark the ff_find_best_tables symbol static to msmpeg4. Patch by Diego PettenòDiego Pettenò2008-10-04
| | | | Originally committed as revision 15550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark ff_div6 and ff_rem6 static in h264.c. Patch by Diego PettenòDiego Pettenò2008-10-04
| | | | Originally committed as revision 15549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark list heads static. Patch by Diego PettenòDiego Pettenò2008-10-04
| | | | Originally committed as revision 15548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l forgot return type.Michael Niedermayer2008-10-04
| | | | Originally committed as revision 15539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention of NAL type enum.Michael Niedermayer2008-10-04
| | | | Originally committed as revision 15538 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_parse_close() is not the correct function for H264Context.Michael Niedermayer2008-10-03
| | | | Originally committed as revision 15537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move nal unit types enum and EXTENDED_SAR #define from h264data.h to h264.h.Michael Niedermayer2008-10-03
| | | | Originally committed as revision 15534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* atrac3dec: cosmetics: indentationAurelien Jacobs2008-10-02
| | | | Originally committed as revision 15530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix warning reported by Intel C compiler:Diego Pettenò2008-10-02
| | | | | | | | | | | | libavcodec/h264_parser.c(77): warning #589: transfer of control bypasses initialization of: variable "v" (declared at line 58) goto found; This new form also improves readability. Patch by Diego 'Flameeyes' Pettenò %flameeyes A gmail P com% Originally committed as revision 15526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Intel C compiler warns on this assignment in this if(), probablyDiego Pettenò2008-10-02
| | | | | | | | | because it's being assigned as a constant. To avoid a spurious warning, split it into two instructions, which should also make it more logical once the FIXME is resolved. patch by Diego 'Flameeyes' Pettenò %flameeyes A gmail P com% Originally committed as revision 15525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicate "const" qualifier for *matrix.Diego Pettenò2008-10-02
| | | | | | | This silences out a warning when compiling with Intel C Compiler. Patch by Diego 'Flameeyes' Pettenò %flameeyes A gmail P com% Originally committed as revision 15524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* x264 has removed the b-rdo and bime options, and instead integratedJason Garrett-Glaser2008-10-02
| | | | | | | | them into the subme number to attempt to reduce the number of unnecessary options. subme now scales up to 9. Patch by Jason Garett-Glaser %darkshikari A gmail P com% Originally committed as revision 15523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use M_PI from libavutil/mathematics.h instead of defining PI ourselvesReimar Döffinger2008-10-02
| | | | | | in libavcodec/apiexample.c. Originally committed as revision 15520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make 8svx codec context table pointer const to match the type of theReimar Döffinger2008-10-02
| | | | | | array. Originally committed as revision 15519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-10-02
| | | | Originally committed as revision 15518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless cyuv_decode_end functionReimar Döffinger2008-10-02
| | | | Originally committed as revision 15516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add (additional) const to many global tables.Reimar Döffinger2008-10-02
| | | | Originally committed as revision 15515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use "static const" instead of "const static"Reimar Döffinger2008-10-02
| | | | Originally committed as revision 15514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Change comment style for consistency.Diego Biurrun2008-10-02
| | | | Originally committed as revision 15513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename some variables and add some comments to try to be a bit more clear.Benoit Fouet2008-10-02
| | | | Originally committed as revision 15510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename copy_picture to ff_copy_picture.Carl Eugen Hoyos2008-10-02
| | | | Originally committed as revision 15508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memleak for currupt input.Carl Eugen Hoyos2008-10-01
| | | | Originally committed as revision 15507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindentDavid Conrad2008-10-01
| | | | Originally committed as revision 15505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unneeded elseDavid Conrad2008-10-01
| | | | Originally committed as revision 15504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unneeded bracesDavid Conrad2008-10-01
| | | | Originally committed as revision 15503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return if unpacking motion vectors for a keyframeDavid Conrad2008-10-01
| | | | Originally committed as revision 15502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentationDavid Conrad2008-10-01
| | | | Originally committed as revision 15501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Visible width/height fields were added in Theora 3.2David Conrad2008-10-01
| | | | Originally committed as revision 15500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* filter_limit_values only needs 7 bits, make its tables smallerDavid Conrad2008-10-01
| | | | Originally committed as revision 15499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation.Benoit Fouet2008-10-01
| | | | Originally committed as revision 15498 to svn://svn.ffmpeg.org/ffmpeg/trunk