id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc	blockedby	blocking	reproduced	analyzed
1067	VPX encoding fails on intialization with av_log_set_level( AV_LOG_DEBUG );	fAX		"With FFMPEG 0.10/MinGW32 the following code crashes in the last if:

   av_log_set_level( AV_LOG_DEBUG );

   /* register all the codecs */
   av_register_all( );

   codec = avcodec_find_encoder( CODEC_ID_VP8 );
   if ( !codec ) {
      fprintf( stderr, ""codec not found\n"" );
      exit( 1 );
   }

   c = avcodec_alloc_context3( codec );

   /* put sample parameters */
   c->bit_rate = 400000;
   /* resolution must be a multiple of two */
   c->width = 352;
   c->height = 288;

   /* open it */
   if ( avcodec_open2( c, codec, NULL ) < 0 ) {
      fprintf( stderr, ""could not open codec\n"" );
      exit( 1 );
   }
"	defect	closed	normal	undetermined	0.10	needs_more_info	crash libvpx				0	0
