comparison msmpeg4.c @ 10758:f108c5d10793 libavcodec

Remove unused function msmpeg4_memsetw(). It is an exact duplicate of memsetw() in h263.c.
author diego
date Thu, 31 Dec 2009 01:27:47 +0000
parents 74e8feb81c6d
children 4605bd2fdb7f
comparison
equal deleted inserted replaced
10757:9de8bd6b4ca4 10758:f108c5d10793
1584 { 1584 {
1585 av_log(s->avctx, AV_LOG_ERROR, "I frame too long, ignoring ext header\n"); 1585 av_log(s->avctx, AV_LOG_ERROR, "I frame too long, ignoring ext header\n");
1586 } 1586 }
1587 1587
1588 return 0; 1588 return 0;
1589 }
1590
1591 static inline void msmpeg4_memsetw(short *tab, int val, int n)
1592 {
1593 int i;
1594 for(i=0;i<n;i++)
1595 tab[i] = val;
1596 } 1589 }
1597 1590
1598 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr) 1591 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr)
1599 { 1592 {
1600 int level, pred; 1593 int level, pred;