[FFmpeg-cvslog] avcodec/dpx: respect side data preference

Niklas Haas git at videolan.org
Fri Mar 8 09:06:54 EET 2024


ffmpeg | branch: master | Niklas Haas <git at haasn.dev> | Mon Feb 19 12:47:24 2024 +0100| [588c5c3d5115559037b563de4c120f8296e2b545] | committer: Anton Khirnov

avcodec/dpx: respect side data preference

If the time code side data is overridden by the packet level, we also
make sure not to update `p->metadata` to a mismatched timecode.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=588c5c3d5115559037b563de4c120f8296e2b545
---

 libavcodec/dpx.c | 28 +++++++++++++++-------------
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c
index 31e4a3f82c..80616d98a2 100644
--- a/libavcodec/dpx.c
+++ b/libavcodec/dpx.c
@@ -287,19 +287,21 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *p,
         tc = av_bswap32(read32(&buf, endian));
 
         if (i != 0xFFFFFFFF) {
-            AVFrameSideData *tcside =
-                av_frame_new_side_data(p, AV_FRAME_DATA_S12M_TIMECODE,
-                                       sizeof(uint32_t) * 4);
-            if (!tcside)
-                return AVERROR(ENOMEM);
-
-            tc_sd = (uint32_t*)tcside->data;
-            tc_sd[0] = 1;
-            tc_sd[1] = tc;
-
-            av_timecode_make_smpte_tc_string2(tcbuf, avctx->framerate,
-                                              tc_sd[1], 0, 0);
-            av_dict_set(&p->metadata, "timecode", tcbuf, 0);
+            AVFrameSideData *tcside;
+            ret = ff_frame_new_side_data(avctx, p, AV_FRAME_DATA_S12M_TIMECODE,
+                                         sizeof(uint32_t) * 4, &tcside);
+            if (ret < 0)
+                return ret;
+
+            if (tcside) {
+                tc_sd = (uint32_t*)tcside->data;
+                tc_sd[0] = 1;
+                tc_sd[1] = tc;
+
+                av_timecode_make_smpte_tc_string2(tcbuf, avctx->framerate,
+                                                  tc_sd[1], 0, 0);
+                av_dict_set(&p->metadata, "timecode", tcbuf, 0);
+            }
         }
     }
 



More information about the ffmpeg-cvslog mailing list