diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-08-21 18:14:12 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2015-08-22 08:36:20 -0700 |
commit | f0af25ae119d2aaa62d3add00d9051a133f7e71a (patch) | |
tree | b1acadc3d96023c4bae4888ccb14cef6d13574d7 /libavcodec/ffv1.c | |
parent | ee4cc806537de4af89346a33f57fb4467b06ce92 (diff) | |
download | ffmpeg-f0af25ae119d2aaa62d3add00d9051a133f7e71a.tar.gz |
ffv1: Add missing ff_ prefixes
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r-- | libavcodec/ffv1.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 7a38bf9212..6bcdf7c0ad 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -39,7 +39,7 @@ #include "mathops.h" #include "ffv1.h" -av_cold int ffv1_common_init(AVCodecContext *avctx) +av_cold int ff_ffv1_common_init(AVCodecContext *avctx) { FFV1Context *s = avctx->priv_data; @@ -64,7 +64,7 @@ av_cold int ffv1_common_init(AVCodecContext *avctx) return 0; } -av_cold int ffv1_init_slice_state(FFV1Context *f, FFV1Context *fs) +av_cold int ff_ffv1_init_slice_state(FFV1Context *f, FFV1Context *fs) { int j; @@ -98,18 +98,18 @@ av_cold int ffv1_init_slice_state(FFV1Context *f, FFV1Context *fs) return 0; } -av_cold int ffv1_init_slices_state(FFV1Context *f) +av_cold int ff_ffv1_init_slices_state(FFV1Context *f) { int i, ret; for (i = 0; i < f->slice_count; i++) { FFV1Context *fs = f->slice_context[i]; - if ((ret = ffv1_init_slice_state(f, fs)) < 0) + if ((ret = ff_ffv1_init_slice_state(f, fs)) < 0) return AVERROR(ENOMEM); } return 0; } -av_cold int ffv1_init_slice_contexts(FFV1Context *f) +av_cold int ff_ffv1_init_slice_contexts(FFV1Context *f) { int i; @@ -154,7 +154,7 @@ memfail: return AVERROR(ENOMEM); } -int ffv1_allocate_initial_states(FFV1Context *f) +int ff_ffv1_allocate_initial_states(FFV1Context *f) { int i; @@ -169,7 +169,7 @@ int ffv1_allocate_initial_states(FFV1Context *f) return 0; } -void ffv1_clear_slice_state(FFV1Context *f, FFV1Context *fs) +void ff_ffv1_clear_slice_state(FFV1Context *f, FFV1Context *fs) { int i, j; @@ -197,7 +197,7 @@ void ffv1_clear_slice_state(FFV1Context *f, FFV1Context *fs) } -av_cold int ffv1_close(AVCodecContext *avctx) +av_cold int ff_ffv1_close(AVCodecContext *avctx) { FFV1Context *s = avctx->priv_data; int i, j; |