summaryrefslogtreecommitdiff
path: root/libavcodec/huffyuv.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-03-06 23:20:53 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-03-06 23:20:53 +0000
commit40c5fa2689105b0c4913e50b3bfd131e42afd592 (patch)
treed267244674d4b75bb7ce3288f24160aa60b540a5 /libavcodec/huffyuv.c
parent6867a90b41c81f15649606e9b45fa138ef7ab72e (diff)
AVOption removial patch from (James A. Morrison >ja2morri csclub.uwaterloo ca>)
with minor changes from me Originally committed as revision 4019 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r--libavcodec/huffyuv.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c
index 42e89712af..5b496c512f 100644
--- a/libavcodec/huffyuv.c
+++ b/libavcodec/huffyuv.c
@@ -1219,20 +1219,6 @@ static int encode_end(AVCodecContext *avctx)
return 0;
}
-static const AVOption huffyuv_options[] =
-{
- AVOPTION_CODEC_INT("prediction_method", "prediction_method", prediction_method, 0, 2, 0),
- AVOPTION_END()
-};
-
-static const AVOption ffvhuff_options[] =
-{
- AVOPTION_CODEC_INT("prediction_method", "prediction_method", prediction_method, 0, 2, 0),
- AVOPTION_CODEC_INT("context_model", "context_model", context_model, 0, 2, 0),
- AVOPTION_END()
-};
-
-
AVCodec huffyuv_decoder = {
"huffyuv",
CODEC_TYPE_VIDEO,
@@ -1269,7 +1255,6 @@ AVCodec huffyuv_encoder = {
encode_init,
encode_frame,
encode_end,
- .options = huffyuv_options,
};
AVCodec ffvhuff_encoder = {
@@ -1280,7 +1265,6 @@ AVCodec ffvhuff_encoder = {
encode_init,
encode_frame,
encode_end,
- .options = ffvhuff_options,
};
#endif //CONFIG_ENCODERS