diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2013-02-24 13:15:12 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2013-02-25 15:15:21 -0500 |
commit | 699d02b839ff8001bb68d975a15e9622cd64574b (patch) | |
tree | 2d1f49974f84ae848f1189a23522ae771f6460ae /libavcodec/libschroedinger.h | |
parent | 09031b4639667273354d6bcd1705d9f24fc9bdd4 (diff) | |
download | ffmpeg-699d02b839ff8001bb68d975a15e9622cd64574b.tar.gz |
libschroedinger: cosmetics: rename variable avccontext to avctx
This is consistent with the rest of libavcodec.
Diffstat (limited to 'libavcodec/libschroedinger.h')
-rw-r--r-- | libavcodec/libschroedinger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libschroedinger.h b/libavcodec/libschroedinger.h index bf179d2778..5481f92ce0 100644 --- a/libavcodec/libschroedinger.h +++ b/libavcodec/libschroedinger.h @@ -114,7 +114,7 @@ static const struct { * Returns the video format preset matching the input video dimensions and * time base. */ -SchroVideoFormatEnum ff_get_schro_video_format_preset (AVCodecContext *avccontext); +SchroVideoFormatEnum ff_get_schro_video_format_preset (AVCodecContext *avctx); /** * Sets the Schroedinger frame format corresponding to the Schro chroma format @@ -127,7 +127,7 @@ int ff_get_schro_frame_format(SchroChromaFormat schro_chroma_fmt, * Create a Schro frame based on the dimensions and frame format * passed. Returns a pointer to a frame on success, NULL on failure. */ -SchroFrame *ff_create_schro_frame(AVCodecContext *avccontext, +SchroFrame *ff_create_schro_frame(AVCodecContext *avctx, SchroFrameFormat schro_frame_fmt); #endif /* AVCODEC_LIBSCHROEDINGER_H */ |