summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-10-28 10:11:22 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2015-10-28 10:12:15 +0100
commit057ce755b9370629bcc840c998d5344099e46183 (patch)
tree4911eb0e111a5893fe9da064215564b0fe6a0c32 /ffprobe.c
parenta0e390e8ff33392ff7ab51d9f4c830da843ddff3 (diff)
ffprobe: Remove abort()
Found-by: Ganesh Ajjanagadde and wm4 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 02e2c48a9a..92c7fa6baf 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -1890,7 +1890,6 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream,
print_str("side_data_type", name ? name : "unknown");
print_int("side_data_size", sd->size);
if (sd->type == AV_FRAME_DATA_DISPLAYMATRIX && sd->size >= 9*4) {
- abort();
writer_print_integers(w, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1);
print_int("rotation", av_display_rotation_get((int32_t *)sd->data));
}