summaryrefslogtreecommitdiff
path: root/libavcodec/libschroedinger.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-04-14 15:39:22 +0200
committerDiego Biurrun <diego@biurrun.de>2012-05-07 14:31:59 +0200
commitfdc918632f5c16cf377a2170cd2f101933fb15ff (patch)
treecfeb3e10faaf6da10b1d1705fa2f06b7e6310fe4 /libavcodec/libschroedinger.c
parent9cef0669c4e0e98cd6b5746e6de5b0da800f7edb (diff)
libschroedinger: Switch to function names more in line with Libav style.
Diffstat (limited to 'libavcodec/libschroedinger.c')
-rw-r--r--libavcodec/libschroedinger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libschroedinger.c b/libavcodec/libschroedinger.c
index fb0bfaa84d..2046761713 100644
--- a/libavcodec/libschroedinger.c
+++ b/libavcodec/libschroedinger.c
@@ -163,7 +163,7 @@ int ff_get_schro_frame_format (SchroChromaFormat schro_pix_fmt,
return -1;
}
-static void FreeSchroFrame(SchroFrame *frame, void *priv)
+static void free_schro_frame(SchroFrame *frame, void *priv)
{
AVPicture *p_pic = priv;
@@ -195,7 +195,7 @@ SchroFrame *ff_create_schro_frame(AVCodecContext *avccontext,
p_frame->format = schro_frame_fmt;
p_frame->width = y_width;
p_frame->height = y_height;
- schro_frame_set_free_callback(p_frame, FreeSchroFrame, (void *)p_pic);
+ schro_frame_set_free_callback(p_frame, free_schro_frame, (void *)p_pic);
for (i = 0; i < 3; ++i) {
p_frame->components[i].width = i ? uv_width : y_width;