Re: [FFmpeg-devel] [PATCH v2 04/18] lavc/h264dec.h: Move MMCOOpcode to h264_parse.h

2022-01-26 Thread Anton Khirnov
Quoting Andreas Rheinhardt (2022-01-24 21:09:17) > From: Anton Khirnov > > Both parser and decoder use these, so h264_parse is the proper place for ^ it -- Anton Khirnov ___ ffmpeg-devel

[FFmpeg-devel] [PATCH v2 04/18] lavc/h264dec.h: Move MMCOOpcode to h264_parse.h

2022-01-24 Thread Andreas Rheinhardt
From: Anton Khirnov Both parser and decoder use these, so h264_parse is the proper place for them. --- libavcodec/h264_parse.h | 13 + libavcodec/h264dec.h| 13 - 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/libavcodec/h264_parse.h b/libavcodec/h26