[FFmpeg-cvslog] ffprobe: support skip_samples packet side data information

James Almer git at videolan.org
Sun Mar 26 04:43:41 EEST 2017


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sat Mar 25 13:50:51 2017 -0300| [a044f8df6aff511367ccd075614be00190c3c968] | committer: James Almer

ffprobe: support skip_samples packet side data information

Reviewed-by: Rostislav Pehlivanov <atomnuker at gmail.com>
Signed-off-by: James Almer <jamrial at gmail.com>

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

 ffprobe.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/ffprobe.c b/ffprobe.c
index 4a7ec0a..ba27bce 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -1806,6 +1806,11 @@ static void print_pkt_side_data(WriterContext *w,
             print_int("yaw", (double) spherical->yaw / (1 << 16));
             print_int("pitch", (double) spherical->pitch / (1 << 16));
             print_int("roll", (double) spherical->roll / (1 << 16));
+        } else if (sd->type == AV_PKT_DATA_SKIP_SAMPLES && sd->size == 10) {
+            print_int("skip_samples",    AV_RL32(sd->data));
+            print_int("discard_padding", AV_RL32(sd->data + 4));
+            print_int("skip_reason",     AV_RL8(sd->data + 8));
+            print_int("discard_reason",  AV_RL8(sd->data + 9));
         }
         writer_print_section_footer(w);
     }



More information about the ffmpeg-cvslog mailing list