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.

377 lines
11KB

  1. /*
  2. * H263 decoder
  3. * Copyright (c) 2001 Gerard Lantau.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #include <stdlib.h>
  20. #include <stdio.h>
  21. #include <string.h>
  22. #include "dsputil.h"
  23. #include "avcodec.h"
  24. #include "mpegvideo.h"
  25. //#define DEBUG
  26. static int h263_decode_init(AVCodecContext *avctx)
  27. {
  28. MpegEncContext *s = avctx->priv_data;
  29. int i;
  30. s->avctx = avctx;
  31. s->out_format = FMT_H263;
  32. s->width = avctx->width;
  33. s->height = avctx->height;
  34. /* select sub codec */
  35. switch(avctx->codec->id) {
  36. case CODEC_ID_H263:
  37. s->gob_number = 0;
  38. s->first_gob_line = 0;
  39. break;
  40. case CODEC_ID_MPEG4:
  41. s->time_increment_bits = 4; /* default value for broken headers */
  42. s->h263_pred = 1;
  43. s->has_b_frames = 1; //default, might be overriden in the vol header during header parsing
  44. break;
  45. case CODEC_ID_MSMPEG4V1:
  46. s->h263_msmpeg4 = 1;
  47. s->h263_pred = 1;
  48. s->msmpeg4_version=1;
  49. break;
  50. case CODEC_ID_MSMPEG4V2:
  51. s->h263_msmpeg4 = 1;
  52. s->h263_pred = 1;
  53. s->msmpeg4_version=2;
  54. break;
  55. case CODEC_ID_MSMPEG4V3:
  56. s->h263_msmpeg4 = 1;
  57. s->h263_pred = 1;
  58. s->msmpeg4_version=3;
  59. break;
  60. case CODEC_ID_WMV1:
  61. s->h263_msmpeg4 = 1;
  62. s->h263_pred = 1;
  63. s->msmpeg4_version=4;
  64. break;
  65. case CODEC_ID_H263I:
  66. s->h263_intel = 1;
  67. break;
  68. default:
  69. return -1;
  70. }
  71. /* for h263, we allocate the images after having read the header */
  72. if (avctx->codec->id != CODEC_ID_H263 && avctx->codec->id != CODEC_ID_MPEG4)
  73. if (MPV_common_init(s) < 0)
  74. return -1;
  75. /* XXX: suppress this matrix init, only needed because using mpeg1
  76. dequantize in mmx case */
  77. for(i=0;i<64;i++)
  78. s->non_intra_matrix[i] = default_non_intra_matrix[i];
  79. if (s->h263_msmpeg4)
  80. msmpeg4_decode_init_vlc(s);
  81. else
  82. h263_decode_init_vlc(s);
  83. return 0;
  84. }
  85. static int h263_decode_end(AVCodecContext *avctx)
  86. {
  87. MpegEncContext *s = avctx->priv_data;
  88. MPV_common_end(s);
  89. return 0;
  90. }
  91. static int h263_decode_frame(AVCodecContext *avctx,
  92. void *data, int *data_size,
  93. UINT8 *buf, int buf_size)
  94. {
  95. MpegEncContext *s = avctx->priv_data;
  96. int ret;
  97. AVPicture *pict = data;
  98. #ifdef DEBUG
  99. printf("*****frame %d size=%d\n", avctx->frame_number, buf_size);
  100. printf("bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]);
  101. #endif
  102. /* no supplementary picture */
  103. if (buf_size == 0) {
  104. *data_size = 0;
  105. return 0;
  106. }
  107. if(s->bitstream_buffer_size) //divx 5.01+ frame reorder
  108. init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size);
  109. else
  110. init_get_bits(&s->gb, buf, buf_size);
  111. /* let's go :-) */
  112. if (s->h263_msmpeg4) {
  113. ret = msmpeg4_decode_picture_header(s);
  114. } else if (s->h263_pred) {
  115. ret = mpeg4_decode_picture_header(s);
  116. s->has_b_frames= !s->low_delay;
  117. } else if (s->h263_intel) {
  118. ret = intel_h263_decode_picture_header(s);
  119. } else {
  120. ret = h263_decode_picture_header(s);
  121. }
  122. /* After H263 & mpeg4 header decode we have the height, width,*/
  123. /* and other parameters. So then we could init the picture */
  124. /* FIXME: By the way H263 decoder is evolving it should have */
  125. /* an H263EncContext */
  126. if (!s->context_initialized) {
  127. avctx->width = s->width;
  128. avctx->height = s->height;
  129. avctx->aspect_ratio_info= s->aspect_ratio_info;
  130. if (MPV_common_init(s) < 0)
  131. return -1;
  132. } else if (s->width != avctx->width || s->height != avctx->height) {
  133. /* H.263 could change picture size any time */
  134. MPV_common_end(s);
  135. if (MPV_common_init(s) < 0)
  136. return -1;
  137. }
  138. if(ret==FRAME_SKIPED) return 0;
  139. if (ret < 0)
  140. return -1;
  141. /* skip b frames if we dont have reference frames */
  142. if(s->num_available_buffers<2 && s->pict_type==B_TYPE) return 0;
  143. MPV_frame_start(s);
  144. #ifdef DEBUG
  145. printf("qscale=%d\n", s->qscale);
  146. #endif
  147. /* decode each macroblock */
  148. s->block_wrap[0]=
  149. s->block_wrap[1]=
  150. s->block_wrap[2]=
  151. s->block_wrap[3]= s->mb_width*2 + 2;
  152. s->block_wrap[4]=
  153. s->block_wrap[5]= s->mb_width + 2;
  154. for(s->mb_y=0; s->mb_y < s->mb_height; s->mb_y++) {
  155. /* Check for GOB headers on H.263 */
  156. /* FIXME: In the future H.263+ will have intra prediction */
  157. /* and we are gonna need another way to detect MPEG4 */
  158. if (s->mb_y && !s->h263_pred) {
  159. s->first_gob_line = h263_decode_gob_header(s);
  160. }
  161. s->block_index[0]= s->block_wrap[0]*(s->mb_y*2 + 1) - 1;
  162. s->block_index[1]= s->block_wrap[0]*(s->mb_y*2 + 1);
  163. s->block_index[2]= s->block_wrap[0]*(s->mb_y*2 + 2) - 1;
  164. s->block_index[3]= s->block_wrap[0]*(s->mb_y*2 + 2);
  165. s->block_index[4]= s->block_wrap[4]*(s->mb_y + 1) + s->block_wrap[0]*(s->mb_height*2 + 2);
  166. s->block_index[5]= s->block_wrap[4]*(s->mb_y + 1 + s->mb_height + 2) + s->block_wrap[0]*(s->mb_height*2 + 2);
  167. for(s->mb_x=0; s->mb_x < s->mb_width; s->mb_x++) {
  168. s->block_index[0]+=2;
  169. s->block_index[1]+=2;
  170. s->block_index[2]+=2;
  171. s->block_index[3]+=2;
  172. s->block_index[4]++;
  173. s->block_index[5]++;
  174. #ifdef DEBUG
  175. printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y);
  176. #endif
  177. //fprintf(stderr,"\nFrame: %d\tMB: %d",avctx->frame_number, (s->mb_y * s->mb_width) + s->mb_x);
  178. /* DCT & quantize */
  179. if (s->h263_msmpeg4) {
  180. msmpeg4_dc_scale(s);
  181. } else if (s->h263_pred) {
  182. h263_dc_scale(s);
  183. } else {
  184. /* default quantization values */
  185. s->y_dc_scale = 8;
  186. s->c_dc_scale = 8;
  187. }
  188. clear_blocks(s->block[0]);
  189. s->mv_dir = MV_DIR_FORWARD;
  190. s->mv_type = MV_TYPE_16X16;
  191. if (s->h263_msmpeg4) {
  192. if (msmpeg4_decode_mb(s, s->block) < 0) {
  193. fprintf(stderr,"\nError at MB: %d\n", (s->mb_y * s->mb_width) + s->mb_x);
  194. return -1;
  195. }
  196. } else {
  197. if (h263_decode_mb(s, s->block) < 0) {
  198. fprintf(stderr,"\nError at MB: %d\n", (s->mb_y * s->mb_width) + s->mb_x);
  199. return -1;
  200. }
  201. }
  202. MPV_decode_mb(s, s->block);
  203. }
  204. if ( avctx->draw_horiz_band
  205. && (s->num_available_buffers>=1 || (!s->has_b_frames)) ) {
  206. UINT8 *src_ptr[3];
  207. int y, h, offset;
  208. y = s->mb_y * 16;
  209. h = s->height - y;
  210. if (h > 16)
  211. h = 16;
  212. offset = y * s->linesize;
  213. if(s->pict_type==B_TYPE || (!s->has_b_frames)){
  214. src_ptr[0] = s->current_picture[0] + offset;
  215. src_ptr[1] = s->current_picture[1] + (offset >> 2);
  216. src_ptr[2] = s->current_picture[2] + (offset >> 2);
  217. } else {
  218. src_ptr[0] = s->last_picture[0] + offset;
  219. src_ptr[1] = s->last_picture[1] + (offset >> 2);
  220. src_ptr[2] = s->last_picture[2] + (offset >> 2);
  221. }
  222. avctx->draw_horiz_band(avctx, src_ptr, s->linesize,
  223. y, s->width, h);
  224. }
  225. }
  226. if (s->h263_msmpeg4 && s->msmpeg4_version<4 && s->pict_type==I_TYPE)
  227. if(msmpeg4_decode_ext_header(s, buf_size) < 0) return -1;
  228. /* divx 5.01+ bistream reorder stuff */
  229. if(s->h263_pred && s->bitstream_buffer_size==0){
  230. int current_pos= get_bits_count(&s->gb)/8;
  231. if( buf_size - current_pos > 5
  232. && buf_size - current_pos < BITSTREAM_BUFFER_SIZE){
  233. memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos);
  234. s->bitstream_buffer_size= buf_size - current_pos;
  235. }
  236. }else
  237. s->bitstream_buffer_size=0;
  238. MPV_frame_end(s);
  239. if(s->pict_type==B_TYPE || (!s->has_b_frames)){
  240. pict->data[0] = s->current_picture[0];
  241. pict->data[1] = s->current_picture[1];
  242. pict->data[2] = s->current_picture[2];
  243. } else {
  244. pict->data[0] = s->last_picture[0];
  245. pict->data[1] = s->last_picture[1];
  246. pict->data[2] = s->last_picture[2];
  247. }
  248. pict->linesize[0] = s->linesize;
  249. pict->linesize[1] = s->linesize / 2;
  250. pict->linesize[2] = s->linesize / 2;
  251. avctx->quality = s->qscale;
  252. /* Return the Picture timestamp as the frame number */
  253. /* we substract 1 because it is added on utils.c */
  254. avctx->frame_number = s->picture_number - 1;
  255. /* dont output the last pic after seeking
  256. note we allready added +1 for the current pix in MPV_frame_end(s) */
  257. if(s->num_available_buffers>=2 || (!s->has_b_frames))
  258. *data_size = sizeof(AVPicture);
  259. return buf_size;
  260. }
  261. AVCodec mpeg4_decoder = {
  262. "mpeg4",
  263. CODEC_TYPE_VIDEO,
  264. CODEC_ID_MPEG4,
  265. sizeof(MpegEncContext),
  266. h263_decode_init,
  267. NULL,
  268. h263_decode_end,
  269. h263_decode_frame,
  270. CODEC_CAP_DRAW_HORIZ_BAND,
  271. };
  272. AVCodec h263_decoder = {
  273. "h263",
  274. CODEC_TYPE_VIDEO,
  275. CODEC_ID_H263,
  276. sizeof(MpegEncContext),
  277. h263_decode_init,
  278. NULL,
  279. h263_decode_end,
  280. h263_decode_frame,
  281. CODEC_CAP_DRAW_HORIZ_BAND,
  282. };
  283. AVCodec msmpeg4v1_decoder = {
  284. "msmpeg4v1",
  285. CODEC_TYPE_VIDEO,
  286. CODEC_ID_MSMPEG4V1,
  287. sizeof(MpegEncContext),
  288. h263_decode_init,
  289. NULL,
  290. h263_decode_end,
  291. h263_decode_frame,
  292. CODEC_CAP_DRAW_HORIZ_BAND,
  293. };
  294. AVCodec msmpeg4v2_decoder = {
  295. "msmpeg4v2",
  296. CODEC_TYPE_VIDEO,
  297. CODEC_ID_MSMPEG4V2,
  298. sizeof(MpegEncContext),
  299. h263_decode_init,
  300. NULL,
  301. h263_decode_end,
  302. h263_decode_frame,
  303. CODEC_CAP_DRAW_HORIZ_BAND,
  304. };
  305. AVCodec msmpeg4v3_decoder = {
  306. "msmpeg4",
  307. CODEC_TYPE_VIDEO,
  308. CODEC_ID_MSMPEG4V3,
  309. sizeof(MpegEncContext),
  310. h263_decode_init,
  311. NULL,
  312. h263_decode_end,
  313. h263_decode_frame,
  314. CODEC_CAP_DRAW_HORIZ_BAND,
  315. };
  316. AVCodec wmv1_decoder = {
  317. "wmv1",
  318. CODEC_TYPE_VIDEO,
  319. CODEC_ID_WMV1,
  320. sizeof(MpegEncContext),
  321. h263_decode_init,
  322. NULL,
  323. h263_decode_end,
  324. h263_decode_frame,
  325. CODEC_CAP_DRAW_HORIZ_BAND,
  326. };
  327. AVCodec h263i_decoder = {
  328. "h263i",
  329. CODEC_TYPE_VIDEO,
  330. CODEC_ID_H263I,
  331. sizeof(MpegEncContext),
  332. h263_decode_init,
  333. NULL,
  334. h263_decode_end,
  335. h263_decode_frame,
  336. CODEC_CAP_DRAW_HORIZ_BAND,
  337. };