diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-12-14 11:58:21 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-12-15 11:46:30 +0100 |
commit | 96d815fc0c71d08b9c4bd65aea021bd0760f2287 (patch) | |
tree | 5604c1d6956389eb5ca732febb983960cfd50792 /libavcodec/options.c | |
parent | a8b3f0c5cf548f654e30c981988bb71981a3f8d3 (diff) | |
download | ffmpeg-96d815fc0c71d08b9c4bd65aea021bd0760f2287.tar.gz |
lavc: add pkt_size field to AVFrame
Diffstat (limited to 'libavcodec/options.c')
-rw-r--r-- | libavcodec/options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/options.c b/libavcodec/options.c index 0da0db4806..a922365a17 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -248,6 +248,7 @@ const AVClass *avcodec_get_class(void) static const AVOption frame_options[]={ {"best_effort_timestamp", "", FOFFSET(best_effort_timestamp), AV_OPT_TYPE_INT64, {.i64 = AV_NOPTS_VALUE }, INT64_MIN, INT64_MAX, 0}, {"pkt_pos", "", FOFFSET(pkt_pos), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0}, +{"pkt_size", "", FOFFSET(pkt_size), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0}, {"sample_aspect_ratio", "", FOFFSET(sample_aspect_ratio), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, 0, INT_MAX, 0}, {"width", "", FOFFSET(width), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0}, {"height", "", FOFFSET(height), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0}, |