summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* dsputil: Propagate bit depth information to all (sub)init functionsDiego Biurrun2014-03-20
| | | | This avoids recalculating the value over and over again.
* arm: dsputil: K&R formatting cosmeticsDiego Biurrun2014-03-20
|
* ppc: dsputil: Drop trailing semicolon from macrosDiego Biurrun2014-03-20
| | | | This allows for a more natural macro usage.
* ppc: dsputil: Merge some declarations and initializationsDiego Biurrun2014-03-20
|
* ppc: dsputil: Simplify some ifdeffed function definitionsDiego Biurrun2014-03-20
|
* ppc: dsputil: Drop some unnecessary parenthesesDiego Biurrun2014-03-20
|
* ppc: dsputil: more K&R formatting cosmeticsDiego Biurrun2014-03-20
|
* ppc: dsputil: K&R formatting cosmeticsDiego Biurrun2014-03-20
|
* ppc: dsputil: comment formatting and wording/grammar improvementsDiego Biurrun2014-03-20
|
* hpeldsp_template: Merge some declarations and initializationsDiego Biurrun2014-03-20
|
* hpeldsp_template: K&R formatting cosmeticsDiego Biurrun2014-03-20
|
* hpel_template: Drop some unnecessary parenthesesDiego Biurrun2014-03-20
|
* hpel_template: K&R formatting cosmeticsDiego Biurrun2014-03-20
|
* libopenjpeg: Support rgba64 decodingVittorio Giovara2014-03-18
|
* libopenjpeg: Support rgba64 encodingCarl Eugen Hoyos2014-03-18
|
* libopenjpeg: K&R formatting cosmeticsVittorio Giovara2014-03-18
|
* sbrdsp: move #if to disable all educational codeJanne Grunau2014-03-18
| | | | Avoids a warning of the unused function 'autocorrelate'.
* lavc: er: remove unused variable sizeJanne Grunau2014-03-18
| | | | The code using it was removed in d66e305bd1b.
* svq3: directly set pix_fmt and color_rangeVittorio Giovara2014-03-18
|
* libx264: check color_rangeVittorio Giovara2014-03-16
|
* ljpeg: check color_rangeVittorio Giovara2014-03-16
|
* mdec: set color_rangeVittorio Giovara2014-03-16
|
* mjpeg: set color_rangeVittorio Giovara2014-03-16
|
* fraps: set color_rangeVittorio Giovara2014-03-16
|
* tiff: Support rgba encodingCarl Eugen Hoyos2014-03-16
|
* raw, nut: Support rgba64 encodingCarl Eugen Hoyos2014-03-16
|
* png: Support rgb48 and rgba64 encodingCarl Eugen Hoyos2014-03-16
|
* png: K&R formatting cosmeticsVittorio Giovara2014-03-16
|
* codec_desc: update dvaudio tagVittorio Giovara2014-03-16
|
* h264 does not depend on mpegvideo any moreVittorio Giovara2014-03-16
|
* mpegvideo: remove h264-only fieldsVittorio Giovara2014-03-16
|
* mpegvideo: move ff_draw_horiz_band() to mpegutils.cVittorio Giovara2014-03-16
| | | | Drop the mpegvideo dependency for svq3 in configure.
* mpegvideo: move mpegvideo formats-related defines to mpegutils.hVittorio Giovara2014-03-16
|
* h264: Remove MotionEstContext and move the relevant fields to H264ContextVittorio Giovara2014-03-16
| | | | Unused buffers scratchpad and temp have been dropped too.
* h264: Replace mpegvideo-specific MAX_THREADS by private defineVittorio Giovara2014-03-16
|
* h264: Replace mpegvideo-specific MAX_PICTURE_COUNT by private defineVittorio Giovara2014-03-16
|
* h264: move relevant fields from Picture to H264PictureVittorio Giovara2014-03-16
|
* er: move relevant fields from Picture to ERPictureVittorio Giovara2014-03-16
| | | | | | | This is done to disentangle ER from mpegvideo. In order to use a classic Picture, callers can use ff_mpeg_set_erpic() or use a custom function to set the fields. Please note that buffers need to be allocated before calling ff_er_frame_end().
* h264: directly use frames in ff_h264_draw_horiz_band()Vittorio Giovara2014-03-16
|
* mpegvideo: directly use frames in ff_draw_horiz_band()Vittorio Giovara2014-03-16
|
* codec_desc: group image codecs togetherVittorio Giovara2014-03-14
|
* codec_desc: add missing .long_nameVittorio Giovara2014-03-14
|
* codec_desc: K&R formatting cosmeticsVittorio Giovara2014-03-14
|
* arm: dsputil: Drop restrict keyword from add_pixels_clamped_armv6 prototypeDiego Biurrun2014-03-14
| | | | | | | | The function is assigned to a function pointer that does not have the restrict keyword for that parameter. This fixes compilation for MSVC builds that don't recognize "restrict", broken since ed9625eb62.
* ljpeg: fix duplicated pixel format entryVittorio Giovara2014-03-13
|
* bfin: Use more sensible file namesDiego Biurrun2014-03-13
| | | | | Drop non-informative _bfin suffix, rename some files for consistency with other architectures, rename others to reflect their content.
* bfin: hpeldsp: Split no_rnd pixel operations off into a separate fileDiego Biurrun2014-03-13
| | | | This saves some space in configurations that do not enable hpeldsp.
* bfin: dsputil: Unconditionally compile hpel pixels codeDiego Biurrun2014-03-13
| | | | The functions it contains are used from unconditionally compiled code.
* bfin: hpeldsp: "nornd" ---> "no_rnd" function name suffix for consistencyDiego Biurrun2014-03-13
|
* bfin: Move all assembly declarations only used within one .c file thereDiego Biurrun2014-03-13
| | | | This is done similarly for all other architectures.