[FFmpeg-cvslog] avcodec/mpeg12dec: don't use sizeof(AVStereo3D)
James Almer
git at videolan.org
Tue Jun 25 06:01:15 EEST 2024
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sat Jun 22 22:44:52 2024 -0300| [7c0ebb095d98ba4b08b9014ccb4c44816fdb81ea] | committer: James Almer
avcodec/mpeg12dec: don't use sizeof(AVStereo3D)
It's not part of the libavutil ABI.
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7c0ebb095d98ba4b08b9014ccb4c44816fdb81ea
---
libavcodec/mpeg12dec.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/libavcodec/mpeg12dec.c b/libavcodec/mpeg12dec.c
index 7485b7c65f..09befdcc64 100644
--- a/libavcodec/mpeg12dec.c
+++ b/libavcodec/mpeg12dec.c
@@ -73,7 +73,7 @@ typedef struct Mpeg1Context {
MpegEncContext mpeg_enc_ctx;
int repeat_field; /* true if we must repeat the field */
AVPanScan pan_scan; /* some temporary storage for the panscan */
- AVStereo3D stereo3d;
+ enum AVStereo3DType stereo3d_type;
int has_stereo3d;
AVBufferRef *a53_buf_ref;
enum Mpeg2ClosedCaptionsFormat cc_format;
@@ -1319,7 +1319,7 @@ static int mpeg_field_start(Mpeg1Context *s1, const uint8_t *buf, int buf_size)
if (!stereo)
return AVERROR(ENOMEM);
- *stereo = s1->stereo3d;
+ stereo->type = s1->stereo3d_type;
s1->has_stereo3d = 0;
}
@@ -2118,16 +2118,16 @@ static void mpeg_decode_user_data(AVCodecContext *avctx,
switch (S3D_video_format_type) {
case 0x03:
- s1->stereo3d.type = AV_STEREO3D_SIDEBYSIDE;
+ s1->stereo3d_type = AV_STEREO3D_SIDEBYSIDE;
break;
case 0x04:
- s1->stereo3d.type = AV_STEREO3D_TOPBOTTOM;
+ s1->stereo3d_type = AV_STEREO3D_TOPBOTTOM;
break;
case 0x08:
- s1->stereo3d.type = AV_STEREO3D_2D;
+ s1->stereo3d_type = AV_STEREO3D_2D;
break;
case 0x23:
- s1->stereo3d.type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
+ s1->stereo3d_type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
break;
}
}
More information about the ffmpeg-cvslog
mailing list