diff options
author | Jeff Downs <heydowns@borg.com> | 2007-10-04 06:53:12 +0000 |
---|---|---|
committer | Andreas Ă–man <andreas@lonelycoder.com> | 2007-10-04 06:53:12 +0000 |
commit | 24231e4cf6a974cb71fcb3acaecf05f712535c36 (patch) | |
tree | 8d16b5fb4eb4d1178adc9f14cb3f2b76612b7b50 /libavcodec | |
parent | 3a22d7fa1f55b91f4d1a41d8b54423226ef43387 (diff) | |
download | ffmpeg-24231e4cf6a974cb71fcb3acaecf05f712535c36.tar.gz |
Reorganize long reference management to minimize code duplication in upcoming PAFF implementation.
patch by Jeff Downs, heydowns a borg d com
original thread:
Subject: [FFmpeg-devel] [PATCH] Implement PAFF in H.264
Date: 18/09/07 20:30
Originally committed as revision 10665 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 8487c86af7..0a11487707 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -3224,6 +3224,17 @@ static Picture * remove_short(H264Context *h, int frame_num){ } /** + * Remove a picture from the long term reference list by its index in + * that list. This does no checking on the provided index; it is assumed + * to be valid. The removed entry is set to NULL. Other entries are unaffected. + * @param i index into h->long_ref of picture to remove. + */ +static void remove_long_at_index(H264Context *h, int i){ + h->long_ref[i]= NULL; + h->long_ref_count--; +} + +/** * * @return the removed picture or NULL if an error occurs */ @@ -3231,8 +3242,8 @@ static Picture * remove_long(H264Context *h, int i){ Picture *pic; pic= h->long_ref[i]; - h->long_ref[i]= NULL; - if(pic) h->long_ref_count--; + if (pic) + remove_long_at_index(h, i); return pic; } |