You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
2.3KB

  1. /*
  2. * MPEG4 decoder / encoder common code.
  3. * Copyright (c) 2000,2001 Fabrice Bellard
  4. * Copyright (c) 2002-2010 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "mpegvideo.h"
  23. #include "mpeg4video.h"
  24. #include "mpeg4data.h"
  25. uint8_t ff_mpeg4_static_rl_table_store[3][2][2*MAX_RUN + MAX_LEVEL + 3];
  26. int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s){
  27. switch(s->pict_type){
  28. case FF_I_TYPE:
  29. return 16;
  30. case FF_P_TYPE:
  31. case FF_S_TYPE:
  32. return s->f_code+15;
  33. case FF_B_TYPE:
  34. return FFMAX3(s->f_code, s->b_code, 2) + 15;
  35. default:
  36. return -1;
  37. }
  38. }
  39. void ff_mpeg4_clean_buffers(MpegEncContext *s)
  40. {
  41. int c_wrap, c_xy, l_wrap, l_xy;
  42. l_wrap= s->b8_stride;
  43. l_xy= (2*s->mb_y-1)*l_wrap + s->mb_x*2 - 1;
  44. c_wrap= s->mb_stride;
  45. c_xy= (s->mb_y-1)*c_wrap + s->mb_x - 1;
  46. #if 0
  47. /* clean DC */
  48. memsetw(s->dc_val[0] + l_xy, 1024, l_wrap*2+1);
  49. memsetw(s->dc_val[1] + c_xy, 1024, c_wrap+1);
  50. memsetw(s->dc_val[2] + c_xy, 1024, c_wrap+1);
  51. #endif
  52. /* clean AC */
  53. memset(s->ac_val[0] + l_xy, 0, (l_wrap*2+1)*16*sizeof(int16_t));
  54. memset(s->ac_val[1] + c_xy, 0, (c_wrap +1)*16*sizeof(int16_t));
  55. memset(s->ac_val[2] + c_xy, 0, (c_wrap +1)*16*sizeof(int16_t));
  56. /* clean MV */
  57. // we can't clear the MVs as they might be needed by a b frame
  58. // memset(s->motion_val + l_xy, 0, (l_wrap*2+1)*2*sizeof(int16_t));
  59. // memset(s->motion_val, 0, 2*sizeof(int16_t)*(2 + s->mb_width*2)*(2 + s->mb_height*2));
  60. s->last_mv[0][0][0]=
  61. s->last_mv[0][0][1]=
  62. s->last_mv[1][0][0]=
  63. s->last_mv[1][0][1]= 0;
  64. }