diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-28 10:38:28 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-28 16:31:05 +0100 |
commit | 59dfc2b0c89f35c5805abee72c2ae4ee7af8e98d (patch) | |
tree | e7e9c5eda81a852f8e1990e2e51fa4ae01cda3d6 /libavcodec/h263.h | |
parent | c3418201307c6b7a2b3e3be10f33ab4a20a32c3b (diff) | |
download | ffmpeg-59dfc2b0c89f35c5805abee72c2ae4ee7af8e98d.tar.gz |
h263: Drop commented-out code and a related otherwise unused function
Diffstat (limited to 'libavcodec/h263.h')
-rw-r--r-- | libavcodec/h263.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/h263.h b/libavcodec/h263.h index c5e30205bf..1e49100485 100644 --- a/libavcodec/h263.h +++ b/libavcodec/h263.h @@ -211,11 +211,4 @@ static inline int get_p_cbp(MpegEncContext * s, return cbp; } -static inline void memsetw(short *tab, int val, int n) -{ - int i; - for(i=0;i<n;i++) - tab[i] = val; -} - #endif /* AVCODEC_H263_H */ |