[FFmpeg-cvslog] j2kenc: update function name.
Michael Niedermayer
git at videolan.org
Tue Sep 27 19:32:13 CEST 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Sep 27 18:59:37 2011 +0200| [c153c003675fae257c0c6aab58a2084499def724] | committer: Michael Niedermayer
j2kenc: update function name.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c153c003675fae257c0c6aab58a2084499def724
---
libavcodec/j2kenc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/j2kenc.c b/libavcodec/j2kenc.c
index 123b796..a56e246 100644
--- a/libavcodec/j2kenc.c
+++ b/libavcodec/j2kenc.c
@@ -820,7 +820,7 @@ static int encode_tile(J2kEncoderContext *s, J2kTile *tile, int tileno)
J2kComponent *comp = s->tile[tileno].comp + compno;
av_log(s->avctx, AV_LOG_DEBUG,"dwt\n");
- if (ret = ff_dwt_encode(&comp->dwt, comp->data))
+ if (ret = ff_j2k_dwt_encode(&comp->dwt, comp->data))
return ret;
av_log(s->avctx, AV_LOG_DEBUG,"after dwt -> tier1\n");
More information about the ffmpeg-cvslog
mailing list