diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-09 11:28:46 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:22 +0200 |
commit | ddce8953a5056800ec795df2dfd84fc17a11b5fc (patch) | |
tree | a5bd29bb71950114ae9504e5f581bb542d5eca37 /libavcodec/intelh263dec.c | |
parent | 167f3b8de71657dec0948f0a859259f35b318fac (diff) | |
download | ffmpeg-ddce8953a5056800ec795df2dfd84fc17a11b5fc.tar.gz |
h263: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/intelh263dec.c')
-rw-r--r-- | libavcodec/intelh263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/intelh263dec.c b/libavcodec/intelh263dec.c index bedfabff02..250ac6945c 100644 --- a/libavcodec/intelh263dec.c +++ b/libavcodec/intelh263dec.c @@ -65,8 +65,8 @@ int ff_intel_h263_decode_picture_header(MpegEncContext *s) s->pb_frame = get_bits1(&s->gb); if (format < 6) { - s->width = h263_format[format][0]; - s->height = h263_format[format][1]; + s->width = ff_h263_format[format][0]; + s->height = ff_h263_format[format][1]; s->avctx->sample_aspect_ratio.num = 12; s->avctx->sample_aspect_ratio.den = 11; } else { |