summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2008-10-02 00:27:09 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2008-10-02 00:27:09 +0000
commit8d2fc163ce2b3200a454eea433a9476043956cac (patch)
treecdffa79fbfc059c4a592976975fc12e4c847da3c /libavcodec/h264.c
parentc8562a6fda3c45612f0da168b03f268591c16c1f (diff)
Rename copy_picture to ff_copy_picture.
Originally committed as revision 15508 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index b9d63543b3..6542188eb8 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -3921,11 +3921,11 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
if(h->slice_type_nos!=FF_I_TYPE){
s->last_picture_ptr= &h->ref_list[0][0];
- copy_picture(&s->last_picture, s->last_picture_ptr);
+ ff_copy_picture(&s->last_picture, s->last_picture_ptr);
}
if(h->slice_type_nos==FF_B_TYPE){
s->next_picture_ptr= &h->ref_list[1][0];
- copy_picture(&s->next_picture, s->next_picture_ptr);
+ ff_copy_picture(&s->next_picture, s->next_picture_ptr);
}
if( (h->pps.weighted_pred && h->slice_type_nos == FF_P_TYPE )