From 502a6ea123cf159194d3ba6e46c98382b72b37b1 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Fri, 20 Jun 2025 12:46:43 +0200 Subject: [PATCH] avcodec/mpegvideo: Move SLICE_* defs to h263dec.h, h261dec.c Signed-off-by: Andreas Rheinhardt --- libavcodec/h261dec.c | 4 ++++ libavcodec/h263dec.h | 4 ++++ libavcodec/mpegvideo.h | 5 ----- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c index e47bc00a71..32d41903e7 100644 --- a/libavcodec/h261dec.c +++ b/libavcodec/h261dec.c @@ -37,6 +37,10 @@ #include "mpegvideodec.h" #include "h261.h" +#define SLICE_OK 0 +#define SLICE_ERROR -1 +#define SLICE_END -2 ///