diff options
Diffstat (limited to 'libavcodec/error_resilience.h')
-rw-r--r-- | libavcodec/error_resilience.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/libavcodec/error_resilience.h b/libavcodec/error_resilience.h index 5171094a54..9d227e87a1 100644 --- a/libavcodec/error_resilience.h +++ b/libavcodec/error_resilience.h @@ -1,19 +1,19 @@ /* * - * This file is part of Libav. + * This file is part of FFmpeg. * - * Libav is free software; you can redistribute it and/or + * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * - * Libav is distributed in the hope that it will be useful, + * FFmpeg is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with Libav; if not, write to the Free Software + * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ @@ -42,7 +42,7 @@ typedef struct ERPicture { AVFrame *f; ThreadFrame *tf; - // it's the caller responsability to allocate these buffers + // it's the caller's responsibility to allocate these buffers int16_t (*motion_val[2])[2]; int8_t *ref_index[2]; @@ -72,6 +72,9 @@ typedef struct ERContext { ERPicture last_pic; ERPicture next_pic; + AVBufferRef *ref_index_buf[2]; + AVBufferRef *motion_val_buf[2]; + uint16_t pp_time; uint16_t pb_time; int quarter_sample; |