diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-15 17:29:16 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-08 07:41:14 +0100 |
commit | ddcca4ba074aa537c3059c76d69eb4ad6316bfe9 (patch) | |
tree | 8a96716475d71ea776e039751260f90aec67c2a9 /libavcodec/h264.c | |
parent | e7bbfc4242ae8b818ae41be752b9d288ff2801f0 (diff) | |
download | ffmpeg-ddcca4ba074aa537c3059c76d69eb4ad6316bfe9.tar.gz |
lavc: stop setting AVFrame.motion_subsample_log2
It is not used inside lavc anywhere and now it makes no sense to export
it.
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 498f611a97..f2f37c865e 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -360,7 +360,6 @@ static int alloc_picture(H264Context *h, Picture *pic) pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4; pic->ref_index[i] = pic->ref_index_buf[i]->data; } - pic->f.motion_subsample_log2 = 2; return 0; fail: |