diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-07 23:41:42 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-07 23:41:42 +0000 |
commit | ce1cd1cba2d15b5b899235217fea3929a8f01892 (patch) | |
tree | 90107f426202d5aef1039122571129d0a710977b /libavfilter | |
parent | 267843844cf320b151962f90e72c4254bf4622a5 (diff) | |
download | ffmpeg-ce1cd1cba2d15b5b899235217fea3929a8f01892.tar.gz |
Rename read/write_line() to av_read/write_image_line().
The old names were not av_ prefixed, and they were causing linking
failure on many platforms. The new names are also more descriptive.
Patch by Stefano Sabatini.
Originally committed as revision 24101 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_pixdesctest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_pixdesctest.c b/libavfilter/vf_pixdesctest.c index 871be30cc7..33bb50f57f 100644 --- a/libavfilter/vf_pixdesctest.c +++ b/libavfilter/vf_pixdesctest.c @@ -90,13 +90,13 @@ static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir) int y1 = c == 1 || c == 2 ? y>>priv->pix_desc->log2_chroma_h : y; for (i = y1; i < y1 + h1; i++) { - read_line(priv->line, + av_read_image_line(priv->line, inpic->data, inpic->linesize, priv->pix_desc, 0, i, c, w1, 0); - write_line(priv->line, + av_write_image_line(priv->line, outpic->data, outpic->linesize, priv->pix_desc, |