summaryrefslogtreecommitdiff
path: root/libavcore/imgutils.c
Commit message (Collapse)AuthorAge
* Implement av_image_alloc() and use it inStefano Sabatini2010-12-04
| | | | | | avfilter_default_get_video_buffer(). Originally committed as revision 25878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing overflow checks in av_image_fill_pointers() andStefano Sabatini2010-12-02
| | | | | | av_image_fill_linesizes(). Originally committed as revision 25861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move internal function ff_set_systematic_pal() to libavcore, andStefano Sabatini2010-11-09
| | | | | | rename it ff_set_systematic_pal2(). Originally committed as revision 25712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing checks on invalid pixel format inStefano Sabatini2010-09-07
| | | | | | av_image_fill_linesizes/pointers. Originally committed as revision 25072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: use plural form for *linesizes arguments ofStefano Sabatini2010-09-07
| | | | | | | av_image_copy(), more consistent with the rest of the API and more semantically correct. Originally committed as revision 25070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_picture_data_copy() to libavcore, and rename itStefano Sabatini2010-09-07
| | | | | | av_image_copy(). Originally committed as revision 25067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reimplement ff_img_copy_plane() as av_image_copy_plane() in libavcore,Stefano Sabatini2010-09-07
| | | | | | and deprecate the old function. Originally committed as revision 25064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adopt a hierarchical name scheme for the imgutils.h API. SimplifyStefano Sabatini2010-09-07
| | | | | | | grepping and somewhat more consistent with the scheme adopted by other FFmpeg modules API. Originally committed as revision 25057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_fill_image_max_pixsteps() non static non inline.Stefano Sabatini2010-09-06
| | | | Originally committed as revision 25053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: if( -> if (.Stefano Sabatini2010-08-21
| | | | Originally committed as revision 24859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename av_fill_image_max_pixstep() to av_fill_image_max_pixsteps().Stefano Sabatini2010-08-20
| | | | | | | | | | The plural form is preferred as it is more consistent with the other functions: av_fill_image_linesizes() av_fill_image_pointers() and looks semantically more correct as it fills an array of elements. Originally committed as revision 24851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement inline function av_fill_image_max_pixstep() and use it forStefano Sabatini2010-08-18
| | | | | | factorizing code. Originally committed as revision 24827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_get_image_linesize() and use it inStefano Sabatini2010-08-12
| | | | | | | | ff_get_plane_bytewidth(). The new implementation is more generic, more compact and more correct. Originally committed as revision 24786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify av_check_image_size() log message.Stefano Sabatini2010-08-06
| | | | Originally committed as revision 24710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate avcodec_check_dimensions() in favor of the new functionStefano Sabatini2010-08-06
| | | | | | av_check_image_size() declared in libavcore/imgutils.h. Originally committed as revision 24709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename the av_fill_image_linesize() formal parameter linesize toStefano Sabatini2010-07-30
| | | | | | linesizes, for consistency with the function declaration. Originally committed as revision 24591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reimplement av_fill_image_pointers() using the information stored inStefano Sabatini2010-07-30
| | | | | | | | | the pixdescs. The new implementation is more compact, and does not need to be updated at each pixel format addition. Originally committed as revision 24590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_fill_image_linesizes() return a meaningful error core ratherStefano Sabatini2010-07-30
| | | | | | than -1. Originally committed as revision 24589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename av_fill_image_linesizes() internal variables max_plane_step andStefano Sabatini2010-07-30
| | | | | | | | | max_plane_step_comp by removing the "plane_" word, and add a comment for explaining what they represent. Increase readability. Originally committed as revision 24588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move fill_image_linesize() and fill_image_data_ptr() fromStefano Sabatini2010-07-29
libavcodec/imgconvert.c and make them public in libavcore/imgutils.h, with the names av_fill_image_linesizes() and av_fill_image_pointers(). Originally committed as revision 24583 to svn://svn.ffmpeg.org/ffmpeg/trunk