summaryrefslogtreecommitdiff
path: root/libavcodec/dpxenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-04-02 19:26:47 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-04-02 19:26:58 +0200
commitc4804feca2b81e9c482cc21c72ea8b942e4cca04 (patch)
tree1e9951b439b0932f16345eba1e2ca6792e7c9ac9 /libavcodec/dpxenc.c
parentba24c5a3d3ca4e2e67c0947df9a6360ccccf084c (diff)
dpx:fix typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dpxenc.c')
-rw-r--r--libavcodec/dpxenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dpxenc.c b/libavcodec/dpxenc.c
index 8612858984..1d637b4e81 100644
--- a/libavcodec/dpxenc.c
+++ b/libavcodec/dpxenc.c
@@ -149,7 +149,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size,
encode_rgb48_10bit(avctx, (AVPicture*)data, buf + HEADER_SIZE);
break;
default:
- av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n", bits_per_component);
+ av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n", s->bits_per_component);
return -1;
}