summaryrefslogtreecommitdiff
path: root/libavcodec/h263data.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/h263data.h')
-rw-r--r--libavcodec/h263data.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/libavcodec/h263data.h b/libavcodec/h263data.h
index cfa5146b5b..9b22b2dea4 100644
--- a/libavcodec/h263data.h
+++ b/libavcodec/h263data.h
@@ -177,7 +177,7 @@ const int8_t inter_run[102] = {
35, 36, 37, 38, 39, 40,
};
-static RLTable rl_inter = {
+RLTable rl_inter = {
102,
58,
inter_vlc,
@@ -313,4 +313,23 @@ const uint8_t ff_h263_loop_filter_strength[32]={
0, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 6, 7, 7, 7, 8, 8, 8, 9, 9, 9,10,10,10,11,11,11,12,12,12
};
+const AVRational ff_h263_pixel_aspect[16]={
+ {0, 1},
+ {1, 1},
+ {12, 11},
+ {10, 11},
+ {16, 11},
+ {40, 33},
+ {0, 1},
+ {0, 1},
+ {0, 1},
+ {0, 1},
+ {0, 1},
+ {0, 1},
+ {0, 1},
+ {0, 1},
+ {0, 1},
+ {0, 1},
+};
+
#endif /* AVCODEC_H263DATA_H */