[FFmpeg-cvslog] mpegvideo: move REBASE_PICTURE where it is used
Vittorio Giovara
git at videolan.org
Mon Dec 15 21:34:02 CET 2014
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Tue Dec 9 16:47:53 2014 +0000| [d75190aa93206c02cb4f18a66d2c927d6a0198e1] | committer: Vittorio Giovara
mpegvideo: move REBASE_PICTURE where it is used
Drop an unused #undef from h264 decoder.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d75190aa93206c02cb4f18a66d2c927d6a0198e1
---
libavcodec/h264_slice.c | 2 +-
libavcodec/mpegvideo.c | 5 +++++
libavcodec/mpegvideo.h | 5 -----
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c
index 42d0c95..9169ff4 100644
--- a/libavcodec/h264_slice.c
+++ b/libavcodec/h264_slice.c
@@ -422,7 +422,7 @@ static void clone_tables(H264Context *dst, H264Context *src, int i)
}
#define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
-#undef REBASE_PICTURE
+
#define REBASE_PICTURE(pic, new_ctx, old_ctx) \
((pic && pic >= old_ctx->DPB && \
pic < old_ctx->DPB + H264_MAX_PICTURE_COUNT) ? \
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index e6a48cd..44cf8c5 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -961,6 +961,11 @@ do {\
UPDATE_PICTURE(last_picture);
UPDATE_PICTURE(next_picture);
+#define REBASE_PICTURE(pic, new_ctx, old_ctx) \
+ ((pic && pic >= old_ctx->picture && \
+ pic < old_ctx->picture + MAX_PICTURE_COUNT) ? \
+ &new_ctx->picture[pic - old_ctx->picture] : NULL)
+
s->last_picture_ptr = REBASE_PICTURE(s1->last_picture_ptr, s, s1);
s->current_picture_ptr = REBASE_PICTURE(s1->current_picture_ptr, s, s1);
s->next_picture_ptr = REBASE_PICTURE(s1->next_picture_ptr, s, s1);
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index f1047a0..ac077b3 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -659,11 +659,6 @@ typedef struct MpegEncContext {
AVFrame *tmp_frames[MAX_B_FRAMES + 2];
} MpegEncContext;
-#define REBASE_PICTURE(pic, new_ctx, old_ctx) \
- ((pic && pic >= old_ctx->picture && \
- pic < old_ctx->picture + MAX_PICTURE_COUNT) ? \
- &new_ctx->picture[pic - old_ctx->picture] : NULL)
-
/* mpegvideo_enc common options */
#define FF_MPV_FLAG_SKIP_RD 0x0001
#define FF_MPV_FLAG_STRICT_GOP 0x0002
More information about the ffmpeg-cvslog
mailing list